/* =========================
   Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.v-pc {
  display: block;
}

.v-sp {
  display: none;
}

@media (max-width: 768px) {
  .v-pc {
    display: none;
  }
  
  .v-sp {
    display: block;
  }
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
	 "Helvetica Neue", Arial, sans-serif;
  color: #571d00;
  line-height: 1.6;
  
  background-color: #fffaee;
  overflow-x: hidden;
}


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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================
   Layout
========================= */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* =========================
   Header
========================= */
.site-header {
  padding: 0;
  position: relative;
  margin-bottom: 10px;
  height: 140px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-header {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }
}

.header-logo-block {
  justify-content: flex-start;
  
  
}

@media (max-width: 768px) {
  .header-logo-block {
    margin-top: 16px;
  }
}

.header-logo-mark {
  width: 144px;
  margin-left: 32px;
  margin-top: 16px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-logo-mark {
    width: 100px;
  }
  
}

@media (max-width: 768px) {
  .header-logo-mark {
    margin: 0 auto;
    width: 70px;
    text-align: center;
  }
}


.header-logo-mark img {
  width: 100%;
}



/* =========================
   Header Button (PC)
========================= */
.header-btn {
  position: absolute;
  top: -16px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 10;
}

.header-btn .reserve {
  width: 280px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(
	135deg,
	rgba(232, 82, 152, 1),
	rgba(251, 174, 23, 1)
  );
  transition:
	background 1s ease,
	transform 1s ease,
	box-shadow 1s ease;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-btn .reserve {
    width: 220px;
    height: 60px;
    margin-bottom: 10px;
  }
}

.header-btn .reserve:hover {
  background: linear-gradient(
	135deg,
	rgba(232, 82, 152, 0.5),
	rgba(251, 174, 23, 0.5)
  );
}



.header-btn .reserve a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing:  0.4em;
  line-height: 1.2;
  
  
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-btn .reserve a {
  font-size: 22px;    
  }
}

.header-btn .reserve .hb-reserve {
  font-size: 16px;
  margin-top: 4px;
  

}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-btn .reserve .hb-reserve {
    font-size: 12px;    
  }
}

.header-btn .store {
  width: 280px;
  height: 48px;
  border-radius: 27px;
  padding: 2px;
  background: linear-gradient(
	135deg,
	rgba(232, 82, 152, 1),
	rgba(251, 174, 23, 1)
  );
  transition: background 0.35s ease;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-btn .store {
    width: 220px;
    height: 32px;  
  }
}

.header-btn .store:hover {
  background: linear-gradient(
	135deg,
	rgba(232, 82, 152, 0.5),
	rgba(251, 174, 23, 0.5)
  );
}

.header-btn .store a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  font-size: 24px;
  letter-spacing:  0.2em;
  font-weight: bold;
  color: #e85298;
  transition: color 0.35s ease;    /* 文字色だけふわっと */
  
}

@media (min-width: 768px) and (max-width: 1199px) {
  .header-btn .store a {
    font-size: 18px;
  }
}


.header-btn .store a:hover {
  color: rgba(232, 82, 152, 0.5); /* 文字だけ透明度0.5 */
}



/* =========================
   Global Nav (PC)
========================= */


.global-nav {
  position: absolute;
  top: 40px;
  right: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  
 
}

@media (min-width: 768px) and (max-width: 1199px) {
  .global-nav {
    top: 20px;
    right: 280px;
  }
}



.global-nav ul {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  
  
}

@media (min-width: 768px) and (max-width: 1199px) {
  .global-nav ul {
    gap: 20px;    
  }
}


.hb-nav-up {
  margin-bottom: 16px;
}

.global-nav li a {
  font-size: 22px;
  
  letter-spacing: 0.1em; /* 美容室サイト向けに少しだけ */

}

@media (min-width: 768px) and (max-width: 1199px) {
  .global-nav li a {
  font-size: 16px;    
  }
}

.global-nav li a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.global-nav li a:hover {
  opacity: 0.5;
  transform: translateY(-2px);
}




/* =========================
   Footer
========================= */

/* =========================
   Footer Full Width Background
========================= */
.site-footer {
  position: relative;
  background: none; /* 念のため */
  
  margin-top: 120px;
	padding: 64px 0 24px;
  
  @media (max-width: 768px) {
    margin-top: 40px;
  }

}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.site-footer {
  padding: 32px 0 24px;
}




.footer-box {
  position: relative;
  display: grid;
  grid-template-columns: 220px auto auto 216px;
  column-gap: 81px;
  align-items: flex-start;
  
 
}

@media (max-width: 767px) {
  .footer-box  {
    display: flex;          /* grid をやめる */
    flex-direction: column; /* 縦並び */
    gap: 32px;              /* 縦の間隔 */  
  }
}






.footer-logo {
  width: 156px;
  
  
}

@media (max-width: 767px) {
  .footer-logo {
    width: 80px;  
  }
}


 .footer-logo img {
  width: 100%;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .footer-logo img {
    margin-bottom: 0px;
  }
}

.company p {
  font-size: 14px;
}

@media (max-width: 767px) {
  .company p {
    font-size: 10px;
  }
}

.box-b ul li {
  margin-bottom: 8px;
}


.box-a {
  max-width: 260px;
}

@media (max-width: 767px) {
  .box-a {
    max-width: 100%;
    width: 100%;
  }  
}

.box-b a {
  font-size: 14px;
}

@media (max-width: 767px) {
  .footer-box > * {
    width: 100%;
  }
}


/* =========================
   Footer Buttons Column
========================= */
.footer-btn {
  position: absolute;
  top: -32px;
  right: 0;	
	
  width: 216px;
  display: flex;
  flex-direction: column;
  align-items: end; /* 中央揃え */
  gap: 16px;           /* 各要素の縦間隔 */
  
  
}

@media (max-width: 768px) {
  .footer-btn {
    width: 100%;
  }
}


.footer-btn .reserve,
.footer-btn .store {
  width: 216px;
}



.footer-btn a {
  display: block;
  padding: 12px 16px;
  /* border: 1px solid #222; */
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-btn a {
    padding: 0px 1px;
  }
}

.box-b {
    display: block;
	max-width: 120px;
}

@media (max-width: 768px) {
  .box-b {
    display: none;    
  }
}

.box-b ul li {
  margin-bottom: 22px;
}

.box-b a {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.footer-sns {
  display: flex;
  justify-content: end;
  gap: 14px;
  width: 60%;
  text-align: right;
}

  @media (max-width: 768px) {
    .footer-sns {
    width: 30%;
    padding-right: 20px;
    margin-bottom: 30px;           
    }
}

.footer-sns a {
  padding: 0 0;
  height: 20px;
}



.footer-sns img {
  width: 100%;
}

.site-footer small {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.sp-menu-toggle {
	display: none;
}

/* reserve */
.site-footer .footer-btn .reserve {
  width: 216px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(
	135deg,
	rgba(232, 82, 152, 1),
	rgba(251, 174, 23, 1)
  );
}

@media (max-width: 767px) {
  .site-footer .footer-btn .reserve {
  display: none;    
  }
}

.site-footer .footer-btn .reserve a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.4em;
  font-weight: bold;
}

.site-footer .footer-btn .reserve span.hb-reserve {
	font-size: 14px;
}

/* store */
 .site-footer .footer-btn .store {
  display: block;
  width: 216px;
  height: 44px;
  border-radius: 27px;
  padding: 2px;
  background: linear-gradient(
	135deg,
	rgba(232, 82, 152, 1),
	rgba(251, 174, 23, 1)
  );
  
  margin-bottom: 60px;
  
 
}

 @media (max-width: 767px) {
   .site-footer .footer-btn .store {
    display: none;     
   }
}

.site-footer .footer-btn .store a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  font-size: 18px;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #e85298;
  
  
}

@media (max-width: 767px) {
  .site-footer .footer-btn {
    position: static;   /* absolute を解除 */
  }

}

@media (max-width: 767px) {
  .footer-box .box-a {
    display: flex;
    align-items: center;   /* 縦位置を揃える */
    gap: 32px;             /* ロゴと文字の間 */
  }

  .footer-box .footer-logo {
    width: 100px;
    flex-shrink: 0;  /* ロゴが潰れない */
    margin-left: 20px;
  }
  
  .footer-box .company {
    font-size: 13px;
    line-height: 1.6;
    width: 200px;
  }

}






/* =========================
   Footer Full Width Background
========================= */
.site-footer {
  position: relative;
  background: none; /* 念のため */
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.site-footer {
  padding: 32px 0 24px;
}


/* =========================
   Responsive (SP)
========================= */
@media (max-width: 768px) {
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998; /* メニューより下 */
    
  }
  
  /* メニューOPEN時 */
  body.is-menu-open::before {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
  }


  .wrapper {
	padding: 0 0px;
  }

  /* フッター */
  .footer-box {
	flex-direction: column;
	gap: 0px;
  }

  .footer-btn {
	flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-btn,
  .global-nav {
    display: none;
  }

  .sp-menu-toggle {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background-color: #fffaee;
    border: none;
    z-index: 1000;
  }

  .sp-menu-toggle span {
    display: block;
    width: 65%;
    margin: 0 auto;
    height: 2px;
    background: #571d00;
    position: relative;
  }

  .sp-menu-toggle span::before,
  .sp-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #571d00;
  }

  .sp-menu-toggle span::before { top: -9px; }
  .sp-menu-toggle span::after  { top:  9px; }

  /* SPメニュー（display:noneは使わない！） */
  .sp-gmenu {
    position: fixed;
    top: 42px;
    /* inset: 0; */
    background: white;
    padding: 30px 40px;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .sp-gmenu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sp-gmenu ul li {
    margin-bottom: 8px;
    text-align: left;
  }

  .sp-gmenu a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {


  .sp-menu-cols {
    width: 100vw;
    /* margin-left: calc(50% - 50vw); */
    padding: 0 24px; /* 内側余白はここで管理 */
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
 

  .sp-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* .cat-salon > span {
    font-weight: bold;
  } */

  .cat-salon .salon {
    margin-top: 16px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
  }
  
  .sp-gmenu ul li.cat-salon {
    margin-bottom: 0px;
  }
  




}

.sp-bottom-btn {
  display: none;
}
  /* =========================
   SP Bottom Fixed Buttons
========================= */

@media (max-width: 768px) {
  
    .sp-bottom-btn {
      display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      gap: 12px;
      padding: 12px 16px;
      z-index: 1000;
    }
  
    /* 2ボタン横並び */
    .sp-bottom-btn .reserve,
    .sp-bottom-btn .store {
      flex: 1;
    }
  
    /* -------------------------
       Reserve（グラデボタン）
    ------------------------- */
    .sp-bottom-btn .reserve {
      height: 36px;
      border-radius: 28px;
      background: linear-gradient(
        135deg,
        rgba(232, 82, 152, 1),
        rgba(251, 174, 23, 1)
      );
    }
  
    .sp-bottom-btn .reserve a {
      display: flex;
      flex-direction: row; /* ← 横並び */
      justify-content: center;
      align-items: center;
      height: 100%;
      color: #fff;
      font-size: 14px;
      letter-spacing: 0.15em;
      gap: 6px; /* ← 文字間の余白 */
    }
  
    .sp-bottom-btn .reserve .hb-reserve {
      font-size: 9px;
      letter-spacing: 0.1em;
    }
  
    /* -------------------------
       Store（線グラデボタン）
    ------------------------- */
    .sp-bottom-btn .store {
      height: 36px;
      border-radius: 28px;
      padding: 2px;
      background: linear-gradient(
        135deg,
        rgba(232, 82, 152, 1),
        rgba(251, 174, 23, 1)
      );
    }
  
    .sp-bottom-btn .store a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      background: #fff;
      border-radius: 26px;
      font-size: 14px;
      letter-spacing: 0.12em;
      color: #e85298;
    }
  
    /* ボタンの下に余白確保（ページが隠れないように） */
    .site-footer small {
      margin-bottom: 40px;
      background: white !important;
    }
   
  
  }

}

.sp-menu-toggle span {
  transition: background 0.3s ease;
}

.sp-menu-toggle span::before,
.sp-menu-toggle span::after {
  transition: transform 0.3s ease, top 0.3s ease;
}

.sp-menu-toggle.is-open span {
  background: transparent;
}

.sp-menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.sp-menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}



/* =========================
   Top Slide Frame (高さを作る)
========================= */
.top-slide-inner{
  position: relative;
  overflow: hidden;
  aspect-ratio: 1200 / 650; /* ←PC比率（必要なら調整） */
}

@media (max-width: 768px){
  .top-slide-inner{
    aspect-ratio: 4 / 5; /* ←SP縦長 */
  }
}

/* =========================
   Fade Slider + Ken Burns (transition版)
========================= */
.top-slide-media{
  position: absolute;
  inset: 0;
}

.top-slide-media .slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 3s ease;
  overflow: hidden;
}

.top-slide-media .slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition: transform 7s ease; /* ゆっくりズーム */
}

.top-slide-media .slide.active{
  opacity: 1;
  z-index: 2;
}

.top-slide-media .slide.active img{
  transform: scale(1.12); /* Ken Burns */
}






.top-slide-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
  text-align: center;
}

.top-slide-word img {
  width: 100%;
  height: auto;
}


@media (max-width: 767px) {

  .top-slide {
	max-width: 100%;
  }

  .top-slide-inner {
	aspect-ratio: 4 / 5;   /* 縦長枠を作る */
	position: relative;
  }

  .top-slide-media {
	width: 100%;
	height: 100%;
  }

  .top-slide-media img,
  .top-slide-media video {
	width: 100%;
	height: 100%;          /* ← 重要 */
	object-fit: cover;     /* ← 重要 */
	object-position: center;
  }

  .top-slide-word {
	width: 95%;
  }
}

.top-slide-pic {
  position: absolute;
  inset: 0;          /* 上下左右 0 */
  pointer-events: none; /* クリック邪魔しない */
  z-index: 3;        /* 文字より下 or 上は好みで */
}

.top-slide-pic > div {
  position: absolute;
}

.top-slide-pic img {
  width: 100%;
  height: auto;
  display: block;
}

.pic-1 {
  top: 30%;
  left: 3%;
  width: 100px;
}

.pic-2 {
  top: 20%;
  right: 6%;
  width: 80px;
}

.pic-3 {
  bottom: 0%;
  left: 4%;
  width: 120px;
}

.pic-4 {
  bottom: 1%;
  left: 20%;
  width: 64px;
}

.pic-5 {
  bottom: 5%;
  right: 15%;
  width: 74px;
}

.pic-6 {
  bottom: 0%;
  right: 1%;
  width: 132px;
}

@media (max-width: 768px) {

  .pic-1 { width: 20vw; top: 4%; left: 3%; }
  .pic-2 { width: 14vw; top: 2%; right: 5%; }
  .pic-3 { width: 14vw; bottom: 5%; left: 2%; }
  .pic-4 { width: 12vw; top: 44%; left: 2%; }
  .pic-5 { width: 13vw; top: 53%; right: 1%; }
  .pic-6 { width: 22vw; bottom: 1%; right: 1%; }

}




/* =========================
   Wave Mask
========================= */
.top-slide-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.top-slide-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

@media (max-width: 768px) {
  .top-slide-wave svg {
    height: 70px;  /* ← 半分くらいにする */
  }
}

/* 上下反転 */
.top-slide-wave.is-invert {
  transform: scaleY(-1);
}


/* =========================
   PC Dropdown Menu
========================= */

/* 親を基準にする */
.global-nav .has-sub {
  position: relative;
}

/* サブメニュー初期状態 */
.global-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  /* padding: 16px 20px; */
  min-width: 150px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 100;
}

/* ホバーで表示 */
.global-nav .has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* サブメニューは縦並び */
.global-nav .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0px !important;
}

.global-nav .sub-menu ul {
}

/* 子メニュー項目 */
.global-nav .sub-menu li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.global-nav .sub-menu li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.global-nav .sub-menu a {
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* 矢印回転 */
.global-nav .has-sub i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.global-nav .has-sub:hover i {
  transform: rotate(180deg);
}



/* =========================
   Scroll Fade Animation
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示された時 */
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   トップページ
========================= */

.top-contents {
  width: 86%;
  margin: 0 auto;
  
  @media (max-width: 768px) {
    width: 94%;
    padding: 20px 0;
  }
}

/* =========================
   Full Width White Section
========================= */
.top-contents-white {
  position: relative;
  width: 86%;
  margin: 0 auto;
  padding: 80px 0; /* お好みで */
  @media (max-width: 768px) {
    width: 94%;
    padding: 20px 0;
  }
}

/* 背景だけ全幅 */
.top-contents-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
}


/* =========================
   NEWS Horizontal Layout
========================= */

.news-block-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  margin-top: 60px;
  margin-bottom: 50px;
}

.news-heading {
  font-size: 46px;
  /* letter-spacing: 0.2em; */
  margin: 0;
  white-space: nowrap;
  color: #fbae17;
  padding-right: 20px;
  line-height: 46px;
  font-weight: 500;
}

/* 投稿横並び */
.news-items {
  display: flex;
  gap: 32px;
}

/* 各カード */
.news-item {
  width: 32%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}

/* サムネ */
.news-item .thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* メタ */
.news-meta {
  font-size: 14px;
  color: #3b4043;
  margin-top: 4px;
  margin-bottom: 0px;
  
  @media (max-width: 768px) {
    font-size: 10px;
  }
}

.news-meta .date {
  margin-right: 6px;
}

/* タイトル */
.news-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 4px;
  font-size: 19px;
  
  @media (max-width: 768px) {
    font-size: 13px;
  }
}

.news-view-more {
  position: absolute;
  left: 0;          /* 左揃え */
  bottom: 20px;    /* 投稿一覧の下に出す */
  
  @media (max-width: 768px) {
    bottom: -40px; 
  }
}

.news-view-more a {
  position: relative;
}

.news-view-more a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fbae17;
  transition: width 0.3s ease;
}

.news-view-more a:hover::after {
  width: 100%;
}


@media (max-width: 768px) {
  
  .news-block-horizontal {
    display: block;   /* ← flexを解除 */
  }
  
  .news-heading {
    margin-bottom: 20px;
  }

  .news-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .news-item {
    width: 100%;
  }

}
.haert-feature .main-text {
  margin: 20px 16px;
  
  @media (max-width: 768px) {
    margin: 10px 0px;
    padding-bottom: 90px;
  }
}

/* =========================
   main-bnr 画像上テキスト
========================= */
.main-bnr {
  position: relative;
}

.main-bnr img {
  width: 100%;
  display: block;
}

.main-bnr-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 16px 24px 20px;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 768px) {
  .main-bnr-copy {
    padding: 12px 16px 16px;
  }
}

/* main-bnr内のmain-copyスタイル */
.main-bnr .main-copy span {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 600;
  display: inline;
  background: linear-gradient(
    transparent 60%,
    #fee7b9 60%
  );
  padding: 0 16px;
}

.main-bnr .main-copy span.pink {
  color: #e85298;
}

@media (max-width: 768px) {
  .main-bnr .main-copy span {
    font-size: 16px;
    letter-spacing: -0.08em;
    padding: 0 8px;
  }
}

.haert-feature .main-text {
  position: relative;
}

.haert-feature .main-text .pic {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 232px; /* サイズ調整 */
  
  @media (max-width: 768px) {
    width: 30%;
    bottom: 0%;
  }
}

.haert-feature .main-text .pic img {
  width: 100%;
  height: auto;
  display: block;
}



.haert-feature .main-text .main-copy span{
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 600;

  display: inline; /* テキスト幅だけにする */

  background: linear-gradient(
    transparent 60%,
    #fee7b9 60%
  );

  padding: 0 16px;
  
  @media (max-width: 768px) {
    font-size: 16px;
    letter-spacing: -0.08em;
    padding: 0 8px;
  }
}

.haert-feature .main-text .main-copy span.pink {
  color: #e85298;
}

.haert-feature .main-text .read-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  line-height: 1.4em;
  color: #e85298;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 30px;
  
  @media (max-width: 768px)  {
    font-size: 16px;
    margin-top: 10px;
  }
}

.haert-feature .main-text .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  color: #571d00;
  letter-spacing: 0.03em;
  
  @media (max-width: 768px) {
    font-size: 13px;
  }
}

.read-category {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: bold;
  color: #571d00;

  position: relative;
  display: inline-block;
  
  margin-bottom: 0px;
  
  @media (max-width: 768px) {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.read-category span {
  font-size: 14px;
  letter-spacing: 0.2em;
  
  color: #fbae17;
  padding-left: 20px;
  
  @media (max-width: 768px) {
    font-size: 10px;
    padding-left: 10px;
  }
}

.read-category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 110px;
  height: 4px;

  background: linear-gradient(
    to right,
    #fbae17,
    #fdce74
  );
  
  @media (max-width: 768px) {
    width: 60px;
  }
}


/* ===== six-point 見出し ===== */

.six-point, .flow {
  text-align: center;
}


.six-point h3.main-copy, .flow h3.main-copy {
  margin-top: 100px;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  line-height: 1.5em;
  color: #571d00;
  text-align: center;

  display: inline-block;

  background: linear-gradient(
    transparent 60%,
    #fee7b9 60%
  );
  
  @media (max-width: 768px) {
    margin-top: 40px;
    font-size: 20px;
  }
}




/* ===== リスト全体 ===== */
.six-point-list {
  margin-top: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px; /* 行間 列間 */
  list-style: none;
  padding: 0;
}

/* 各アイテム */
.six-point-list li {
  text-align: center;
  
  border-radius: 16px;
  transition: 0.3s ease;
}

.six-point-list li:hover {
  transform: translateY(-6px);
}

/* アイコン */
.six-point-list li img {
  width: 100%;
  height: auto;
}

.six-point-list .pink-midashi {
  font-size: 28px;
  line-height: 1.4em;
  color: #e85298;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.six-point-list li p:last-of-type {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  color: #571d00;
  margin-top: 0px;
}

/* @media (max-width: 768px) {

  .six-point-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .six-point .main-copy {
    font-size: 28px;
  }

  .six-point-list .pink-midashi {
    font-size: 16px;
  }

  .six-point-list li p:last-of-type {
    font-size: 14px;
  }
} */

@media (max-width: 768px) {

  /* 1列に変更 */
  .six-point-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 各liを横並びに */
  .six-point-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    text-align: left;
    align-items: start;
  }

  /* 画像を左列・2行にまたがる */
  .six-point-list li img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
  }

  /* 見出しを右列1行目 */
  .six-point-list .pink-midashi {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 6px;
  }

  /* 本文を右列2行目 */
  .six-point-list li p:last-of-type {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
  }
}

/* ===== 本文用 予約ワイドボタン ===== */
.reserve-btn-wide, .more-read-btn {
  margin: 60px auto 0;
  width: 355px;
}

.more-read-btn-insta {
  margin: 30px auto 0;
  width: 355px;
}

.reserve-btn-wide a, .more-read-btn a , .more-read-btn-insta a {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 48px;

  background: linear-gradient(135deg, #e85298, #fbae17);
  color: #fff;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;

  border-radius: 24px;
  text-decoration: none;

  transition: 0.3s ease;
}

/* ホバー */
.reserve-btn-wide a:hover, .more-read-btn a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {

  .reserve-btn-wide, .more-read-btn {
    width: 80%;
    margin: 20px auto 0;
  }

  .reserve-btn-wide a, .more-read-btn a {
    height: 40px;
    font-size: 16px;
  }
}

.flow {
  margin-top: 120px;
  
  @media (max-width: 768px) {
    margin-top: 20px;
  }
}

.flow ul {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  position: relative;
  
  @media (max-width: 768px) {
    margin: 10px 0 0;
  }
}

.flow ul::before {
  content: "";
  position: absolute;
  left: 40px;          /* 丸の中心位置 */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fdd68b;
}

.flow li {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
}

.step-circle {
  position: relative;
  z-index: 2;

  width: 80px;
  height: 80px;

  border-radius: 50%;
  background: linear-gradient(135deg, #fdce74, #fbae17);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: white;
  line-height: 1.7em;
  padding-bottom: 10px;
}

.step-circle span {
  font-size: 32px;
  font-weight: bold;
}

.text-block {
  flex: 1;
  max-width: 500px;
}

.text-block .pink-midashi {
  font-size: 28px;
  color: #e85298;
  margin-top: 0px;
  margin-bottom: 16px;
  text-align: left;
  font-weight: 600;
  
  @media (max-width: 768px) {
    margin-top: 8px;
    font-size: 18px;
  }
}

.text-block .text {
  margin-bottom: 16px;
  text-align: left;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}


.strong-point {
  text-align: left;     /* ← ここで上書き */
}



.strong-point span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  color: #571d00;
  font-weight: 600;
  
  display: inline;
  text-align: left !important;

  background: linear-gradient(
    transparent 60%,
    #fee7b9 60%
  );
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.img-block {
  width: 300px;
}

.img-block img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 768px) {

  /* 串ライン位置調整 */
  .flow ul::before {
    left: 30px; /* 丸の中央に合わせる */
  }

  .flow li {
    flex-direction: column;
    position: relative;
    padding-left: 80px; /* ← これが重要 */
    gap: 24px;
    margin-bottom: 60px;
  }

  /* 丸のサイズ */
  .step-circle {
    position: absolute;
    left: 0;
    top: 0;

    width: 60px;
    height: 60px;
    font-size: 12px;
  }

  .step-circle span {
    font-size: 20px;
  }

  /* テキストと画像は丸の右から開始 */
  .text-block,
  .img-block {
    width: 100%;
  }

}

.recommend-menu {
  width: 100%;
  background: #fffbe9;
  padding: 20px;
}



.recommend-menu h3 {
  font-size: 40px;
  color: #571d00;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 40px;
}

.menu-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 40px;
  padding: 0;
  border-top: 2px solid #9a7766;
}

.menu-block:last-of-type {
  border-bottom: 2px solid #9a7766;
}

.menu-category p {
  font-size: 22px;
  font-weight: 600;
  color: #9a7766;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 12px;
  
  @media (max-width: 768px){
    margin-top: 16px;
    margin-bottom: 0px;
    padding-left: 0px;
  }
}

.menu-table ul,
.menu-block > div:last-child ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-table li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #9a7766;
}




.menu-block li  {
  padding: 10px 0;
  border-bottom: 1px solid #9a7766;
}

.menu-block li:last-child {
  border-bottom: none;
}

.service-name {
  padding-right: 20px;
  @media (max-width: 768px) {
    padding-right: 0px;
  }
}

.menu-title {
  font-size: 18px;
  font-weight: 600;
  color: #571d00;
  margin-top: 0px;
  margin-bottom: 0px;
  
  @media (max-width: 768px) {
    font-size: 15px;
  }
}

.menu-title span {
  display: inline;
  font-size: 14px;
  color: white;
  margin-bottom: 4px;
  margin-right: 8px;
  background-color: #9a7766;
  border-radius: 4px;
  padding: 2px 8px;
  
  @media (max-width: 768px) {
    font-size: 10px;
  }
}

.push-point {
  font-size: 14px;
  color: #571d00;
  line-height: 1.5;
  margin-top: 6px;
  margin-bottom: 0px;
}

.service-price {
  text-align: right;
  
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #571d00;
  margin-top: 0px;
  margin-bottom: 0px;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.price span {
  font-size: 14px;
  margin-right: 6px;
}


.recommend-menu .note {
  font-size: 14px;
    @media (max-width: 768px) {
      font-size: 10px;
    }
  
}
@media (max-width: 768px) {




  .menu-block {
    grid-template-columns: 1fr;
  }



  .menu-category {
    margin-bottom: 0px;
    
  }
  
  .menu-table li {
    justify-content: space-between;
    gap: 8px;
  }
  
 .menu-table li {
   justify-content: space-between;
   gap: 8px;
 }
 
 .service-name {
   width: 80%;
 }
 
 .service-price {
   width: 30%;
   text-align: right; /* 右寄せに修正 */
   margin-top: 0;     /* 上マージンをリセット */
 }

}

.salon-block {
  margin-top: 50px;
  
  @media (max-width: 768px) {
    margin-top: 10px;
  }
  
}

.stylist-block, .hair-block, .instagram-block {
  margin-top: 50px;
  margin-bottom: 30px;
  
  @media (max-width: 768px) {
    margin-top: 30px;
  }
  
}


.salon-block h3, .stylist-block h3, .hair-block h3, .instagram-block h3 {
  font-size: 60px;
  color: #f5a623;
  margin-bottom: 40px;
  font-weight: 500;
  margin-top: 0px;
  
  @media (max-width: 768px) {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
}

.salon-main {
  position: relative;
  margin-bottom: 140px;
  display: grid;
  grid-template-columns: 75% 35%;
  gap: 0;
}

.salon-img {
  position: relative;
}

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

.salon-name {
  position: absolute;
  width: 50%;
  top: 0px;
  left: 0px;
  margin: 0px 0px;

  font-size: 26px;
  line-height: 1em;
  color: #fff;

  padding: 12px 12px;

  background: linear-gradient(
    to right,
    #fbae17 0%,
    rgba(251, 174, 23, 0.8) 40%,
    rgba(251, 174, 23, 0) 100%
  );
  
  @media (max-width: 768px) {
    font-size: 16px;
    padding: 6px 6px;
  }
}

.info-box {
  position: absolute;
  right: 0;
  bottom: 0px; /* ← 少し下にはみ出すとオシャレ */

  width: 360px;
  padding: 20px;

  background: rgba(254, 239, 209, 0.7); /* 透過 */
  backdrop-filter: blur(6px); /* ガラス風（対応ブラウザのみ） */

  color: #571d00;
  line-height: 1.8;
  
  display: block;
  
  @media (max-width: 768px) {
    padding: 12px;
    font-size: 11px;
    width: 50%;
    line-height: 1.4em;
  }
}

.info-box {
  position: absolute;
}

.info-box p {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* instagram */
.info-box .instagram {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  
  @media (max-width: 768px) {
    top: 12px;
    right: 12px;
    width: 32px;
  }
}
/* .instagram {
  margin-top: 20px;
  text-align: right;
} */

.link {
  grid-column: 1 / 2;
  margin: 0 auto;
  margin-top: 30px;
  padding-right: 15%;
  display: flex;
  gap: 40px;
  
  
}
.reserve-btn a {
  display: inline-block;
  /* min-width: 150px; */
  width: 270px;
  padding: 8px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg,#e85298,#fbae17);
  color: #fff;
  text-decoration: none;
  text-align: center;
  
  transition: 
  transform 0.4s ease,
  opacity 0.4s ease;
  
}

.salon-info-btn a {
  display: inline-block;
  /* min-width: 150px; */
  width: 270px;
  padding: 8px 40px;
  border-radius: 40px;
  border: 2px solid #f5a623;
  color: #e85298;
  text-decoration: none;
  background-color: white;
  text-align: center;

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

.reserve-btn a:hover, .salon-info-btn  a:hover {
  transform: translateY(-6px);
  opacity: 0.6;
  box-shadow: 0 20px 40px rgba(0,0,0,0);
}

@media (max-width: 768px) {

  .salon-main {
    display: block;
    margin-bottom: 60px;
  }

  .info-box {
    margin-top: 20px;
  }

  .link {
    flex-direction: column;
    gap: 16px;
    width: 45%;
    margin-left: 0;
    margin-right: 0;
    
    padding-right: 0px;
  }

  .salon-info-btn a,
  .reserve-btn a {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 4px 0px;
  }

}

.recruit-bnr {
  margin-top: 120px;
  
  @media (max-width: 768px) {
    margin-top: 40px;
  }
}

.recruit-bnr a, .onlinestore-bnr  a {
  display: inline-block;
  transition: 
    transform 0.4s ease,
    opacity 0.4s ease;
}

.recruit-bnr a:hover, .onlinestore-bnr  a:hover {
  transform: translateY(-6px);
  opacity: 0.6;
  box-shadow: 0 20px 40px rgba(0,0,0,0);
}



.stylist-wrapper {
  position: relative;
  overflow: visible; /* ← 重要 */
  
  padding-right: 0;
}

.stylist-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  pointer-events: none;
  z-index: 5;

  background: linear-gradient(
    to left,
    #fffaee 0%,
    rgba(255,250,238,0.95) 30%,
    rgba(255,250,238,0) 100%
  );
}


.stylist-slider {
  position: relative;

  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  
  padding-right: 180px; 
  scroll-behavior: smooth;
}

.stylist-list {
  display: flex;
  gap: 40px;
  min-width: max-content;
}

.stylist-item {
  width: 220px;
  flex-shrink: 0;
}

.stylist-item img {
  width: 100%;
  display: block;
}

.stylist-item .name {
  text-align: right;
  margin-top: 2px;
  margin-bottom: 0px;
  font-size: 25px;
  font-weight: 600;
  color: #571d00;
  
  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.stylist-item .store {
  text-align: right;
  font-size: 12px;
  color: #9a7766;
  margin-top: 0px;
  
  @media (max-width: 768px) {
    font-size: 10px;
  }
}



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

.stylist-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 10;
  
  cursor: pointer;          /* 追加 */
  pointer-events: auto;     /* autoにする */
  transition: opacity 0.3s ease;
}


.stylist-arrow span {
  display: block;
  width: 28px;
  height: 28px;

  border-right: 4px solid #fbae17;
  border-bottom: 4px solid #fbae17;

  transform: rotate(-45deg);
  
  opacity: 0.7;
}

.stylist-slider::-webkit-scrollbar {
  display: none;
}



@media (max-width: 768px) {

  /* .stylist-list {
    flex-wrap: wrap;
  }

  .stylist-item {
    width: 48%;
  } */
  
  /* フェード削除 */
  .stylist-wrapper::after {
    display: none;
  }
  
  /* 横スクロール解除 */
  .stylist-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
  }
  
  /* flexをやめてgridにする */
  .stylist-list {
    display: grid;
    grid-auto-flow: column;       /* 横方向に増やす */
    grid-template-rows: repeat(2, auto);  /* 2行固定 */
    gap: 16px 16px;
  
    width: max-content;           /* 横スクロール可能に */
  }
  
  .stylist-item {
    width: 160px;  /* SP用サイズ調整 */
  }

}

@media (max-width: 768px) {
  .stylist-slider::after,
  .stylist-arrow {
    display: none;
  }
}

.hair-block {
  max-width: 1200px;
  margin: 0 auto;
}

.hair-list {
  display: grid;
  gap: 24px;
}

@media (min-width: 769px) {
  .hair-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .hair-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.hair-thumb {
  overflow: hidden;
}

.hair-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 3; /* 統一比率 */
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.hair-item a:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.instagram-block .store p {
  font-size: 26px;
  font-weight: bold;
}

.blog-container {
  display: grid;
  grid-template-columns: 7.5fr 2.5fr;
  gap: 60px;

  max-width: 1200px;
  margin: 0 auto;
  
  margin-top: 24px;
}

@media (max-width: 768px){

  .blog-container{
    grid-template-columns: 1fr;
  }

  .blog-sidebar{
    margin-top: 60px;
  }

}

.title-bnr {
  position: relative;
}

.banner img {
  width: 100%;
}

.page-title h2 {
  position: absolute;
  left: 0px;
  bottom: 0px;

  color: #fbae17;
  font-size: 48px;

  line-height: 1.2;
  
  padding-left: 20px;
  padding-bottom: 4px;
  
  margin-top: 0px;
  margin-bottom: 0px;

  display: inline-block;
  z-index: 2;
}

.page-title::before {
  content: "";
  position: absolute;

  left: 0px;
  bottom: 0px;

  width: 460px;
  height: 60px;

  background: linear-gradient(
    to right,
    #ffffff 20%,
    rgba(255,255,255,0) 80%
  );

  z-index: 1;
}

@media (max-width: 768px){

  .page-title h2{
    font-size: 30px;
  }
  
  .page-title::before{
    width: 100%;
    height: 40px;
    
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.9) 30%,
      rgba(255,255,255,0) 70%
    );
  }

}

.sidebar-block{
  background: #ffffff;
  padding: 12px;
  margin-bottom: 30px;

  /* border-radius: 6px; */

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}



.sidebar-calendar {
  margin-top: 0px;
}

#wp-calendar {
  width: 100%;
  /* padding: -20px; */
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}

#wp-calendar caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #571d00;
}

#wp-calendar th {
  padding: 6px 0;
  background: #fff3d8;
  font-weight: normal;
}

#wp-calendar td {
  padding: 2px 0;
  background-color: #eee;
  border: 1px solid white;
}



#wp-calendar a {
  color: #fbae17;
  font-weight: bold;
}

.sidebar-block h3{
  font-size: 18px;
  color: #fbae17;

  display: flex;
  align-items: center;

  margin: -12px -12px 20px -12px;
  /* padding: 12px 24px; */
}

.sidebar-block ul.recent-news {
  margin-left: 12px;
  margin-bottom: 12px;
  margin-right: 12px;
}

.sidebar-block h3::before{
  content: "";

  width: 24px;
  height: 40px;

  margin-right: 12px;

  background: linear-gradient(
    to right,
    #fbae17 0%,
    #ffffff 100%
  );
}

.sidebar-block ul li a{
  transition: opacity 0.2s ease;
}

.sidebar-block ul li a:hover{
  opacity: 0.5;
}

/* 記事ナビゲーション */
.article-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  /* border-top: 1px solid #e0e0e0; */
}

.nav-prev,
.nav-next {
  flex: 1;
}

.nav-next {
  text-align: right;
}

.article-navigation a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: #fff3d8;
  /* border: 1px solid #fff3d8; */
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.article-navigation a:hover {
  background: #feeabb;
}

.nav-label {
  font-size: 13px;
  color: #888;
}

.nav-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .article-navigation {
    flex-direction: column;
  }

  .nav-next {
    text-align: left;
  }
}

/* =========================
   投稿記事 見出し H2・H3
========================= */

/* H2 見出し */
.article-content h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 600;
  color: #571d00;
  line-height: 1.5;
  letter-spacing: 0.05em;

  margin-top: 56px;
  margin-bottom: 24px;
  padding-bottom: 10px;

  background: none;
  border-left: none;
  border-radius: 0;

  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, #e85298, #fbae17) 1;
}

/* H3 見出し */
.article-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e85298;
  line-height: 1.5;
  letter-spacing: 0.04em;

  margin-top: 40px;
  margin-bottom: 16px;

  border: none;
  background: none;
  border-image: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .article-content h2 {
    font-size: 20px;
    margin-top: 40px;
  }

  .article-content h3 {
    font-size: 17px;
    margin-top: 28px;
  }
}

/* =========================
   投稿記事 タイトル H1
========================= */

.article-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #571d00;
  line-height: 1.5;
  letter-spacing: 0.04em;

  margin-top: 16px;
  margin-bottom: 24px;
  padding-bottom: 10px;

  border-bottom: 2px solid #fbae17;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .article-title {
    font-size: 22px;
  }
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

/* =========================
   投稿記事 カテゴリー
========================= */

.article-category a {
  display: inline-block;
  background-color: #fbae17;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;

  padding: 3px 12px;
  border-radius: 20px;

  margin-left: 12px;
  
  @media (max-width: 768px) {
    font-size: 10px;
  }
}

#wp-calendar tfoot tr {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse; /* 左右を入れ替え */
}

#wp-calendar tfoot td {
  padding: 8px 4px;
}

.wp-calendar-nav {
  display: none;
}

/* =========================
   アーカイブ一覧
========================= */



.archive-item {
  border-bottom: 1px solid #e0d5c5;
  padding: 24px 0;
  
  @media (max-width: 768px) {
    padding: 12px 0;
  }
}

.archive-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

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

.archive-item a:hover {
  opacity: 0.7;
}

.archive-thumb {
  width: 160px;
  flex-shrink: 0;
}

.archive-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.archive-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.archive-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #571d00;
  margin: 0;
  line-height: 1.5;
}

.archive-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  
  @media (max-width: 768px) {
    font-size: 12px;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .archive-inner {
    gap: 16px;
  }

  .archive-thumb {
    width: 130px;
  }

  .archive-item-title {
    font-size: 15px;
  }
  
  .blog-main {
    margin: 16px;
  }
  
  .sidebar-inner {
    margin: 16px;
  }
  
  .article-date {
    font-size: 12px;
  }
  
  .archive-excerpt {
    display: none;
  }
}

.archive-thumb {
  display: block;
  transition: opacity 0.3s ease;
}

.archive-thumb:hover {
  opacity: 0.7;
}

.sidebar-bnr .store {
  margin-bottom: 16px;
}

.content-page .page-top-space {
  margin-top: 20px;
}

h3.section-title {
  text-align: center;
  color: #fbae17;
  font-size: 38px;
  line-height: 1.4em;
  margin-top: 80px;
  margin-bottom: 50px;
  
  @media (max-width: 768px) {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

/* 会社概要テーブル */
.top-contents table {
  width: 100%;
  border-collapse: collapse;
}

.top-contents table tr {
  border-top: 2px solid #fbae17;
  background-color: white;
}

.top-contents table tr:last-child {
  border-bottom: 2px solid #fbae17;
}



.top-contents table th {
  width: 22%;
  padding: 14px 16px;
  vertical-align: top;
  line-height: 1.4em;
  text-align: right;
  white-space: nowrap;
  width: 9em;
  color: #fbae17;
  font-weight: bold;
  @media (max-width: 768px) {
    width: 50%;
    font-size: 14px;
    width: 7em;
  }
}

.top-contents table td {
  width: 78%;
  text-align: left;
  padding: 14px 16px 14px 40px;
  vertical-align: top;
  line-height: 1.4em;
  
  @media (max-width: 768px) {
    width: 50%;
    font-size: 14px;
    padding: 14px 16px;
  }
}

/* 電話リンク */
.tel-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  display: inline;
}

@media (max-width: 767px) {
  .tel-link {
    color: #fbae17;
    text-decoration: underline;
    pointer-events: auto;
  }
}

/* =========================
   FAQ タブ
========================= */
.faq-tabs {
  display: flex;
  gap: 12px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.faq-tab {
  flex: 1;
  min-width: 120px;
  padding: 16px 12px;
  border: 2px solid #fbae17;
  border-radius: 8px;
  background: #fff;
  color: #fbae17;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;

  /* 吹き出しの三角 */
  position: relative;
}

.faq-tab::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 10px 0;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  transition: border-color 0.25s ease;
  pointer-events: none;
}

/* アクティブ */
.faq-tab.is-active {
  background: #fbae17;
  color: #fff;
}

.faq-tab.is-active::after {
  border-color: #fbae17 transparent transparent transparent;
}

@media (max-width: 768px) {
  .faq-tabs {
    gap: 8px;
    margin: 24px 0 32px;
  }

  .faq-tab {
    font-size: 13px;
    padding: 12px 6px;
  }
}


/* =========================
   FAQ パネル
========================= */
.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.faq-category-title {
  font-size: 22px;
  font-weight: 700;
  color: #571d00;
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 4px solid #fbae17;
}

@media (max-width: 768px) {
  .faq-category-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}


/* =========================
   FAQ アコーディオン
========================= */
.faq-item {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: #fffbe9;
}

/* Q 行 */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff3d8;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #571d00;
  transition: background 0.2s ease;
  padding: 18px 0px 18px 20px; /* 右paddingを0に */
}

.faq-question:hover {
  background: #feeabb;
}

/* Q ラベル */
.faq-q {
  width: auto;
  height: auto;
  background: none;
  color: #fbae17;
  font-size: 22px;
  font-weight: 700;
  border-radius: 0;
}



.faq-q-text {
  flex: 1;
}

/* 矢印アイコン */
.faq-icon {
  width: 44px;       /* クリック領域を確保 */
  height: 44px;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #fbae17;
  top: 50%;
  right: auto;       /* rightリセット */
  transition: transform 0.3s ease;
}

.faq-icon::before {
  transform: translateY(-50%) rotate(45deg);
  left: calc(50% - 7px); /* 10px → 7px に縮める */
}

.faq-icon::after {
  transform: translateY(-50%) rotate(-45deg);
  left: calc(50% - 0px); /* 50% → 少し左に */
}

.faq-item.is-open .faq-icon::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translateY(-50%) rotate(45deg);
}

/* A 行 */
.faq-answer {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fffbe9;
}

.faq-item.is-open .faq-answer {
  display: flex;
}

/* A ラベル */
.faq-a {
  width: auto;
  height: auto;
  background: none;
  color: #fbae17;
  font-size: 22px;
  font-weight: 700;
  border-radius: 0;
}

.faq-answer p {
  flex: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #571d00;
  padding-top: 6px;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
    padding: 14px 14px;
    gap: 12px;
  }

  .faq-q,
  .faq-a {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 14px 14px;
    gap: 12px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 24px 0 32px;
  }

  .faq-tab {
    font-size: 13px;
    padding: 12px 6px;
    min-height: 56px; /* 2行分の高さに揃える */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 吹き出し三角を非表示 */
  .faq-tab::after {
    display: none;
  }
}

.heart-concept {
  font-size: 18px;
  line-height: 2em;
}



/* =========================
   7つのポリシー
========================= */
.heart-7policy {
  max-width: 100%;
  margin: 80px auto;
  padding: 48px 56px;
  background: #fff;
  border: 2px solid #f9a8c9;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.9;
}

/* ロゴ */
.heart-7policy .logo {
  text-align: center;
  margin-bottom: 24px;
}

.heart-7policy .logo img {
  width: 160px;
  margin: 0 auto;
}

/* 「私たちが大切にしていること」タイトル */
.heart-7policy h3.important {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #e85298;
  margin: 0 0 40px;
  letter-spacing: 0.08em;
}

/* 各ポリシーブロック */
.heart-7policy .policy h4 {
  font-size: 20px;
  font-weight: 700;
  color: #e85298;
  margin: 32px 0 8px;
  padding: 0;
  border: none;
  background: none;
}



.heart-7policy .policy h4:first-child {
  margin-top: 0;
}

.heart-7policy .policy p {
  margin: 0 0 0;
  color: #571d00;
  font-size: 18px;
  line-height: 2em;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .heart-7policy {
    padding: 32px 24px;
    margin: 48px auto;
  }

  .heart-7policy h3.important {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .heart-7policy .logo img {
    width: 90px;
  }

  .heart-7policy .policy h4 {
    font-size: 15px;
  }

  .heart-7policy .policy p {
    font-size: 14px;
  }
}
/* =========================
   Policy 画像エリア
========================= */
.policy-ph-area {
  display: flex;
  gap: 16px;
  margin: 60px 0;
}

.policy-ph-area .ph {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.policy-ph-area .ph img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.policy-ph-area .ph img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .policy-ph-area {
    flex-direction: column;
    gap: 12px;
    margin: 40px 0;
  }

  .policy-ph-area .ph img {
    aspect-ratio: 3 / 2;
  }
}

/* =========================
   新卒採用バナー
========================= */
.shinsotsu-bnr {
  display: flex;
  align-items: stretch;
  border: 2px solid #fbae17;
  overflow: hidden;
  background: white;
  margin: 48px 0;
  padding: 8px;
}

.shinsotsu-bnr .left {
  flex: 1;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.shinsotsu-bnr .left .midashi {
  font-size: 38px;
  font-weight: 700;
  color: #fbae17;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.02em;
}

.shinsotsu-bnr .left .text {
  font-size: 20px;
  color: #571d00;
  margin: 0;
}

/* ボタン */
.shinsotsu-bnr .reserve-btn {
  margin-top: 42px;
}

.shinsotsu-bnr .reserve-btn a {
  display: inline-block;
  width: 80%;
  padding: 10px 16px;
  border-radius: 40px;
  background: linear-gradient(135deg, #e85298, #fbae17);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  /* transition: opacity 1.2s ease; */
}

.shinsotsu-bnr .reserve-btn a:hover {
  opacity: 0.8;
}

/* 右側の画像 */
.shinsotsu-bnr .right {
  width: 42%;
  flex-shrink: 0;
}

.shinsotsu-bnr .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .shinsotsu-bnr {
    flex-direction: column;
  }

  .shinsotsu-bnr .left {
    padding: 28px 24px;
    padding-top: 0px;
    gap: 12px;
    
  }

  .shinsotsu-bnr .left .midashi {
    font-size: 28px;
    
  }

  .shinsotsu-bnr .left .text {
    font-size: 14px;
  }
  
  .shinsotsu-bnr .reserve-btn {
    margin-top: 22px;
  }

  .shinsotsu-bnr .reserve-btn a {
    font-size: 17px;
    padding: 12px 40px;
  }

  .shinsotsu-bnr .right {
    width: 100%;
    height: 220px;
  }
}



/* =========================
   リクルート MV動画
========================= */
.recruit-mv {
  position: relative;
  width: 100%;
  margin: 0 0 48px;
  overflow: hidden;
  border-radius: 8px;
}

.recruit-mv video {
  width: 100%;
  height: auto;
  display: block;
}

/* 音声ボタン */
.sound-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  padding: 0;
}

.sound-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.sound-btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .recruit-mv {
    margin: 0 0 32px;
    border-radius: 4px;
  }

  .sound-btn {
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .sound-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* =========================
   求人リスト
========================= */

/* セクション見出し */
h3.section-title-left {
  font-size: 36px;
  font-weight: 700;
  color: #fbae17;
  margin: 60px 0 24px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  h3.section-title-left {
    font-size: 26px;
    margin: 40px 0 16px;
  }
}

/* リストグリッド */
.job-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

@media (max-width: 768px) {
  .job-list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 0 32px;
  }
}

/* カード共通 */
.job-list li > div {
  border: 2px solid #fdd68b;
  /* border-radius: 8px; */
  padding: 10px 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

/* サロン名 */
.job-list .salon-name {
  position: static;
  width: auto;
  top: auto;
  left: auto;
  font-size: 20px;
  line-height: 1.3;
  color: #571d00;
  padding: 0;
  background: none;
}

@media (max-width: 768px) {
  .job-list .salon-name {
    font-size: 14px;
  }
}

/* 場所 */
.job-list .place {
  font-size: 15px;
  font-weight: 600;
  color: #571d00;
  margin: -8px 0 0;
}

@media (max-width: 768px) {
  .job-list .place {
    font-size: 13px;
  }
}

/* 職種バッジ */
.job-list .job {
  width: 100%;
  padding: 6px 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 768px) {
  .job-list .job {
    font-size: 13px;
    padding: 6px 0;
  }
}

/* スタイリスト：ピンク */
.job-list .stylist .job {
  background: #fcd3e5;
  color: #571d00;
}

/* アシスタント：黄色 */
.job-list .assistant .job {
  background: #fde8b0;
  color: #571d00;
}

/* 詳しく見るボタン */
.job-list a {
  display: block;
  width: 100%;
  padding: 6px 0;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  transition: opacity 0.3s ease;
}

.job-list a:hover {
  opacity: 0.75;
}

/* スタイリスト：ピンクボタン */
.job-list .stylist a {
  background: #e85298;
  color: #fff;
}

/* アシスタント：黄色ボタン */
.job-list .assistant a {
  background: #fbae17;
  color: #fff;
}

@media (max-width: 768px) {
  .job-list a {
    font-size: 13px;
    padding: 10px 0;
  }
}


/* =========================
   3つのポイント
========================= */
.top-contents-white {
  background: #fff;
  /* padding: 64px 0;
  margin: 64px 0; */
}

.heart-salon-3point {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* タイトル */
.heart-salon-3point h3 {
  font-size: 36px;
  font-weight: 70000;
  color: #e85298;
  text-align: center;
  margin: 0 0 26px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .heart-salon-3point h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

/* === PC：3列横並び === */
.heart-salon-3point ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各ブロック：縦並び・中央揃え */
.heart-salon-3point li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

/* アイコン画像 */
.heart-salon-3point .pic {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.heart-salon-3point .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* キャッチ（黒太字） */
.heart-salon-3point .point {
  font-size: 22px;
  font-weight: 800;
  color: #571d00;
  line-height: 1.5;
  margin: 0;
}

/* 小見出し（ピンク） */
.heart-salon-3point .midashi {
  font-size: 18px;
  font-weight: 700;
  color: #e85298;
  line-height: 1.6;
  margin: 0;
}

/* 本文 */
.heart-salon-3point .text {
  font-size: 15px;
  color: #571d00;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

/* === SP：縦並び・各ブロックを横配置 === */
@media (max-width: 768px) {
  .heart-salon-3point {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0px;
  }
  
  .heart-salon-3point ul {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* 奇数ブロック：画像左・テキスト右 */
  .heart-salon-3point li:nth-child(odd) {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto auto;
    column-gap: 8px;
    text-align: left;
    align-items: start;
  }

  .heart-salon-3point li:nth-child(odd) .pic {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    align-self: start;
  }

  .heart-salon-3point li:nth-child(odd) .point  { grid-column: 2; grid-row: 1; }
  .heart-salon-3point li:nth-child(odd) .midashi { grid-column: 2; grid-row: 2; }
  .heart-salon-3point li:nth-child(odd) .text    { grid-column: 2; grid-row: 3; }

  /* 偶数ブロック：テキスト左・画像右 */
  .heart-salon-3point li:nth-child(even) {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 8px;
    text-align: right;
    align-items: start;
  }

  .heart-salon-3point li:nth-child(even) .pic {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    align-self: start;
  }

  .heart-salon-3point li:nth-child(even) .point  { grid-column: 1; grid-row: 1; }
  .heart-salon-3point li:nth-child(even) .midashi { grid-column: 1; grid-row: 2; }
  .heart-salon-3point li:nth-child(even) .text    { grid-column: 1; grid-row: 3; }

  .heart-salon-3point .point  { font-size: 18px; }
  .heart-salon-3point .midashi { font-size: 15px; }
  .heart-salon-3point .text   { font-size: 13px; }
}

/* =========================
   インタビュー
========================= */
.interview {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .interview {
    margin-top: 15px;
  }
}

.interview h3 {
  font-size: 28px;
  font-weight: 900;
  color: #e85298;
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .interview h3 {
    font-size: 20px;
  }
}

/* 代表名 */
.interview .president p {
  font-size: 20px;
  font-weight: 500;
  color: #571d00;
  margin: 0 0 32px;
}

.interview .president span {
  font-size: 16px;
  font-weight: 400;
  margin-right: 12px;
}

/* 写真＋最初のQ&A横並び */
.interview-first {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

.interview-photo img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .interview-first {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Q見出し */
.interview .question {
  font-size: 17px;
  font-weight: 700;
  color: #e85298;
  margin: 40px 0 10px;
  padding: 0;
  border: none;
  background: none;
}

.interview-first-text .question {
  margin-top: 0;
}

/* A本文 */
.interview .answer {
  font-size: 16px;
  color: #571d00;
  line-height: 2;
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .interview .question { font-size: 15px; }
  .interview .answer   { font-size: 14px; }
}

/* 写真右レイアウト */
.interview-right {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
  margin: 40px 0;
}

.interview-right .interview-photo img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.interview-right .question {
  margin-top: 0;
}

@media (max-width: 768px) {
  .interview-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* SP では写真を上に移動 */
  .interview-right .interview-photo {
    order: -1;
  }
}

/* =========================
   新卒採用応募フォーム
========================= */
.recruit-form, .contact-form {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
}

/* 各行 */
.recruit-form .form-row,
.contact-form .form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  gap: 24px;
  margin-bottom: 24px;
}

.recruit-form .form-row p,
.contact-form .form-row p {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0px;
}

/* ラベル */
.recruit-form .form-label,
.contact-form .form-label {
  font-size: 16px;
  font-weight: 600;
  color: #571d00;
  text-align: right;
  padding-top: 8px;
  line-height: 1.6;
}

/* form-field内のpタグ余白リセット */
.recruit-form .form-field p,
.contact-form .form-field p {
  margin: 0;
}

/* テキスト・メール・電話 */
.recruit-form .form-field input[type="text"],
.recruit-form .form-field input[type="email"],
.recruit-form .form-field input[type="tel"], 
.contact-form .form-field input[type="text"],
.contact-form .form-field input[type="email"],
.contact-form .form-field input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.recruit-form .form-field input[type="text"]:focus,
.recruit-form .form-field input[type="email"]:focus,
.recruit-form .form-field input[type="tel"]:focus,
.contact-form .form-field input[type="text"]:focus,
.contact-form .form-field input[type="email"]:focus,
.contact-form .form-field input[type="tel"]:focus {
  border-color: #fbae17;
  outline: none;
}

/* テキストエリア */
.recruit-form .form-field textarea,
.contact-form .form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff;
  box-sizing: border-box;
  min-height: 140px;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.contact-form .form-field input[type="text"] {
  flex: 1;
  min-width: 0;
}

.recruit-form .form-field textarea:focus,
.contact-form .form-field textarea:focus {
  border-color: #fbae17;
  outline: none;
}

/* ラジオボタン */
.recruit-form .form-radio .wpcf7-radio,
.contact-form .form-radio .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.recruit-form .form-radio .wpcf7-list-item,
.contact-form .form-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.recruit-form .form-radio input[type="radio"],
.contact-form .form-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #d9c9b8;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
  
  vertical-align: middle;
  margin-top: 0px; /* ← この数値を増やすと下にずれます */
}

.recruit-form .form-radio input[type="radio"]:checked,
.contact-form .form-radio input[type="radio"]:checked {
  border-color: #fbae17;
}

.recruit-form .form-radio input[type="radio"]:checked::after,
.contact-form .form-radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fbae17;
}

.recruit-form .form-radio .wpcf7-list-item-label,
.contact-form .form-radio .wpcf7-list-item-label {
  font-size: 16px;
  color: #571d00;
  cursor: pointer;
}

/* チェックボックス（同意） */
.recruit-form .form-acceptance,
.contact-form .form-acceptance {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  font-size: 16px;
  color: #571d00;
}

.recruit-form .form-acceptance p,
.contact-form .form-acceptance p {
  margin: 0;
  display: flex;
  align-items: center;
}

.recruit-form .form-acceptance .wpcf7-list-item,
.contact-form .form-acceptance .wpcf7-list-item  {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.recruit-form .form-acceptance input[type="checkbox"],
.contact-form .form-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #d9c9b8;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
  
  vertical-align: middle;
  margin-top: 1px; /* ← この数値を増やすと下にずれます */
}

.recruit-form .form-acceptance input[type="checkbox"]:checked,
.contact-form .form-acceptance input[type="checkbox"]:checked {
  border-color: #fbae17;
}

.recruit-form .form-acceptance input[type="checkbox"]:checked::after,
.contact-form .form-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fbae17;
  border-bottom: 2px solid #fbae17;
  transform: rotate(45deg);
}

/* 送信ボタン */
.recruit-form .form-submit,
.contact-form .form-submit {
  text-align: center;
  margin-top: 16px;
}

.recruit-form .form-submit p,
.contact-form .form-submit p {
  margin: 0;
}

.recruit-form .form-submit input[type="submit"],
.contact-form .form-submit input[type="submit"] {
  width: 320px;
  padding: 16px 0;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #e85298, #fbae17);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: inherit;
}

.recruit-form .form-submit input[type="submit"]:hover,
.contact-form .form-submit input[type="submit"]:hover {
  opacity: 0.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .recruit-form .form-row,
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .recruit-form .form-row p,
  .contact-form .form-row p {
    text-align: left;
    margin-bottom: 4px;
  }

  .recruit-form .form-label,
  .contact-form .form-label {
    text-align: left;
    padding-top: 0;
    font-size: 14px;
  }

  .recruit-form .form-submit input[type="submit"],
  .contact-form .form-submit input[type="submit"] {
    width: 100%;
    font-size: 18px;
  }
}

/* セレクトボックス */
.recruit-form .form-select select,
.contact-form .form-select select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fbae17' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.recruit-form .form-select select:focus,
.contact-form .form-select select:focus {
  border-color: #fbae17;
  outline: none;
}



/* =========================
   予約フォーム 日程候補
========================= */



/* 日付入力 */
.contact-form .form-field input[type="date"] {
  padding: 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  height: 44px;
  
  width: 160px;
  flex-shrink: 0;
}

.contact-form .form-field input[type="date"]:focus {
  border-color: #fbae17;
  outline: none;
}

/* 時間（number）入力 */
.contact-form .form-field input[type="number"] {
  width: 100px;
  padding: 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  height: 44px;
}

.contact-form .form-field input[type="number"]:focus {
  border-color: #fbae17;
  outline: none;
}

/* =========================
   予約フォーム 日程候補
========================= */

/* 候補行：ラベルと入力エリアを横並び */
.contact-form .form-row:has(.calandar-field) {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 16px;
}

/* 日にち・時間を1行横並び */
.contact-form .calandar-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.contact-form .calandar-label {
  font-size: 16px;
  font-weight: 600;
  color: #571d00;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-form .calandar-field input[type="date"] {
  width: 180px;
  flex-shrink: 0;
  padding: 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff;
  box-sizing: border-box;
  height: 44px;
}

.contact-form .calandar-field input[type="text"] {
  width: 120px;
  flex-shrink: 0;
  padding: 10px 14px;
  border: 1.5px solid #d9c9b8;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #571d00;
  background: #fff;
  box-sizing: border-box;
  height: 44px;
}

.contact-form .calandar-field input[type="date"]:focus,
.contact-form .calandar-field input[type="text"]:focus {
  border-color: #fbae17;
  outline: none;
}

/* SP */
@media (max-width: 768px) {
  .contact-form .form-row:has(.calandar-field) {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form .calandar-field {
    width: 100%;
    flex-wrap: nowrap;
  }

  .contact-form .calandar-field input[type="date"] {
    flex: 1;
    width: auto;
  }

  .contact-form .calandar-field input[type="text"] {
    width: 110px;
    flex-shrink: 0;
  }
}


/* =========================
   店舗ページ共通
========================= */
 
/* 店舗名 + 予約ボタン */
.salon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
 
.salon-title {
  font-size: 32px;
  font-weight: 900;
  color: #571d00;
  margin: 0;
  letter-spacing: 0.04em;
}
 
.salon-reserve .reserve-btn a {
  width: auto;
  padding: 10px 40px;
  font-size: 18px;
}
 
/* @media (max-width: 768px) {
  .salon-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
 
  .salon-title {
    font-size: 22px;
  }
} */

@media (max-width: 768px) {
  .salon-header {
    flex-direction: column;
    align-items: center; /* 左寄せ→中央に変更 */
    gap: 12px;
  }

  .salon-title {
    font-size: 22px;
    text-align: center; /* 中央揃えを追加 */
  }

  /* ボタンを左右70%・中央寄せ */
  .salon-reserve {
    width: 70%;
  }

  .salon-reserve a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 6px 0;
    font-size: 16px;
  }
}
 
/* =========================
   店舗写真エリア
========================= */
.salon-photos {
  margin-bottom: 48px;
}
 
.salon-photos p {
  font-size: 16px;
  line-height: 2;
  color: #571d00;
  margin: 0 0 24px;
}
 
/* 3枚横並び */
.salon-photos .salon-photo-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
 
.salon-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
 
@media (max-width: 768px) {
  .salon-photos .salon-photo-sub {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
 
/* =========================
   キャッチコピー
========================= */
.salon-catch {
  margin-bottom: 48px;
}
 
.catch-sub {
  font-size: 20px;
  font-weight: 700;
  color: #571d00;
  margin: 0 0 8px;
}
 
.catch-main {
  font-size: 36px;
  font-weight: 900;
  color: #571d00;
  margin: 0 0 32px;
  line-height: 1.4;
}
 
.catch-main em {
  font-style: normal;
  color: #e85298;
}
 
.catch-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
 
.catch-lead {
  font-size: 20px;
  font-weight: 700;
  color: #fbae17;
  line-height: 1.6;
  margin: 0 0 16px;
}
 
.catch-text p {
  font-size: 16px;
  line-height: 2;
  color: #571d00;
  margin: 0;
}
 
.catch-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
 
@media (max-width: 768px) {
  .catch-main {
    font-size: 24px;
  }
 
  .catch-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
 
  .catch-img {
    order: -1;
  }
}
 
/* =========================
   サービス紹介（カラー・髪質改善）
========================= */
.salon-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
 
.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid #fbae17;
  padding-bottom: 10px;
}
 
.service-title {
  font-size: 24px;
  font-weight: 900;
  color: #571d00;
  margin: 0;
}
 
.service-tag {
  font-size: 12px;
  font-weight: 600;
  color: #fbae17;
  letter-spacing: 0.1em;
}
 
.service-lead {
  font-size: 16px;
  font-weight: 700;
  color: #e85298;
  line-height: 1.6;
  margin: 0 0 12px;
}
 
.service-text {
  font-size: 15px;
  color: #571d00;
  line-height: 2;
  margin: 0;
}
 
@media (max-width: 768px) {
  .salon-service {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
 
/* =========================
   店舗情報セクションタイトル
========================= */
h3.section-title-left.salon-section-title {
  font-size: 46px;
  font-weight: 500;
  color: #fbae17;
  margin: 60px 0 24px;
  text-align: left;
  letter-spacing: 0.04em;
}
 
@media (max-width: 768px) {
  h3.section-title-left.salon-section-title {
    font-size: 24px;
    margin: 10px 0 16px;
  }
}
 
/* =========================
   店舗情報（テーブル + 地図）
========================= */
.salon-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
 
.salon-info-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  display: block;
}
 
@media (max-width: 768px) {
  .salon-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
 
/* =========================
   メニュー アコーディオン
========================= */
.salon-menu {
  margin-bottom: 48px;
}
 
.menu-accordion {
  border-bottom: 1px solid #e0d5c5;
  overflow: hidden;
}
 
.menu-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  background: #fff3d8;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}
 
.menu-accordion-btn:hover {
  background: #feeabb;
}
 
.menu-accordion.is-open .menu-accordion-btn {
  background: #fbae17;
}
 
.menu-category {
  font-size: 18px;
  font-weight: 700;
  color: #571d00;
  letter-spacing: 0.08em;
}
 
.menu-accordion.is-open .menu-category {
  color: #fff;
}
 
/* アイコン（＋ / ー） */
.menu-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
 
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  background: #fbae17;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
 
.menu-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 
.menu-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 
.menu-accordion.is-open .menu-icon::before,
.menu-accordion.is-open .menu-icon::after {
  background: #fff;
}
 
.menu-accordion.is-open .menu-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
 
/* アコーディオン本体 */
.menu-accordion-body {
  display: none;
  padding: 0;
}
 
.menu-accordion.is-open .menu-accordion-body {
  display: block;
}
 
/* メニューテーブル */
.menu-table {
  width: 100%;
  border-collapse: collapse;
}
 
/* .menu-table tr {
  
  border-bottom: 1px solid #f0e6d3 !important;
} */

table.menu-table tr {
  border-top: 1px solid #fbae17;
  background-color: white;
}

table.menu-table tr:last-child {
  border-bottom: none;
  margin-bottom: 8px;
}
 
.menu-table th {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #571d00;
  text-align: left;
  /* background: #fffaee; */
  width: 60%;
}
 
.menu-table td {
  padding: 12px 16px;
  font-size: 15px;
  color: #571d00;
  text-align: right;
  /* background: #fffaee; */
}
 
@media (max-width: 768px) {
  .menu-category {
    font-size: 15px;
  }
 
  .menu-table th,
  .menu-table td {
    font-size: 13px;
    padding: 10px 12px;
  }
}
 
/* =========================
   店内写真
========================= */
.salon-inside {
  margin-bottom: 48px;
}
 
.inside-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
 
.inside-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
 
.inside-caption {
  font-size: 14px;
  color: #9a7766;
  text-align: center;
  margin: 0;
}
 
@media (max-width: 768px) {
  .inside-photos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
 
/* =========================
   コンセプトセクション
========================= */
.salon-concept {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
 
.salon-concept p {
  font-size: 18px;
  line-height: 2;
  color: #571d00;
  text-align: left;
  
  @media (max-width: 768px) {
     font-size: 14px;
   }
}
 
.pt-pc30-sp10 {
   padding-top:30px;
   @media (max-width: 768px) {
     padding-top:10px;
   }
 }
 
 /* =========================
    360度パノラマ
 ========================= */
 .panorama-wrap {
   width: 100%;
   margin-bottom: 48px;
   border-radius: 8px;
   overflow: hidden;
 }
 
 #panorama,
 #panorama-tour {
   width: 100%;
   height: 500px;
 }
 
 @media (max-width: 768px) {
   #panorama,
   #panorama-tour {
     height: 280px;
   }
 }
 .top-contents .salon-info-table table tr:first-child {
   border-top: 2px solid #fbae17;
 }
 
 .top-contents .salon-info-table table tr {
   border-top: 1px solid #fbae17;
   background-color: white;
 }
 
 
.top-contents .salon-info-table table tr:last-child {
   border-bottom: 2px solid #fbae17;
 }
 
 /* =========================
    パノラマ サムネイル
 ========================= */
 .pano-description {
   font-size: 14px;
   color: #9a7766;
   line-height: 1.8;
   margin: 12px 0 20px;
 }
 
 .pano-thumbs {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 8px;
   margin-top: 16px;
 }
 
 .pano-thumb {
   border: none;
   background: none;
   padding: 0;
   cursor: pointer;
   border-radius: 6px;
   overflow: hidden;
   position: relative;
   transition: opacity 0.3s ease;
   border: 3px solid transparent;
 }
 
 .pano-thumb img {
   width: 100%;
   aspect-ratio: 4 / 3;
   object-fit: cover;
   display: block;
 }
 
 .pano-thumb span {
   display: block;
   text-align: center;
   font-size: 13px;
   color: #571d00;
   padding: 6px 4px;
   background: #fffaee;
 }
 
 /* アクティブ状態 */
 .pano-thumb.is-active {
   border-color: #fbae17;
 }
 
 .pano-thumb:not(.is-active):hover {
   opacity: 0.75;
 }
 
 @media (max-width: 768px) {
   .pano-thumbs {
     grid-template-columns: repeat(2, 1fr);
     gap: 6px;
   }
 }
 
 
 
 /* ============================================================
    ヘアカタログ アーカイブページ用スタイル
    style.css の末尾に追記してください
    ============================================================ */
 
 /* アーカイブページ タイトル下 リード文 */
 .hair-archive__lead {
   text-align: center;
   color: #888;
   font-size: 0.9rem;
   margin-bottom: 2rem;
 }
 
 /* フィルターボタン */
 .hair-filter {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   justify-content: center;
   margin-bottom: 2rem;
 }
 
 .hair-filter__btn {
   display: inline-block;
   padding: 0.4rem 1.2rem;
   border: 1px solid #ccc;
   border-radius: 999px;
   font-size: 0.85rem;
   color: #555;
   text-decoration: none;
   transition: background 0.2s, color 0.2s, border-color 0.2s;
 }
 
 .hair-filter__btn:hover,
 .hair-filter__btn.is-active {
   background: #d4a0b0;  /* サイトのピンク系に合わせて調整 */
   color: #fff;
   border-color: #d4a0b0;
 }
 
 /* アーカイブ一覧：グリッド（デスクトップ4列 / スマホ2列） */
 .hair-list--archive {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1rem;
   list-style: none;
   padding: 0;
   margin: 0 auto 2rem;
 }
 
 @media (max-width: 768px) {
   .hair-list--archive {
     grid-template-columns: repeat(2, 1fr);
     gap: 0.6rem;
   }
 }
 
 /* サムネイル：正方形クロップ */
 .hair-list--archive .hair-thumb {
   aspect-ratio: 1 / 1;
   overflow: hidden;
   border-radius: 4px;
 }
 
 .hair-list--archive .hair-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
   display: block;
 }
 
 .hair-list--archive .hair-item a:hover .hair-thumb img {
   transform: scale(1.05);
 }
 
 /* 空の場合 */
 .hair-item--empty {
   grid-column: 1 / -1;
   text-align: center;
   color: #aaa;
   padding: 3rem 0;
 }
 
 /* ページネーション */
 .hair-pagination {
   text-align: center;
   margin-top: 2rem;
 }
 
 .hair-pagination .page-numbers {
   display: inline-block;
   padding: 0.4rem 0.8rem;
   margin: 0 0.2rem;
   border: 1px solid #ccc;
   border-radius: 4px;
   color: #555;
   text-decoration: none;
   font-size: 0.9rem;
   transition: background 0.2s, color 0.2s;
 }
 
 .hair-pagination .page-numbers:hover,
 .hair-pagination .page-numbers.current {
   background: #d4a0b0;
   color: #fff;
   border-color: #d4a0b0;
 }
 
 /* ============================================================
    トップページ hair-block：Fancybox ライトボックス対応
    （既存の .hair-block スタイルに追加）
    ============================================================ */
 .hair-block .hair-item a {
   display: block;
   cursor: zoom-in;
 }
 
 .hair-block .hair-thumb {
   overflow: hidden;
   border-radius: 4px;
 }
 
 .hair-block .hair-thumb img {
   transition: transform 0.4s ease;
 }
 
 .hair-block .hair-item a:hover .hair-thumb img {
   transform: scale(1.05);
 }

/* ============================================================
    WordPress 管理バー（32px）がある場合に
    Fancybox のツールバーを下にずらす
    style.css の末尾に追記してください
    ============================================================ */
 
 /* 管理バーがある場合（ログイン中 PC） */
 .admin-bar .fancybox__toolbar {
     top: 32px !important;
 }
 
 /* 管理バーがある場合（ログイン中 スマホ：管理バーは46px） */
 @media screen and (max-width: 782px) {
     .admin-bar .fancybox__toolbar {
         top: 46px !important;
     }
 }
 
 /* キャプションエリア全体 */
 .fancybox__caption {
     display: flex !important;
     flex-direction: column !important;
     align-items: center !important;
     gap: 6px !important;
     padding: 12px 20px !important;
     background: rgba(0, 0, 0, 0.55) !important;
     text-align: center !important;
 }
  
 /* タイトル */
 .fb-caption__title {
     display: block;
     font-size: 1rem;
     font-weight: bold;
     color: #fff;
     letter-spacing: 0.05em;
 }
  
 /* 説明文 */
 .fb-caption__desc {
     display: block;
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.85);
     line-height: 1.6;
 }
  
  /* サムネイルを relative にしてタイトルを重ねる土台にする */
  .hair-list--archive .hair-thumb {
      position: relative;
  }
   
  /* タイトル：下部にグラデーション背景で重ねる */
  .hair-thumb__title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0;
      padding: 0.5rem 0.6rem;
      font-size: 0.8rem;
      color: #fff;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
      line-height: 1.4;
   
      /* 長いタイトルは1行で省略 */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
   
      /* ホバー時にフワッと表示 */
      opacity: 0;
      transition: opacity 0.3s ease;
  }
   
  .hair-list--archive .hair-item a:hover .hair-thumb__title {
      opacity: 1;
  }
   
  /* スマホは常に表示（ホバーできないため） */
  @media (max-width: 768px) {
      .hair-thumb__title {
          opacity: 1;
      }
  }
   

/* =========================
     サロンMV動画（960×340固定比率）
  ========================= */
  .salon-mv {
    position: relative;
    width: 100%;
    margin: 0 0 48px;
    overflow: hidden;
    border-radius: 8px;
    /* 960:340 = 35.416...% */
    aspect-ratio: 960 / 340;
  }
  
  .salon-mv video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  @media (max-width: 768px) {
    .salon-mv {
      margin: 0 0 32px;
      border-radius: 4px;
      /* SPでは少し縦を広めに */
      aspect-ratio: 4 / 3;
    }
  }