/*
Theme Name: Pometanian
Theme URI: https://pometanian.com
Author: ポメ谷あん
Author URI: https://pometanian.com
Description: pometanian.com 公式テーマ
Version: 1.0.0
License: Private
Text Domain: pometanian
*/

/* ============================================
   DESIGN TOKENS
   カスタマイザーで上書きされる変数はfunctions.phpで動的に出力されます
   ============================================ */
:root {
  --cafe:   #C8A882;
  --cream:  #F5EFE6;
  --dark:   #3C2415;
  --mid:    #7A4E2D;
  --light:  #E8D5BC;
  --blue:   #3A5BA0;
  --lilac:  #B89CC8;
  --orange: #E8722A;
  --white:  #FDFAF6;

  --font-serif:   'Noto Serif JP', serif;
  --font-display: 'Cormorant Garamond', serif;

  --nav-h:    60px;
  --footer-h: 52px;
  --max-w:    1080px;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  font-family: var(--font-serif);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ============================================
   HEADER NAV
   ▼ カスタマイザーで背景画像を設定できます（functions.php参照）
   ▼ 手動で差し替える場合：background-image: url('画像URL');
   ============================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background-color: rgba(245,239,230,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,130,.4);
  z-index: 200;
  display: flex; align-items: center;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  color: var(--dark); cursor: pointer; line-height: 1.1;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text small {
  display: block; font-style: normal; font-size: 9px;
  letter-spacing: .16em; color: var(--cafe); font-family: var(--font-serif);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--footer-h);
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 0 40px;
}
.footer-nav { display: flex; gap: 32px; list-style: none; align-items: center; }
.footer-nav a {
  font-size: 10px; letter-spacing: .18em; color: var(--cafe);
  opacity: .65; cursor: pointer; transition: opacity .2s;
}
.footer-nav a:hover { opacity: 1; }
.footer-copy {
  position: absolute; right: 40px;
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .15em; color: var(--cafe); opacity: .35;
}

/* mobile bottom nav */


#mob-footer {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--footer-h);
  background: var(--dark);
  align-items: center; justify-content: space-around;
  z-index: 1000;
  border-top: 1px solid rgba(200,168,130,.2);
  /* スワイプで浮かないよう transform を使わない */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 4px 10px; cursor: pointer; opacity: .55; transition: opacity .2s;
}
.mob-nav-item.on { opacity: 1; }
.mob-nav-icon { line-height: 1; color: var(--cafe); }
.mob-nav-lbl { font-size: 7px; letter-spacing: .1em; color: var(--cafe); }

/* ============================================
   PAGE LAYOUT
   ============================================ */
.site-main {
  padding-top: var(--nav-h);
  padding-bottom: calc(var(--footer-h) + 40px);
  min-height: 100vh;
}
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.page-section { padding: 56px 0; }

/* ============================================
   AGE MODAL
   ============================================ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(60,36,21,.72); backdrop-filter: blur(5px);
  z-index: 600; display: none; align-items: center; justify-content: center;
}
.overlay.open { display: flex; }
.modal {
  background: var(--white); border: 1px solid var(--cafe);
  border-radius: var(--r-lg); padding: 44px 36px;
  max-width: 380px; width: 90%; text-align: center;
}
.modal-num { font-family: var(--font-display); font-size: 44px; color: var(--cafe); font-style: italic; font-weight: 300; margin-bottom: 14px; }
.modal-ttl { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.modal-txt { font-size: 13px; line-height: 1.8; color: var(--mid); margin-bottom: 28px; font-weight: 300; }
.modal-btns { display: flex; gap: 10px; justify-content: center; }
.btn-y { background: var(--dark); color: var(--cream); padding: 11px 28px; border-radius: var(--r-sm); font-size: 12px; letter-spacing: .12em; font-family: var(--font-serif); cursor: pointer; transition: background .2s; border: none; }
.btn-y:hover { background: var(--mid); }
.btn-n { background: transparent; color: var(--mid); padding: 11px 28px; border-radius: var(--r-sm); font-size: 12px; letter-spacing: .12em; font-family: var(--font-serif); cursor: pointer; border: 1px solid var(--light); transition: border-color .2s; }
.btn-n:hover { border-color: var(--cafe); }

/* ============================================
   SHARED COMPONENTS
   ============================================ */
.eyebrow { font-size: 10px; letter-spacing: .3em; color: var(--cafe); margin-bottom: 10px; }
.pg-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300; color: var(--dark);
  margin-bottom: 36px; line-height: 1.15;
}
.accent-bar {
  height: 2px; width: 56px; border-radius: 1px;
  background: linear-gradient(90deg, var(--blue), var(--lilac), var(--orange));
  margin-bottom: 36px;
}
.cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .2em; color: var(--dark);
  border-bottom: 1px solid var(--cafe); padding-bottom: 5px;
  transition: gap .2s; cursor: pointer;
}
.cta-link:hover { gap: 18px; }
.tag { font-size: 10px; letter-spacing: .1em; border: 1px solid var(--cafe); color: var(--mid); padding: 3px 11px; border-radius: 20px; }
.tag.blue  { border-color: var(--blue);   color: var(--blue);   }
.tag.lilac { border-color: var(--lilac);  color: var(--lilac);  }
.tag.orange{ border-color: var(--orange); color: var(--orange); }
.r18-badge { font-size: 8px; letter-spacing: .1em; background: var(--blue); color: var(--white); padding: 2px 6px; border-radius: 2px; position: absolute; top: 8px; left: 8px; }

/* R18 toggle */
.toggle-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.toggle-lbl { font-size: 10px; letter-spacing: .12em; color: var(--mid); }
.toggle-row { display: flex; align-items: center; gap: 8px; }
.toggle-txt { font-size: 10px; letter-spacing: .08em; color: var(--mid); }
.toggle { position: relative; width: 42px; height: 22px; }
.toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.track { position: absolute; inset: 0; background: var(--light); border-radius: 11px; cursor: pointer; transition: background .3s; border: 1px solid var(--cafe); }
.toggle input:checked + .track { background: var(--blue); border-color: var(--blue); }
.track::after { content: ''; position: absolute; width: 16px; height: 16px; background: var(--white); border-radius: 50%; top: 2px; left: 2px; transition: transform .3s; }
.toggle input:checked + .track::after { transform: translateX(20px); }

/* SNS pills */
.sns-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sns-pill { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .08em; color: var(--mid); padding: 6px 13px; border: 1px solid var(--light); border-radius: 20px; transition: all .2s; }
.sns-pill:hover { border-color: var(--cafe); color: var(--dark); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cafe); flex-shrink: 0; }

/* ============================================
   HOME — HERO SLIDER
   ============================================ */
.hero-slider {
  width: 100%;
  height: calc(100vh - var(--nav-h) - var(--footer-h));
  min-height: 400px;
  position: relative;
  background: var(--light);
  overflow: hidden;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.on { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; height: 100%; width: 100%; color: var(--cafe);
}
.slide-num { font-family: var(--font-display); font-size: clamp(60px,10vw,120px); font-weight: 300; opacity: .1; line-height: 1; }
.slide-lbl { font-size: 11px; letter-spacing: .25em; opacity: .35; }
.slide:nth-child(1) .slide-ph { border-left: 3px solid var(--blue); }
.slide:nth-child(2) .slide-ph { border-left: 3px solid var(--lilac); }
.slide:nth-child(3) .slide-ph { border-left: 3px solid var(--orange); }

.slider-controls { position: absolute; bottom: 20px; right: 20px; display: flex; align-items: center; gap: 12px; }
.s-arrow { width: 32px; height: 32px; border-radius: 50%; background: rgba(245,239,230,.6); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--dark); cursor: pointer; border: none; transition: background .2s; }
.s-arrow:hover { background: rgba(245,239,230,.92); }
.s-dots { display: flex; gap: 6px; align-items: center; }
.s-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cream); opacity: .4; cursor: pointer; transition: opacity .2s, transform .2s; }
.s-dot.on { opacity: 1; transform: scale(1.35); }

/* HOME — UPDATES */
.updates-strip { background: var(--white); border-bottom: 1px solid var(--light); }
.updates-inner { max-width: var(--max-w); margin: 0 auto; padding: 16px 40px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 20px; }
.updates-lbl { font-size: 9px; letter-spacing: .25em; color: var(--cafe); padding-top: 2px; white-space: nowrap; }
.updates-list { display: flex; flex-direction: column; gap: 5px; }
.u-item { display: flex; gap: 12px; align-items: baseline; }
.u-date { font-size: 11px; color: var(--cafe); font-family: var(--font-display); white-space: nowrap; min-width: 68px; }
.u-text { font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.4; }
.u-tag { display: inline-block; font-size: 8px; letter-spacing: .1em; padding: 1px 5px; border-radius: 2px; margin-right: 4px; background: var(--light); color: var(--mid); }
.u-tag.s { background: rgba(58,91,160,.1);  color: var(--blue);   }
.u-tag.g { background: rgba(184,156,200,.18); color: var(--lilac); }
.u-tag.i { background: rgba(232,114,42,.1); color: var(--orange); }

/* HOME — GALLERY SECTION */
.home-gallery-section { padding: 60px 0 0; }
.section-header { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; columns: 3; column-gap: 18px; }
.g-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-md); overflow: hidden; background: var(--light); position: relative; cursor: pointer; border: 1px solid transparent; transition: border-color .2s, transform .2s; }
.g-item:hover { border-color: var(--cafe); transform: translateY(-2px); }
.g-item.r18 { display: none; }
.g-item.r18.show { display: block; }
.g-thumb { display: flex; align-items: center; justify-content: center; color: var(--cafe); font-family: var(--font-display); font-size: 36px; font-weight: 300; opacity: .35; background: var(--light); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g-info { padding: 10px 14px; background: var(--white); }
.g-title { font-size: 12px; color: var(--dark); margin-bottom: 3px; letter-spacing: .04em; }
.g-tag-txt { font-size: 10px; letter-spacing: .1em; color: var(--cafe); }
.g-cta { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; background: var(--light); font-size: 10px; letter-spacing: .1em; color: var(--mid); }
.g-cta span:last-child { color: var(--blue); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-wrap { max-width: var(--max-w); margin: 0 auto; padding: 56px 40px; }
.about-grid { display: grid; grid-template-columns: 240px 1fr; gap: 52px; align-items: start; margin-bottom: 44px; }
.about-avatar { aspect-ratio: 3/4; background: var(--light); border-radius: var(--r-lg); border: 1px solid var(--cafe); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--cafe); overflow: hidden; }
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-ph { font-family: var(--font-display); font-size: 64px; font-weight: 300; opacity: .18; }
.avatar-lbl { font-size: 9px; letter-spacing: .15em; opacity: .35; }
.about-name { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--dark); margin-bottom: 3px; }
.about-name-en { font-size: 10px; letter-spacing: .2em; color: var(--cafe); margin-bottom: 18px; }
.about-txt { font-size: 14px; line-height: 2.2; color: var(--mid); font-weight: 300; margin-bottom: 16px; }
.char-box { background: var(--white); border: 1px solid var(--light); border-left: 3px solid var(--lilac); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 24px; }
.char-box-ttl { font-size: 9px; letter-spacing: .2em; color: var(--cafe); margin-bottom: 10px; }
.char-item { display: flex; gap: 10px; font-size: 12px; line-height: 1.8; color: var(--mid); font-weight: 300; }
.char-item::before { content: '—'; color: var(--lilac); flex-shrink: 0; }
.sns-section { margin-bottom: 24px; }
.sns-section-lbl { font-size: 9px; letter-spacing: .2em; color: var(--cafe); margin-bottom: 10px; }
.gossip-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .12em; color: var(--cafe); border-bottom: 1px dashed var(--cafe); padding-bottom: 3px; cursor: pointer; background: none; transition: color .2s; }
.gossip-btn:hover { color: var(--dark); }
.gossip-btn svg { transition: transform .3s; }
.gossip-btn.open svg { transform: rotate(180deg); }
.gossip-box { display: none; margin-top: 24px; background: var(--white); border: 1px solid var(--light); border-top: 2px solid var(--orange); border-radius: var(--r-md); padding: 26px 28px; }
.gossip-box.open { display: block; }
.gossip-h { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--dark); margin-bottom: 18px; line-height: 1.4; }
.g-qa { border-bottom: 1px solid var(--light); padding: 12px 0; }
.g-qa:last-child { border-bottom: none; }
.g-q { font-size: 13px; font-weight: 500; color: var(--cafe); margin-bottom: 5px; }
.g-a { font-size: 13px; line-height: 1.9; color: var(--mid); font-weight: 300; }
.about-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--light); display: flex; align-items: center; justify-content: space-between; }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-wrap { max-width: var(--max-w); margin: 0 auto; padding: 56px 40px; }
.shop-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.shelf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px,1fr)); gap: 24px; }
.book-card { cursor: pointer; transition: transform .2s; }
.book-card:hover { transform: translateY(-5px); }
.book-cover { aspect-ratio: 3/4; background: var(--light); border-radius: var(--r-md); border: 1px solid var(--cafe); margin-bottom: 10px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: 3px 3px 10px rgba(60,36,21,.1); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover-ph { font-family: var(--font-display); font-size: 44px; font-weight: 300; color: var(--cafe); opacity: .28; }
.book-card.r18 { display: none; }
.book-card.r18.show { display: block; }
.book-ttl { font-size: 13px; color: var(--dark); margin-bottom: 3px; letter-spacing: .04em; }
.book-sub { font-size: 11px; color: var(--cafe); letter-spacing: .07em; }

/* ============================================
   BOOK DETAIL PAGE
   ============================================ */
.detail-wrap { max-width: var(--max-w); margin: 0 auto; padding: 56px 40px; }
.back-link { font-size: 11px; letter-spacing: .13em; color: var(--cafe); cursor: pointer; margin-bottom: 18px; display: inline-block; transition: color .2s; }
.back-link:hover { color: var(--dark); }
.detail-grid { display: grid; grid-template-columns: 240px 1fr; gap: 44px; margin-bottom: 44px; align-items: start; }
.detail-cover { aspect-ratio: 3/4; background: var(--light); border-radius: var(--r-lg); border: 1px solid var(--cafe); display: flex; align-items: center; justify-content: center; box-shadow: 5px 5px 18px rgba(60,36,21,.13); overflow: hidden; }
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-ttl { font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--dark); margin-bottom: 6px; }
.detail-meta { font-size: 12px; color: var(--cafe); letter-spacing: .09em; margin-bottom: 18px; }
.detail-desc { font-size: 14px; line-height: 2; color: var(--mid); font-weight: 300; margin-bottom: 24px; }
.buy-btns { display: flex; flex-direction: column; gap: 9px; }
.buy-btn { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; background: var(--dark); color: var(--cream); border-radius: var(--r-sm); font-size: 12px; letter-spacing: .13em; transition: background .2s; cursor: pointer; border: none; font-family: var(--font-serif); text-decoration: none; }
.buy-btn:hover { background: var(--mid); }

/* viewer */
.viewer { background: var(--white); border: 1px solid var(--light); border-radius: var(--r-md); overflow: hidden; margin-bottom: 36px; }
.viewer-hd { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; border-bottom: 1px solid var(--light); background: var(--cream); }
.viewer-hd-lbl { font-size: 9px; letter-spacing: .2em; color: var(--cafe); }
.viewer-hd-cnt { font-size: 11px; color: var(--mid); font-family: var(--font-display); }
.viewer-stage { background: var(--dark); display: flex; align-items: center; justify-content: center; position: relative; height: 460px; }
.v-page { display: none; width: 100%; height: 100%; align-items: center; justify-content: center; }
.v-page.on { display: flex; }
.v-page img { max-height: 100%; max-width: 100%; object-fit: contain; }
.v-ph { font-family: var(--font-display); font-size: 72px; color: var(--cafe); opacity: .1; font-weight: 300; }
.v-last { flex-direction: column; gap: 18px; padding: 40px; text-align: center; }
.v-last-t { font-family: var(--font-display); font-size: 18px; color: var(--cafe); font-style: italic; }
.v-last-s { font-size: 11px; letter-spacing: .13em; color: var(--cream); opacity: .45; }
.v-buy-btn { background: var(--cafe); color: var(--dark); padding: 12px 28px; border-radius: var(--r-sm); font-size: 11px; letter-spacing: .13em; font-family: var(--font-serif); cursor: pointer; border: none; transition: background .2s; }
.v-buy-btn:hover { background: var(--cream); }
.viewer-ctrl { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 12px; border-top: 1px solid var(--light); background: var(--cream); }
.v-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--light); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 15px; color: var(--mid); transition: border-color .2s, background .2s; }
.v-btn:hover { border-color: var(--cafe); background: var(--light); }
.v-btn:disabled { opacity: .28; cursor: default; }
.v-num { font-family: var(--font-display); font-size: 13px; color: var(--mid); min-width: 54px; text-align: center; }
.more-works { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--light); }
.more-ttl { font-size: 9px; letter-spacing: .2em; color: var(--cafe); margin-bottom: 16px; }
.more-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrap { max-width: var(--max-w); margin: 0 auto; padding: 56px 40px; }
.contact-intro { font-size: 14px; line-height: 2.2; color: var(--mid); font-weight: 300; margin-bottom: 10px; }
.contact-notice { font-size: 12px; line-height: 1.9; color: var(--mid); font-weight: 300; padding: 12px 16px; background: var(--white); border-left: 3px solid var(--orange); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin-bottom: 36px; }
.price-box { background: var(--white); border: 1px solid var(--light); border-radius: var(--r-md); padding: 22px 26px; margin-bottom: 32px; }
.price-ttl { font-size: 9px; letter-spacing: .22em; color: var(--cafe); margin-bottom: 14px; }
.price-cat { margin-bottom: 16px; }
.price-cat-name { font-size: 11px; letter-spacing: .13em; color: var(--dark); font-weight: 500; margin-bottom: 7px; border-left: 2px solid var(--blue); padding-left: 9px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--mid); font-weight: 300; padding: 4px 0 4px 11px; border-bottom: 1px solid var(--light); }
.price-row:last-child { border-bottom: none; }
.price-amt { color: var(--dark); font-weight: 400; white-space: nowrap; margin-left: 16px; }
.price-note { font-size: 11px; color: var(--mid); font-weight: 300; line-height: 1.9; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--light); }
.price-note strong { color: var(--dark); font-weight: 500; }

/* FAQ */
.faq-sec { margin-bottom: 36px; }
.faq-ttl { font-size: 9px; letter-spacing: .22em; color: var(--cafe); margin-bottom: 14px; }
.faq-item { border-bottom: 1px solid var(--light); }
/* buttonタグを完全リセット（WordPressやCF7のCSSに上書きされないよう!importantで指定） */
.faq-q {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 13px 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  color: var(--dark) !important;
  letter-spacing: .03em !important;
  text-align: left !important;
  gap: 14px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.faq-icon {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  border: 1px solid var(--cafe) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  color: var(--cafe) !important;
  flex-shrink: 0 !important;
  transition: transform .3s !important;
  background: none !important;
  line-height: 1 !important;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; font-size: 13px; line-height: 1.9; color: var(--mid); font-weight: 300; padding-bottom: 13px; }
.faq-item.open .faq-a { display: block; }

/* フォームセクション */
.contact-form-section { margin-top: 8px; }
.contact-form-ttl {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: .05em;
}

/* ============================================
   CONTACT FORM 7 CSS上書き
   CF7のデフォルトスタイルをテーマに合わせる
   ============================================ */
.wpcf7-form p { margin: 0; }
.wpcf7-form .f-group { margin-bottom: 20px; }

/* テキスト・メール・URL・電話番号 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-sm);
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--dark);
  font-weight: 300;
  transition: border-color .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  margin: 0;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--cafe);
}
.wpcf7-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.8;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  background: var(--dark);
  color: var(--cream);
  padding: 14px 44px;
  border-radius: var(--r-sm);
  font-size: 11px;
  letter-spacing: .2em;
  font-family: var(--font-serif);
  cursor: pointer;
  border: none;
  transition: background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--mid); }

/* バリデーションメッセージ */
.wpcf7-not-valid-tip {
  font-size: 11px;
  color: var(--orange);
  margin-top: 4px;
  display: block;
}
.wpcf7-response-output {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-top: 16px;
  border: none !important;
}
.wpcf7-mail-sent-ok { background: rgba(58,91,160,.1); color: var(--blue); }
.wpcf7-mail-sent-ng,
.wpcf7-aborted { background: rgba(232,114,42,.1); color: var(--orange); }
.wpcf7-spam-blocked { background: rgba(184,156,200,.2); color: #7a5e8a; }

/* ラベル */
.wpcf7-form label {
  display: block;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--cafe);
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-weight: 400;
}

/* CF7未設定時のお知らせ */
.pome-cf7-notice {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.8;
  padding: 16px;
  background: var(--white);
  border: 1px dashed var(--light);
  border-radius: var(--r-sm);
}
.pome-cf7-notice a { color: var(--blue); text-decoration: underline; }

/* フォームセクション */
.contact-form-section { margin-top: 8px; }
.contact-form-ttl {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: .05em;
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.pp-date { font-size: 11px; color: var(--cafe); letter-spacing: .1em; margin-bottom: 36px; }
.pp-block { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--light); }
.pp-block:last-child { border-bottom: none; }
.pp-h { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--dark); margin-bottom: 12px; letter-spacing: .05em; }
.pp-txt { font-size: 13px; line-height: 2; color: var(--mid); font-weight: 300; margin-bottom: 10px; }
.pp-list { list-style: none; padding: 0; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.pp-list li { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7; padding-left: 16px; position: relative; }
.pp-list li::before { content: '—'; position: absolute; left: 0; color: var(--cafe); }
.pp-link { color: var(--blue); border-bottom: 1px solid var(--blue); cursor: pointer; transition: opacity .2s; }
.pp-link:hover { opacity: .7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-h: 52px; --footer-h: 56px; }
  #nav { padding: 0 16px; }
  #footer { display: none; }
  #mob-footer { display: flex; }

  .hero-slider { height: 56vw; min-height: 220px; }
  .slider-controls { bottom: 14px; right: 14px; gap: 8px; }
  .updates-inner { padding: 12px 18px; grid-template-columns: 1fr; gap: 8px; }
  .gallery-grid { padding: 0 18px; columns: 2; }
  .section-header { padding: 0 18px; }
  .home-gallery-section { padding-top: 36px; }
  .wrap { padding: 0 18px; }
  .about-wrap, .shop-wrap, .detail-wrap, .contact-wrap { padding: 36px 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-avatar { max-width: 180px; }
  .shelf-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-cover { max-width: 200px; }
  .viewer-stage { height: 300px; }
  .more-grid { grid-template-columns: repeat(2,1fr); }
}

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




.wpcf7 fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wpcf7 p {
  margin-bottom: 20px !important;
}

.wpcf7 label {
  margin-bottom: 0px !important;
  display: block !important;
}

.wpcf7 br {
  display: none !important;
}

.f-hint {
	display:none
}
