/*Theme Name: GeneratePress Child
Template: generatepress
*/

/* ==============================
   リセット・カラー変数
   ============================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage: #9ea897;
  --sage-light: #c8cdc2;
  --sage-pale: #e8ebe4;
  --mist: #b8b9b0;
  --stone: #8a8880;
  --warm-white: #f5f3ef;
  --ivory: #eeebe5;
  --charcoal: #3d3c39;
  --mid: #6b6a66;
  --soft: #9b9994;
  --font-en: 'Cormorant Garamond', Georgia, serif;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;
}

<a href="#" class="fixed-btn">予約する</a>

body {
  font-family: var(--font-jp);
  background: var(--warm-white);
  color: var(--charcoal);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}


/* ==============================
   ファーストビュー
   ============================== */
.fv {
  position: relative;
  height: 100svh;
  min-height: 560px;
  background: linear-gradient(160deg, #d6d8d0 0%, #c2c4bb 40%, #b0b2a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fv::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,255,250,0.18) 0%, transparent 70%);
}

 .fv-noise {
  position: absolute; inset: 0; opacity: .30;
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/fv１-e1776218573172.jpeg");
  background-size: 1150px;
}


.fv-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.fv-en {
  font-family: var(--font-en);
  font-weight: 300; font-style: italic;
  font-size: 11px; letter-spacing: .25em;
  color: rgba(255,255,255,0.7);
  display: block; margin-bottom: 1rem;
}

.fv-catch {
  font-family: var(--font-jp);
  font-weight: 300;
  font-size: 32px; line-height: 1.6;
  color: #fff; letter-spacing: .12em;
  margin-bottom: 1.4rem;
}

.fv-sub {
  font-size: 13px; letter-spacing: .14em; line-height: 2;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.4rem;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff; background: transparent;
  font-family: var(--font-jp); font-weight: 300;
  font-size: 13px; letter-spacing: .2em;
  cursor: pointer; transition: all .3s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover,
.btn-primary:active { background: rgba(255,255,255,0.15); }

.fv-scroll {
  position: absolute; bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en); font-size: 10px; letter-spacing: .2em;
  color: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.fv-scroll::after {
  content: ''; display: block; width: 1px; height: 32px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine { 0%,100%{opacity:.3} 50%{opacity:.9} }


/* ==============================
   セクション共通スタイル
   ============================== */

section { padding: 64px 20px; }

.inner { max-width: 960px; margin: 0 auto; }

.sec-label {
  font-family: var(--font-en); font-weight: 300; font-style: italic;
  font-size: 11px; letter-spacing: .28em; color: var(--soft);
  display: block; margin-bottom: .6rem;
}

.sec-title {
  font-weight: 300; font-size: 22px;
  letter-spacing: .14em; line-height: 1.6;
  color: var(--charcoal); margin-bottom: 2.4rem;
}


/* ==============================
   コンセプト
   ============================== */

.concept { background: var(--ivory); }

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.concept-img {
  width: 100%;
  max-width: 500px; /* ←ここでデカさ制御 */
  aspect-ratio: 4/3;

  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/clean_image_tight-1.png");
  background-size: cover;      /* ←重要：はみ出しながら綺麗にトリミング */
  background-position: center; /* ←中央寄せ */
  background-repeat: no-repeat;
border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.concept-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,250,0.2) 0%, transparent 60%);
}

.concept-text p {
  font-size: 14px; line-height: 2.2; letter-spacing: .06em;
  color: var(--mid); margin-bottom: 1.2rem;
}

.concept-quote {
  font-family: var(--font-en); font-weight: 300; font-style: italic;
  font-size: 18px; letter-spacing: .05em;
  color: var(--charcoal); line-height: 1.7;
  border-left: 1px solid var(--sage);
  padding-left: 1.2rem; margin: 1.6rem 0;
}


/* ==============================
   選ばれる理由
   ============================== */

.features { background: var(--warm-white); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feat-card {
  padding: 1.4rem 1rem;
  border: 1px solid var(--sage-pale);
  background: var(--ivory);
  text-align: center;
}

.feat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%; border: 1px solid var(--sage-light);
  display: flex; align-items: center; justify-content: center;
}

.feat-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 1.2; }

.feat-card h3 {
  font-weight: 400; font-size: 13px; letter-spacing: .1em;
  color: var(--charcoal); margin-bottom: .5rem;
}

.feat-card p { font-size: 12px; color: var(--soft); line-height: 1.9; letter-spacing: .04em; }


/* ==============================
   メニュー・料金
   ============================== */

.menu-sec { background: var(--ivory); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--sage-pale);
}

.menu-item {
  background: var(--warm-white); padding: 1.4rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}

.menu-name { font-size: 14px; letter-spacing: .08em; color: var(--charcoal); }

.menu-sub { font-size: 11px; color: var(--soft); margin-top: 3px; letter-spacing: .06em; }

.menu-price {
  font-family: var(--font-en); font-weight: 300;
  font-size: 17px; color: var(--stone); letter-spacing: .04em; white-space: nowrap;
  margin-left: 12px;
}

.menu-note {
  margin-top: 1rem; font-size: 11px; color: var(--soft); letter-spacing: .06em; line-height: 2;
}


/* ==============================
   スタイルギャラリー
   ============================== */

.gallery-sec { background: var(--warm-white); padding-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 160px 160px;
  gap: 4px;
}

.g-item { overflow: hidden; }

.g-item:first-child { grid-row: 1 / 3; }

.g-inner {
  width: 100%; height: 100%;
  background: var(--sage-light);
  transition: transform .6s ease;
  position: relative;
}

.g-item:nth-child(1) .g-inner { background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/model２.jpeg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
 .g-item:nth-child(2) .g-inner { background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/g５-e1776234005148.jpeg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  
.g-item:nth-child(3) .g-inner { background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/g３-e1776232538433.jpeg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.g-item:nth-child(4) .g-inner { background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/g４-e1776233198312.jpeg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.g-item:nth-child(5) .g-inner { background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/g４-1-e1776234390116.jpeg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position: center;}
 
.g-item:active .g-inner { transform: scale(1.04); }

.g-inner::after {
  content: ''; position: absolute; bottom: 10px; right: 12px;
  font-family: var(--font-en); font-size: 10px; letter-spacing: .2em; font-style: italic;
  color: rgba(255,255,255,0.5);
}


/* ==============================
   お客様の声
   ============================== */

.voice-sec { background: var(--ivory); }

.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.voice-card {
  padding: 1.4rem;
  background: var(--warm-white);
  border-top: 1px solid var(--sage-light);
}

.voice-stars { color: var(--sage); font-size: 12px; letter-spacing: .2em; margin-bottom: .8rem; }

.voice-text { font-size: 13px; line-height: 2.1; color: var(--mid); letter-spacing: .05em; margin-bottom: 1rem; }

.voice-name { font-family: var(--font-en); font-style: italic; font-size: 12px; color: var(--soft); letter-spacing: .14em; }


/* ==============================
   サロン紹介・アクセス
   ============================== */

.access-sec { background: var(--warm-white); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.access-img {
  aspect-ratio: 4/3;
background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/04/mise.jpeg");
background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px; position: relative;
}

.access-img::after {
  content: 'interior'; position: absolute; bottom: 10px; right: 12px;
  font-family: var(--font-en); font-size: 10px; letter-spacing: .2em; font-style: italic;
  color: rgba(255,255,255,0.4);
}

.access-info { display: flex; flex-direction: column; gap: 1.4rem; }

.access-row { display: flex; gap: 1.2rem; }

.access-label {
  font-size: 11px; letter-spacing: .12em; color: var(--soft);
  min-width: 56px; padding-top: 2px; flex-shrink: 0;
}

.access-val { font-size: 13px; line-height: 1.9; letter-spacing: .06em; color: var(--mid); }

.map-placeholder {
  width: 100%; height: 200px;
  background: var(--sage-pale);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em; font-style: italic;
  color: var(--soft);
  border: 1px solid var(--sage-pale);
}
 

/* ==============================
   予約CTA
   ============================== */

.cta-sec {
  background: linear-gradient(150deg, #9ea897 0%, #8a8d84 100%);
  text-align: center; padding: 72px 24px;
}

.cta-sec .sec-label { color: rgba(255,255,255,0.5); }

.cta-sec .sec-title { color: #fff; margin-bottom: 1rem; }

.cta-sub {
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: .1em; margin-bottom: 2.4rem; line-height: 2;
}


/* ==============================
   フッター
   ============================== */

footer {
  background: var(--charcoal);
  padding: 2.4rem 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-en); font-weight: 300; font-style: italic;
  font-size: 20px; letter-spacing: .2em; color: var(--mist); margin-bottom: 1rem;
}

.footer-sns {
  display: flex; gap: 1.2rem; justify-content: center; margin-bottom: 1.4rem;
}

.footer-sns a {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .2em;
  color: var(--soft); text-decoration: none; transition: color .2s;
}

.footer-sns a:hover { color: var(--mist); }

.footer-copy { font-size: 10px; color: var(--stone); letter-spacing: .14em; }

/* ==============================
   WordPress固定ページタイトル非表示
   ============================== */
.page-item-15 {
  display: none;
}

/* ==============================
   人気スタイリスト
   ============================== */
 
.stylist-sec { background: var(--ivory); }
 
.stylist-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
}
 
.stylist-card {
  background: var(--warm-white);
  border: 1px solid var(--sage-pale);
  overflow: hidden;
}
 
.stylist-profile {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.6rem;
}
 
.stylist-photo {
  width: 100%;
  aspect-ratio: 4/3;
   background-image: url("");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
 
 /* 個別画像 */
.stylist-1 .stylist-photo {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/s２.2.jpeg");
}

.stylist-2 .stylist-photo {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/st２.jpeg");
}
 
.stylist-role {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--sage);
  margin-bottom: .3rem;
}
 
.stylist-name {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .12em;
  color: var(--charcoal);
  margin-bottom: .2rem;
}
 
.stylist-kana {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--soft);
  margin-bottom: 1rem;
}
 
.stylist-comment {
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: .06em;
  color: var(--mid);
  margin-bottom: 1rem;
}
 
 
.stylist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6em;
  list-style: none;
  padding: 0;
  margin-left: -6px;
}

.stylist-tags li {
  font-size: 9px;
  border: 1px solid var(--sage-light);
  padding: 1px 7px;
  display: inline-block;
}  
 
.stylist-styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
}

.stylist-style-item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #c2c5bc, #b0b2aa);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-column: auto;
}
/* ========================================
スタイリスト下 3枚画像
======================================== */

/* 横並び */
.stylist-styles {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* 1枚ずつ */
.stylist-style-item {
  flex: 1;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== 左のスタイリスト ===== */
.stylist-1 .stylist-style-item:nth-child(1) {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/sk.jpeg");
}
.stylist-1 .stylist-style-item:nth-child(2) {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/k１.jpeg");
}
.stylist-1 .stylist-style-item:nth-child(3) {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/k３.jpeg");
}

/* ===== 右のスタイリスト ===== */
.stylist-2 .stylist-style-item:nth-child(1) {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/k２.jpeg");
}
.stylist-2 .stylist-style-item:nth-child(2) {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/sk３.jpeg");
}
.stylist-2 .stylist-style-item:nth-child(3) {
  background-image: url("http://lp.natural.chimacha-ubiviss2.com/wp-content/uploads/2026/05/sk４.jpeg");
}

/* ========================================
スタイリスト：カード幅固定
======================================== */
.stylist-card {
  width: 50%;
}

/* ========================================
スタイリスト：スタイル画像 比率固定
======================================== */
.stylist-styles img {
  width: 100%;
  aspect-ratio: 1 / 1; /* ←これが超重要 */
  object-fit: cover;
}

/* ========================================
スタイル画像：3カラム固定
======================================== */
.stylist-styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* ==============================
   スタイリスト タブレット・PC
   ============================== */

@media (min-width: 768px) {

   .stylist-profile {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .stylist-photo {
    width: 140px;
    min-width: 140px;
    aspect-ratio: 3/4;
  }

}
/* ==============================
   スマホ画像位置調整
   ============================== */

@media (max-width: 767px) {

  .fv-noise {
    background-position: 23% 20%;   }

  .concept-img {
    background-position: 50% 60%;
  }

  .g-item:nth-child(1) .g-inner {
    background-position: 55% 20%;
  }

  .g-item:nth-child(2) .g-inner {
    background-position: top center;
  }

  .g-item:nth-child(3) .g-inner {
    background-position: top center;
  }

  .g-item:nth-child(4) .g-inner {
    background-position: top center;
  }

  .g-item:nth-child(5) .g-inner {
    background-position: top center;
  }

  .access-img {
    background-position: top center;
  }
.stylist-grid {
    flex-direction: column !important;
  }

  .stylist-card {
    width: 100% !important;
  }

  .stylist-photo {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
  }

  .stylist-profile {
    flex-direction: column !important;
  }

}
/* ===== 固定バー（ボタン一体型） ===== */
a.fixed-btn {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  width: 92%;
  max-width: 420px;

  padding: 14px;
  border-radius: 12px;

  /* 見た目 */
  background: linear-gradient(135deg, #c49a6c, #b68a5a);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  text-decoration: none !important;

  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

/* ホバー */
a.fixed-btn:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* クリック */
a.fixed-btn:active {
  transform: translateX(-50%) scale(0.97);
}
/* ===== 文字色修正（これで確実に白） ===== */
a.fixed-btn,
a.fixed-btn:link,
a.fixed-btn:visited,
a.fixed-btn:hover,
a.fixed-btn:active {
  color: #fff !important;
  text-decoration: none !important;
}

* ========================================
スタイリスト下画像 スライド（スマホのみ）
======================================== */

/* PCは今まで通り */
.stylist-styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* スマホだけスライド */
@media (max-width: 768px) {
  .stylist-styles {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .stylist-style-item {
    flex: 0 0 70%;
  }
}

/* スクロールバー消す（任意） */
.stylist-styles::-webkit-scrollbar {
  display: none;
}
/* ==============================
   タブレット・PC（768px以上）
   ============================== */

@media (min-width: 768px) {

  section { padding: 96px 32px; }

  .sec-title { font-size: 28px; }

  .fv-catch { font-size: 48px; }

  .fv-dec {
    right: 8%; width: 280px; height: 380px;
    border-radius: 140px 140px 0 0;
  }

  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .concept-img { aspect-ratio: 3/4; }

  .concept-quote { font-size: 22px; }

  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }

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

  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
  }

  .g-item:first-child { grid-row: 1 / 3; }

  .g-item:hover .g-inner { transform: scale(1.04); }
  .g-item:active .g-inner { transform: none; }

  .voice-grid { grid-template-columns: repeat(3, 1fr); }

  .access-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
