/* =========================
   Sample hair salon - style.css
   WordPress sample theme
   ========================= */

/* ===== Base ===== */
:root{
  --text: #222222;
  --muted: #7d8790;
  --line: #e8ebee;
  --accent: #aab7c2;
  --bg-muted: #f7f8f9;

  --band-bg: rgba(255,255,255,0.82);
  --band-border: rgba(180,188,196,0.28);
  --band-shadow: 0 18px 40px rgba(0,0,0,0.05);
  --band-radius: 18px;

  --btn-dark: #2a2a2a;
  --btn-dark-hover: #1d1d1d;
  --soft-shadow: 0 18px 40px rgba(0,0,0,0.06);

  --header-h: 84px;
}

*{
  box-sizing: border-box;
}

html,
body{
  height: 100%;
}

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

body{
  margin: 0;
  padding-top: var(--header-h);
  font-family: 'Zen Old Mincho', serif;
  color: var(--text);
  line-height: 1.8;
  background: #ffffff;
}

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

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ナビ・ボタン類は sans */
.gnav,
button,
.news-list,
input,
textarea,
select,
.footer-iconbtn,
.access-btn,
.wpcf7 input[type="submit"]{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===== Header ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

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

.logo{
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #222222;
}

.gnav-list{
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gnav-link{
  position: relative;
  display: inline-block;
  padding: 6px 2px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.gnav-link.is-active::after,
.gnav-link:hover::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--accent);
}

/* ===== Hero slider ===== */
.hero{
  position: relative;
  overflow: hidden;
}

.hero-slides{
  position: relative;
  height: 560px;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active{
  opacity: 1;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.38), rgba(255,255,255,0.20));
  z-index: 1;
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 72px;
  text-align: center;
}

.hero-content--left{
  justify-content: flex-start;
  margin: 0;
}

.hero-content--left .hero-catch{
  transform: none;
}

.hero-catch{
  margin: 0;
  color: #ffffff;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.35),
    0 4px 24px rgba(0,0,0,0.25);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 42px);
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}

.hero-sub{
  display: block;
  margin-top: 14px;
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 0.18em;
  opacity: 0.95;
  text-align: center;
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.hero-arrow--left{
  left: 20px;
}

.hero-arrow--right{
  right: 20px;
}

.hero-arrow:hover{
  background: rgba(255,255,255,0.4);
}

/* ===== Sections ===== */
.section{
  padding: 90px 0;
  text-align: left;
  margin: 0;
}

#access.section,
#contact-page.section,
#reserve.section{
  padding-top: 40px;
}

.section--muted{
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0;
}

/* ===== Titles ===== */
.section-title{
  margin: 0 0 22px;
  color: #6f7b84;
  font-weight: 700;
  font-size: clamp(21px, 2.4vw, 40px);
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 18px;
  display: inline-block;
  width: fit-content;
}

.section-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #bcc7cf;
  opacity: 0.9;
}

.section-title-center{
  display: block;
  width: 100%;
  text-align: center;
}

.section-title-center::after{
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 60%);
}

.brand{
  color: #3a3a3a;
  font-weight: 700;
}

.about-title .line{
  display: block;
  white-space: nowrap;
}

@media (max-width: 600px){
  .about-title .line{
    white-space: normal;
  }
}

/* ===== Heading card ===== */
.price-head,
.section-heading{
  width: min(1100px, 92%);
  margin: 0 auto 44px;
  padding: 34px 28px;
  border-radius: var(--band-radius);
  background: var(--band-bg);
  border: 1px solid var(--band-border);
  box-shadow: var(--band-shadow);
  text-align: center;
}

.price-title,
.section-heading .title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5f6a73;
}

.price-lead,
.section-heading .lead{
  display: block;
  margin: 0;
  color: #7d8790;
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.price-unit{
  margin-top: 6px;
  font-size: 14px;
  color: #7d8790;
}

/* ===== Split ===== */
.split{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}

.split--reverse{
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-text{
  min-width: 0;
  width: 100%;
}

.dot-list{
  margin: 0;
  padding-left: 1.2em;
  color: #6f7b84;
  font-size: 17px;
  font-weight: 600;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.dot-list li{
  margin: 16px 0;
}

.check-list{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  color: #6f7b84;
  font-size: 16px;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.check-list li{
  margin: 14px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before{
  content: "✓";
  color: #2b2b2b;
  font-weight: 900;
  line-height: 1;
  margin-top: 4px;
}

/* ===== Image + layered board ===== */
.split-media{
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: inline-block;
}

.split-media::before,
.split-media::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
}

.split-media::before{
  background: #f3f4f5;
  transform: translate(40px, 40px);
  z-index: 0;
}

.split-media::after{
  background: #e7eaed;
  transform: translate(20px, 20px);
  z-index: 1;
}

.split-media .photo-overlay{
  display: none;
}

.split-media img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.split--reverse .split-media::before{
  transform: translate(-40px, 40px);
}

.split--reverse .split-media::after{
  transform: translate(-20px, 20px);
}

.split-media__img{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.split-media--soft .split-media__img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(228, 232, 236, 0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 3;
}

.split-media--soft img{
  -webkit-filter: saturate(0.80) contrast(0.96) brightness(1.01);
  filter: saturate(0.80) contrast(0.96) brightness(1.01);
}

/* ===== Generic cards ===== */
.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card-grid-3{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card{
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(180,188,196,0.18);
  box-shadow: 0 16px 36px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

.card h3{
  margin: 0 0 12px;
  font-size: 20px;
  color: #2d2d2d;
  letter-spacing: 0.08em;
}

.card p{
  margin: 0;
  color: #7d8790;
  font-size: 14px;
  line-height: 1.8;
}

/* ===== Gallery ===== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.gallery-grid img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}

/* ===== Price cards ===== */
.price-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.price-card{
  background: #ffffff;
  padding: 42px 34px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(180,188,196,0.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.05),
    0 4px 10px rgba(0,0,0,0.03);
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.08),
    0 6px 16px rgba(0,0,0,0.04);
}

.price-card h3{
  margin: 0 0 16px;
  color: #6f7b84;
}

.price-amount{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 10px 0 6px;
}

.price-amount span{
  font-size: 13px;
  font-weight: 700;
  color: #7d8790;
}

.price-desc{
  color: #7d8790;
  font-size: 14px;
}

.price-unit{
  font-size: 0.9rem;
  color: #7d8790;
  font-weight: 500;
}

.price-save{
  white-space: nowrap;
}

.is-recommend{
  position: relative;
  border: 1.5px solid rgba(125,135,144,0.35);
}

.price-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #2a2a2a;
  border-radius: 999px;
}

#price.section{
  padding-top: 40px;
  padding-bottom: 90px;
}

#price .price-head{
  margin-top: 0;
}

/* ===== Access ===== */
.access-wrap{
  display: grid;
  gap: 32px;
  place-items: center;
  text-align: center;
}

#access img{
  width: min(1100px, 100%);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.access-note{
  margin-top: 12px;
  font-size: 13px;
  color: #7d8790;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.parking-badge{
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(230,233,236,0.8);
  border-radius: 999px;
  font-size: 13px;
  color: #5f6a73;
}

/* ===== Buttons ===== */
.access-btn,
.wpcf7 input[type="submit"],
.footer-column-more a{
  background: var(--btn-dark);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 40px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: .2s ease;
}

.access-btn:hover,
.wpcf7 input[type="submit"]:hover,
.footer-column-more a:hover{
  background: var(--btn-dark-hover);
  filter: none;
}

.wpcf7 form p:last-of-type{
  text-align: center;
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #f7f8f9;
  text-align: center;
}

.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

/* ===== Footer social buttons ===== */
.footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-iconbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 44px;
  padding: 0 15px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.footer-iconbtn span{
  display: inline-block;
  line-height: 1;
}

.footer-iconbtn svg{
  width: 0;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.footer-iconbtn--insta{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #ffffff;
  border: none;
}

.footer-iconbtn--line{
  background: #06C755;
  color: #ffffff;
  border: none;
}

/* ===== Back to top ===== */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: #aab7c2;
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.back-to-top:hover{
  background: #7d8790;
}

.back-to-top.is-show{
  opacity: 1;
  pointer-events: auto;
}

/* ===== Reserve page ===== */
#reserve .reserve-wrap{
  text-align: center;
  margin: 28px auto 46px;
}

#reserve .reserve-btn{
  display: inline-block;
  background: var(--btn-dark);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 44px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

#reserve.section{
  padding-top: 40px;
}

#reserve .reserve-btn:hover{
  background: var(--btn-dark-hover);
}

#reserve .reserve-note{
  margin: 12px 0 0;
  font-size: 13px;
  color: #7d8790;
}

#reserve .reserve-notice{
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(180,188,196,0.18);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

#reserve .reserve-notice__title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #5f6a73;
}

#reserve .reserve-list{
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

#reserve .reserve-list li{
  color: #2b2b2b;
}

#reserve .section-heading{
  margin-top: 0;
}

.reserve-schedule{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto 0;
  border-radius: 20px;
}

/* ===== Floating reserve button ===== */
.floating-reserve{
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2a2a2a;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: 0.2s ease;
  z-index: 9998;
}

.floating-reserve:hover{
  transform: translateY(-2px);
  background: #1d1d1d;
}

.page-id-135 .floating-reserve{
  display: none !important;
}

/* ===== Contact page ===== */
#contact-page .contact-page-wrap{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

#contact-page .contact-form-area{
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

#contact-page .contact-info-area{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact-page .info-card{
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

#contact-page .info-card h3{
  margin-bottom: 14px;
  font-size: 18px;
  color: #5f6a73;
}

#contact-page .info-list{
  padding-left: 1.2em;
  line-height: 1.9;
}

#contact-page .info-note{
  font-size: 13px;
  color: #7d8790;
  margin-top: 10px;
}

#contact-page .faq-item{
  margin-bottom: 10px;
}

#contact-page .faq-item summary{
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ===== News ===== */
.news-list{
  width: min(900px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(180,188,196,0.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.05),
    0 4px 10px rgba(0,0,0,0.03);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-item:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.08),
    0 6px 14px rgba(0,0,0,0.04);
}

.news-date{
  font-size: 12px;
  font-weight: 800;
  color: #7d8790;
  letter-spacing: 0.02em;
}

.news-title{
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ===== Single Post ===== */
.post-article{
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(180,188,196,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

.post-back{
  text-align: center;
  margin-top: 22px;
}

/* ===== News pagination ===== */
.news-pagination{
  text-align: center;
  margin-top: 22px;
}

.news-pagination .page-numbers{
  display: inline-block;
  margin: 0 4px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #2b2b2b;
  background: rgba(235,239,242,0.75);
  border: 1px solid rgba(180,188,196,0.32);
  font-weight: 700;
  font-size: 14px;
}

.news-pagination .page-numbers.current{
  background: rgba(125,135,144,0.18);
  border-color: rgba(125,135,144,0.35);
}

.section-heading,
.news-list{
  width: min(900px, 92%);
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== Footer column ===== */
.footer-column{
  width: min(760px, 92%);
  margin: 48px auto 32px;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid rgba(180,188,196,0.18);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  text-align: center;
}

.footer-title{
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: #6f7b84;
  letter-spacing: 0.12em;
}

.footer-column-list{
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.footer-column-list li{
  border-top: 1px solid #eef1f3;
}

.footer-column-list li:first-child{
  border-top: none;
}

.footer-column-list a{
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: #2b2b2b;
  transition: .2s ease;
}

.footer-column-list a:hover{
  opacity: 0.75;
}

.footer-date{
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #7d8790;
}

.footer-post-title{
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-column-more{
  margin-top: 8px;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .split,
  .split--reverse{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-media{
    max-width: 560px;
  }

  .split-media::before{
    transform: translate(18px, 18px);
  }

  .split-media::after{
    transform: translate(9px, 9px);
  }

  .split--reverse .split-media::before{
    transform: translate(-18px, 18px);
  }

  .split--reverse .split-media::after{
    transform: translate(-9px, 9px);
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .hero-slides{
    height: 420px;
  }

  .hero-content{
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding: 0 12px 24px;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .hero-content--left{
    justify-content: center;
    padding-left: 0;
  }

  .hero-content--left .hero-catch{
    transform: none;
  }

  .hero-sub{
    font-size: clamp(12px, 3.8vw, 15px);
  }

  .hero-overlay{
    background: linear-gradient(
      rgba(255,255,255,0.25),
      rgba(255,255,255,0.55)
    );
  }

  .hero-arrow{
    top: 55%;
  }

  .section{
    padding: 64px 0;
  }

  .price-head,
  .section-heading{
    padding: 28px 20px;
    margin-top: 0;
  }

  #contact-page .contact-page-wrap{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px){
  :root{
    --header-h: 120px;
  }

  body{
    padding-top: 100px;
  }

  .header-inner{
    height: auto;
    padding: 16px 0;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .gnav-list{
    gap: 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .news-item{
    grid-template-columns: 1fr;
    gap: 6px;
  }

  #reserve.section{
    padding-top: 50px;
  }

  #reserve .reserve-notice{
    padding: 22px 18px;
  }

  .floating-reserve{
    right: 16px;
    bottom: 16px;
  }

  .back-to-top{
    right: 16px;
    bottom: 84px;
  }

  .footer-iconbtn{
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .footer-column{
    margin: 36px auto 28px;
    padding: 22px 16px;
  }

  .footer-title{
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-column-list a{
    padding: 12px 2px;
  }

  .footer-post-title{
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-column-more a{
    padding: 11px 24px;
    font-size: 14px;
  }
}

/* =========================================
   Sample hair salon - cool / luxury override
   一番下に追記
========================================= */

:root{
  --text: #202020;
  --muted: #6f7680;
  --line: #e7e8eb;
  --accent: #9aa3ad;
  --bg-muted: #f7f7f8;

  --band-bg: rgba(255,255,255,0.72);
  --band-border: rgba(20,20,20,0.06);
  --band-shadow: 0 12px 28px rgba(0,0,0,0.04);
  --band-radius: 24px;
}

/* ===== 全体トーン ===== */
body{
  color: var(--text);
  background: #ffffff;
}

.section--muted{
  background: #fafafb;
  border-top: 1px solid #ececef;
  border-bottom: 1px solid #ececef;
}

/* ===== ヘッダー ===== */
.site-header{
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ececef;
}

.logo{
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #252525;
}

.gnav-link{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #222;
}

.gnav-link.is-active::after,
.gnav-link:hover::after{
  height: 1px;
  bottom: -12px;
  background: #222;
  opacity: .45;
}

/* ===== HERO ===== */
.hero-slides{
  height: 620px;
}

.hero-overlay{
  background: linear-gradient(
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.38)
  );
}

.hero-content{
  justify-content: center;
  text-align: center;
  padding-inline: 40px;
}

.hero-content--left{
  justify-content: center;
  margin: 0;
}

.hero-content--left .hero-catch{
  transform: none;
}

.hero-catch{
  color: #fff;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.28;
  letter-spacing: .04em;
  font-weight: 700;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.28),
    0 8px 32px rgba(0,0,0,0.18);
}

.hero-sub{
  display: block;
  margin-top: 14px;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(255,255,255,0.92);
}

.hero-arrow{
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 28px;
}

.hero-arrow:hover{
  background: rgba(255,255,255,0.26);
}

/* ===== セクション余白 ===== */
.section{
  padding: 110px 0;
}

@media (max-width: 860px){
  .section{
    padding: 72px 0;
  }

  .hero-slides{
    height: 430px;
  }

  .hero-catch{
    font-size: clamp(24px, 7vw, 40px);
    line-height: 1.35;
  }

  .hero-sub{
    font-size: clamp(12px, 3.5vw, 14px);
    letter-spacing: .12em;
  }
}

/* ===== 帯見出し ===== */
.price-head,
.section-heading,
.footer-column{
  background: var(--band-bg);
  border: 1px solid var(--band-border);
  box-shadow: var(--band-shadow);
  border-radius: var(--band-radius);
  backdrop-filter: blur(4px);
}

.price-head,
.section-heading{
  padding: 38px 32px;
}

.price-title,
.section-heading .title,
.footer-title{
  color: #4f5660;
  letter-spacing: .12em;
  font-weight: 700;
}

.price-lead,
.section-heading .lead{
  color: #7f8791;
  font-size: 14px;
  letter-spacing: .04em;
}

/* ===== 通常見出し ===== */
.section-title{
  color: #727a84;
  font-weight: 700;
  letter-spacing: .10em;
  padding-bottom: 16px;
}

.section-title::after{
  height: 1px;
  background: #b7bcc3;
  opacity: .9;
}

.brand{
  color: #5a616a;
}

/* ===== テキスト ===== */
.dot-list,
.check-list,
.news-title,
.footer-post-title,
.price-desc,
.price-unit,
.access-note{
  color: #6f7680;
}

.dot-list li,
.check-list li{
  margin: 18px 0;
}

/* ===== split ===== */
.split{
  gap: 68px;
}

.split-media{
  max-width: 560px;
}

.split-media::before{
  background: #f3f4f6;
  transform: translate(28px, 28px);
}

.split-media::after{
  background: #eceef1;
  transform: translate(14px, 14px);
}

.split--reverse .split-media::before{
  transform: translate(-28px, 28px);
}

.split--reverse .split-media::after{
  transform: translate(-14px, 14px);
}

.split-media img{
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.split-media--soft .split-media__img::after{
  background: rgba(240,242,245,0.16);
  mix-blend-mode: multiply;
}

.split-media--soft img{
  -webkit-filter: saturate(0.78) contrast(0.95) brightness(1.02);
  filter: saturate(0.78) contrast(0.95) brightness(1.02);
}

/* ===== メニューカード ===== */
.card,
.price-card,
.news-item,
.post-article,
#contact-page .contact-form-area,
#contact-page .info-card,
#reserve .reserve-notice{
  background: #fff;
  border: 1px solid rgba(20,20,20,0.05);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
}

.card-grid .card,
.card-grid-3 .card{
  padding: 40px 28px;
}

.card h3,
.card-grid .card h3,
.card-grid-3 .card h3{
  color: #2c2f34;
  letter-spacing: .08em;
  font-weight: 700;
}

.card p,
.card-grid .card p,
.card-grid-3 .card p{
  color: #7a818a;
}

/* ===== 価格カード ===== */
.price-grid{
  gap: 28px;
}

.price-card{
  padding: 44px 34px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.04);
}

.price-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.06);
}

.price-card h3{
  color: #5d646d;
  letter-spacing: .08em;
}

.price-amount{
  color: #232323;
  font-size: 34px;
  letter-spacing: .02em;
}

.price-amount span{
  color: #7f8791;
}

.is-recommend{
  border: 1px solid rgba(20,20,20,0.10);
}

.price-badge{
  background: #222;
  color: #fff;
  border: none;
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: .08em;
}

/* ===== お知らせ ===== */
.news-item{
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.news-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
}

.news-date{
  color: #99a1ab;
  font-size: 11px;
  letter-spacing: .08em;
}

/* ===== ボタン ===== */
.access-btn,
.wpcf7 input[type="submit"],
.footer-column-more a,
#reserve .reserve-btn,
.floating-reserve{
  background: #262626;
  color: #fff;
  border: 1px solid #262626;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.access-btn:hover,
.wpcf7 input[type="submit"]:hover,
.footer-column-more a:hover,
#reserve .reserve-btn:hover,
.floating-reserve:hover{
  background: #111;
  border-color: #111;
  filter: none;
  transform: translateY(-1px);
}

.floating-reserve{
  padding: 14px 24px;
}

/* ===== フッターコラム ===== */
.footer-column{
  margin-top: 54px;
  padding: 34px 28px;
}

.footer-column-list li{
  border-top: 1px solid #f0f1f3;
}

.footer-column-list a{
  padding: 16px 4px;
}

.footer-date{
  color: #9aa3ad;
  letter-spacing: .04em;
}

.footer-column-more a{
  padding: 13px 30px;
}

/* ===== フッターボタン ===== */
.footer-links{
  gap: 12px;
}

.footer-iconbtn{
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.footer-iconbtn--insta{
  border: 1px solid #262626;
}

.footer-iconbtn--line{
  border: 1px solid rgba(20,20,20,0.14);
}

/* ===== gallery ===== */
.gallery-grid img,
.gallery-item img{
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.05);
}

/* ===== アクセス画像 ===== */
#access img{
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}

/* ===== スマホ微調整 ===== */
@media (max-width: 900px){
  .split{
    gap: 34px;
  }

  .split-media::before{
    transform: translate(14px, 14px);
  }

  .split-media::after{
    transform: translate(7px, 7px);
  }

  .split--reverse .split-media::before{
    transform: translate(-14px, 14px);
  }

  .split--reverse .split-media::after{
    transform: translate(-7px, 7px);
  }

  .price-head,
  .section-heading{
    padding: 28px 18px;
  }
}

@media (max-width: 600px){
  .logo{
    font-size: 21px;
  }

  .gnav-link{
    font-size: 13px;
  }

  .section-title{
    letter-spacing: .06em;
  }

  .footer-column{
    padding: 24px 16px;
  }

  .floating-reserve{
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }
}


/* =========================================
   hero修正 + 帯/メッセージだけ洗練させる上書き
   style.css の一番下に追記
========================================= */

/* ===== 1. HEROは図形をやめて、影だけ強化 ===== */
.hero-catch{
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
	
 .hero-catch{

  color:#fff;
  text-align:center;
  line-height:1.28;
  letter-spacing:.04em;
  font-weight:700;
  font-size:clamp(34px,4.6vw,60px);

  /* 強化したシャドウ */
  text-shadow:
  0 2px 6px rgba(0,0,0,.35),
  0 6px 16px rgba(0,0,0,.35),
  0 12px 28px rgba(0,0,0,.35),
  0 20px 48px rgba(0,0,0,.28);

  /* 輪郭を作る */
  -webkit-text-stroke: 1px rgba(0,0,0,.15);
}

/* 前に入れた平行四辺形を無効化 */
.hero-catch::before,
.hero-catch::after{
  content: none !important;
}

.hero-sub{

  display:block;
  margin-top:14px;

  font-size:clamp(13px,1.4vw,18px);
  font-weight:600;
  letter-spacing:.16em;

  color:rgba(255,255,255,.96);

  text-shadow:
  0 2px 6px rgba(0,0,0,.35),
  0 6px 18px rgba(0,0,0,.28);

}

.hero-content{
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: 24px;
}

.hero-content--left{
  justify-content: center;
  margin: 0;
}

.hero-content--left .hero-catch{
  transform: none;
}

.hero-overlay{
  background: linear-gradient(
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.0)
  );
}
	
/* スマホ */
@media (max-width: 900px){
  .hero-catch{
    font-size: clamp(24px, 7vw, 38px);
    line-height: 1.36;
  }

  .hero-sub{
    margin-top: 8px;
    font-size: clamp(11px, 3.2vw, 14px);
    letter-spacing: .10em;
  }
}

@media (max-width: 600px){
  .hero-content{
    align-items: flex-end;
    padding: 0 0 26px;
  }

  .hero-catch{
    font-size: clamp(22px, 6.8vw, 30px);
  }

  .hero-sub{
    font-size: 11px;
    letter-spacing: .08em;
  }
}

/* ===== 2. 帯見出しは“白カード”感を減らして芯を出す ===== */
.price-head,
.section-heading,
.footer-column{
  position: relative;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(30,30,30,0.05);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* 帯の奥にうっすら斜めプレート */
.price-head::before,
.section-heading::before,
.footer-column::before{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -60px;
  background: linear-gradient(
    135deg,
    rgba(140, 148, 158, 0.10),
    rgba(140, 148, 158, 0.02)
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

/* タイトルを少し強く */
.price-title,
.section-heading .title,
.footer-title{
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  color: #585f68;
  letter-spacing: .12em;
  font-weight: 700;
}

/* タイトル下に短いプレート線 */
.price-title::after,
.section-heading .title::after,
.footer-title::after{
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #a2aab3, #d7dbe0);
  border-radius: 999px;
}

/* ===== 3. 添付のようなメッセージ部分にだけ軽いアクセント ===== */
/* split-text内の見出しまわり */
.split-text .section-title,
.split-text .about-title{
  position: relative;
  display: inline-block;
  padding: 0 0 18px 0;
  margin-bottom: 28px;
  color: #6d7580;
  letter-spacing: .08em;
}

/* 細い下線 */
.split-text .section-title::after,
.split-text .about-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #a4acb5, rgba(164,172,181,0.18));
  border-radius: 999px;
}

/* 英字見出しや短いタイトルに相性よく */
.split-text .brand{
  color: #4f5660;
}

/* 本文の行間と色を少し締める */
.split-text p,
.split-text li,
.check-list,
.dot-list{
  color: #6b727b;
}

/* ===== 4. Stylistのような本文ブロックに“控えめな左アクセント” ===== */
/* split-text にだけ効く */
.split-text{
  position: relative;
}

/* 左上に小さな縦アクセント */
.split-text::before{
  content: "";
  position: absolute;
  left: -18px;
  top: 6px;
  width: 3px;
  height: 64px;
  background: linear-gradient(
    180deg,
    rgba(130,138,148,0.70),
    rgba(130,138,148,0.12)
  );
  border-radius: 999px;
  opacity: .7;
}

/* ただし、悩み一覧では強すぎるなら少し弱める */
#worries + .dot-list,
#worries ~ .dot-list{
  color: #6f7680;
}

/* ===== 5. スマホで主張を少し抑える ===== */
@media (max-width: 900px){
  .price-head::before,
  .section-heading::before,
  .footer-column::before{
    width: 120px;
    height: 120px;
    right: -24px;
    top: -36px;
  }

  .split-text::before{
    left: -10px;
    width: 2px;
    height: 48px;
    opacity: .5;
  }

  .split-text .section-title::after,
  .split-text .about-title::after{
    width: 90px;
  }
}

@media (max-width: 600px){
  .split-text::before{
    display: none;
  }

  .price-title::after,
  .section-heading .title::after,
  .footer-title::after{
    width: 56px;
    margin-top: 10px;
  }
}

/* =========================================
   Sample hair salon
   プロ仕上げ用 上書きCSS（5箇所）
   style.css の一番下に追記
========================================= */

/* -----------------------------------------
   1. HERO：文字の可読性と高級感を強化
----------------------------------------- */
.hero-overlay{
  background:
    linear-gradient(
      rgba(0,0,0,0.26),
      rgba(0,0,0,0.14)
    ) !important;
}

.hero-catch{
  color: #fff;
  text-align: center;
  line-height: 1.22;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 64px);

  text-shadow:
    0 2px 6px rgba(0,0,0,.40),
    0 8px 18px rgba(0,0,0,.34),
    0 18px 40px rgba(0,0,0,.28),
    0 30px 70px rgba(0,0,0,.18);

  -webkit-text-stroke: 1px rgba(0,0,0,.16);
}

.hero-sub{
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.96);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 600;
  letter-spacing: .20em;

  text-shadow:
    0 2px 6px rgba(0,0,0,.40),
    0 8px 18px rgba(0,0,0,.24);
}

/* hero全体を少し締める */
.hero-slides{
  box-shadow: inset 0 -40px 80px rgba(0,0,0,.05);
}

@media (max-width: 900px){
  .hero-catch{
    font-size: clamp(26px, 7vw, 42px);
    line-height: 1.28;
  }

  .hero-sub{
    margin-top: 8px;
    font-size: clamp(11px, 3.2vw, 14px);
    letter-spacing: .10em;
  }
}

/* -----------------------------------------
   2. HEADER：少しだけ高級感を足す
----------------------------------------- */
.site-header{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}

.logo{
  letter-spacing: .03em;
  font-weight: 700;
  color: #2f3134;
}

.gnav-link{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #2f3134;
}

.gnav-link.is-active::after,
.gnav-link:hover::after{
  height: 2px;
  background: linear-gradient(90deg, #6f7780, #b8bec5);
}

/* -----------------------------------------
   3. 見出し：サロンらしい芯を作る
----------------------------------------- */
.section-title,
.price-title,
.section-heading .title,
.footer-title{
  color: #666f79 !important;
  letter-spacing: .12em;
  font-weight: 700;
}

/* 線を少し長め・繊細に */
.section-title::after{
  height: 1.5px;
  background: linear-gradient(
    90deg,
    #9ca5af 0%,
    rgba(156,165,175,0.55) 55%,
    rgba(156,165,175,0.12) 100%
  );
}

.price-title::after,
.section-heading .title::after,
.footer-title::after{
  width: 84px;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    #9ca5af 0%,
    rgba(156,165,175,0.35) 100%
  );
}

/* 帯を“白ベタ”から少しだけ分離 */
.price-head,
.section-heading,
.footer-column{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.88),
    rgba(255,255,255,0.76)
  ) !important;
  border: 1px solid rgba(90,100,110,0.08);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.035),
    0 2px 6px rgba(0,0,0,0.02);
}

/* -----------------------------------------
   4. メニュー / 料金カード：高見え化
----------------------------------------- */
.card,
.price-card{
  border-radius: 20px;
  border: 1px solid rgba(70,80,90,0.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(255,255,255,0.88)
  );
  box-shadow:
    0 14px 30px rgba(0,0,0,0.04),
    0 2px 6px rgba(0,0,0,0.02);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover,
.price-card:hover{
  transform: translateY(-6px);
  border-color: rgba(110,120,130,0.18);
  box-shadow:
    0 22px 42px rgba(0,0,0,0.06),
    0 6px 14px rgba(0,0,0,0.03);
}

.card h3,
.price-card h3{
  color: #35383d;
  letter-spacing: .06em;
}

.card p,
.price-card p,
.price-desc,
.price-unit{
  color: #6b737b;
}

.price-amount{
  color: #2d2f33;
}

/* おすすめバッジもSampleに合うように落ち着かせる */
.price-badge{
  background: #2f3134;
  color: #fff;
  border: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

/* -----------------------------------------
   5. Stylist / Gallery / 画像まわり統一
----------------------------------------- */

/* split画像を少しだけ洗練 */
.split-media img,
#access img,
.reserve-schedule,
.footer-column-list a,
.post-article{
  transition: all .25s ease;
}

.split-media img{
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 4px 10px rgba(0,0,0,0.03);
}

/* 板も少し上品に */
.split-media::before{
  background: #eceef1;
}
.split-media::after{
  background: #e3e7eb;
}

/* Stylist文章を読みやすく */
.split-text{
  max-width: 560px;
}

.split-text p{
  font-size: 17px;
  line-height: 2.0;
  color: #5f6770;
}

.dot-list,
.check-list{
  color: #5f6770;
}

.dot-list li,
.check-list li{
  margin: 18px 0;
}

/* Gallery画像の並びを少し締める */
.gallery-grid,
.image-grid{
  gap: 24px;
}

.gallery-grid img,
.image-grid img{
  border-radius: 22px;
  box-shadow:
    0 14px 32px rgba(0,0,0,0.05),
    0 3px 8px rgba(0,0,0,0.025);
}

.gallery-grid img:hover,
.image-grid img:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.07),
    0 6px 12px rgba(0,0,0,0.03);
}

/* 全体の本文トーンを微調整 */
body{
  color: #35383d;
}

p,
li{
  color: #5f6770;
}

/* 予約ボタンを今の黒系で少しだけ高級見え */
.floating-reserve{
  background: linear-gradient(180deg, #2f3134, #232527);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.16),
    0 4px 10px rgba(0,0,0,0.08);
}

.floating-reserve:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* ボタン共通もトーンを揃える */
.access-btn,
.footer-column-more a,
.wpcf7 input[type="submit"]{
  background: linear-gradient(180deg, #2f3134, #232527);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.10),
    0 3px 8px rgba(0,0,0,0.06);
}

.access-btn:hover,
.footer-column-more a:hover,
.wpcf7 input[type="submit"]:hover{
  filter: brightness(1.04);
}

/* スマホの余白を少しだけ整える */
@media (max-width: 900px){
  .section{
    padding: 72px 0;
  }

  .split-text{
    max-width: none;
  }

  .split-text p{
    font-size: 16px;
    line-height: 1.9;
  }

  .price-title::after,
  .section-heading .title::after,
  .footer-title::after{
    width: 68px;
  }
}

/* =========================================
   Pick up Style / Hair Catalog
========================================= */

.catalog-grid{
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.catalog-card{
  display: block;
  text-decoration: none;
  color: inherit;
}

.catalog-thumb{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 16px 32px rgba(0,0,0,0.05),
    0 4px 10px rgba(0,0,0,0.03);
  transition: transform .28s ease, box-shadow .28s ease;
}

.catalog-thumb img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.catalog-card:hover .catalog-thumb{
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.04);
}

.catalog-card:hover .catalog-thumb img{
  transform: scale(1.03);
}

.catalog-label{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-block;
  padding: 9px 16px;
  background: rgba(35,37,39,0.92);
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.catalog-more{
  text-align: center;
  margin-top: 34px;
}

.catalog-more-btn{
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #2f3134, #232527);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow:
    0 12px 24px rgba(0,0,0,0.10),
    0 4px 8px rgba(0,0,0,0.05);
  transition: .25s ease;
}

.catalog-more-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* 大きめカードを作りたい時用 */
.catalog-card--lg .catalog-thumb img{
  aspect-ratio: 4 / 5;
}

.catalog-thumb img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top; /* ← 上を優先して見せる */
  display: block;
  transition: transform .5s ease;
}

/* タブレット */
@media (max-width: 960px){
  .catalog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

/* スマホ */
@media (max-width: 600px){
  .catalog-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-thumb{
    border-radius: 16px;
  }

  .catalog-thumb img{
    aspect-ratio: 4 / 4.8;
  }

  .catalog-label{
    left: 12px;
    bottom: 12px;
    padding: 8px 13px;
    font-size: 11px;
    letter-spacing: .10em;
  }

  .catalog-more{
    margin-top: 26px;
  }

  .catalog-more-btn{
    padding: 13px 26px;
    font-size: 14px;
  }
}

/* =========================================
   Stylist section
========================================= */

.stylist-copy{
  max-width: 560px;
}

.stylist-eyebrow{
  margin: 0 0 10px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8d96a0;
}

.stylist-title{
  margin-bottom: 6px;
}

.stylist-role{
  margin: 0 0 22px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  color: #6f7780;
  text-transform: uppercase;
}

.stylist-message{
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
  color: #35383d;
  font-weight: 700;
}

.stylist-body p{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
  color: #5f6770;
}

@media (max-width: 900px){
  .stylist-copy{
    max-width: none;
  }

  .stylist-role{
    margin-bottom: 18px;
  }

  .stylist-message{
    font-size: 18px;
    line-height: 1.8;
  }

  .stylist-body p{
    font-size: 15px;
    line-height: 1.9;
  }
}

/* =========================================
   Salon Menu
========================================= */

.menu-heading{
  margin-bottom: 38px;
}

.salon-menu-grid{
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.salon-menu-card{
  position: relative;
  min-height: 280px;
  padding: 28px 28px 26px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(255,255,255,0.88)
  );
  border: 1px solid rgba(70,80,90,0.08);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.04),
    0 4px 10px rgba(0,0,0,0.02);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.salon-menu-card:hover{
  transform: translateY(-6px);
  border-color: rgba(90,100,110,0.16);
  box-shadow:
    0 24px 44px rgba(0,0,0,0.06),
    0 8px 16px rgba(0,0,0,0.03);
}

.salon-menu-card__num{
  display: inline-block;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #9aa2ab;
}

.salon-menu-card__title{
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: .08em;
  color: #2f3134;
}

.salon-menu-card__price{
  margin: 0 0 18px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  color: #2f3134;
}

.salon-menu-card__price span{
  font-size: 16px;
  font-weight: 700;
  color: #7a828b;
  margin-left: 3px;
}

.salon-menu-card__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #5f6770;
}

.salon-menu-card--featured{
  border-color: rgba(47,49,52,0.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 6px 14px rgba(0,0,0,0.03);
}

.salon-menu-badge{
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2f3134;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.salon-menu-note{
  margin: 22px 0 0;
  text-align: center;
  font-size: 13px;
  color: #8b949d;
  line-height: 1.8;
}

/* tablet */
@media (max-width: 960px){
  .salon-menu-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .salon-menu-card{
    min-height: 250px;
  }
}

/* mobile */
@media (max-width: 600px){
  .salon-menu-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .salon-menu-card{
    min-height: auto;
    padding: 24px 20px 22px;
    border-radius: 18px;
  }

  .salon-menu-card__num{
    margin-bottom: 14px;
  }

  .salon-menu-card__title{
    margin-bottom: 10px;
    font-size: 24px;
  }

  .salon-menu-card__price{
    margin-bottom: 14px;
    font-size: 34px;
  }

  .salon-menu-card__text{
    font-size: 14px;
    line-height: 1.85;
  }

  .salon-menu-badge{
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 7px 10px;
  }
}

/* =========================================
   Header / Hamburger Menu
========================================= */

.logo{
  text-decoration: none;
  color: var(--text);
}

.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1101;
}

.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #2f3134;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.nav-toggle.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* PC */
@media (min-width: 861px){
  .gnav{
    display: block !important;
  }
}

/* SP / Tablet */
@media (max-width: 860px){
  :root{ --header-h: 84px; }

  body{
    padding-top: var(--header-h);
  }

  .site-header{
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-inner{
    height: 84px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-direction: row;
  }

  .logo{
    font-size: clamp(22px, 4.5vw, 34px);
    line-height: 1.1;
  }

  .nav-toggle{
    display: inline-block;
    flex: 0 0 auto;
  }

  .gnav{
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    z-index: 1100;
    padding: 20px 0 24px;
  }

  .gnav.is-open{
    display: block;
  }

  .gnav-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .gnav-item{
    width: min(420px, 88%);
    list-style: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .gnav-item:last-child{
    border-bottom: none;
  }

  .gnav-link{
    display: block;
    width: 100%;
    padding: 16px 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
  }

  .gnav-link::after,
  .gnav-link.is-active::after,
  .gnav-link:hover::after{
    display: none;
  }
}

/* =========================================
   Footer Contact Button Color Tuning
========================================= */

.footer-iconbtn--contact{
  background: #ffffff;
  color: #2f3134;
  border: 1px solid rgba(47,49,52,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

.footer-iconbtn--contact:hover{
  background: #f5f5f5;
  color: #2f3134;
  transform: translateY(-2px);
}

/* footer shop info */

.footer-info{
  margin-bottom:28px;
  text-align:center;
}

.footer-shop{
  font-size:18px;
  font-weight:700;
  letter-spacing:.05em;
  margin-bottom:8px;
}

.footer-address{
  font-size:14px;
  line-height:1.8;
  color:#666;
  margin-bottom:6px;
}

.footer-hours{
  font-size:14px;
  line-height:1.8;
  color:#666;
  text-align:center;
}

.footer-info{
  text-align: center;
  margin-bottom: 24px;
}

.footer-shop,
.footer-hours,
.footer-closed{
  margin: 0;
  text-align: center;
}

.footer-shop{
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2f3134;
}

.footer-hours,
.footer-closed{
  font-size: 14px;
  line-height: 1.9;
  color: #6b7280;
}