
:root{
  --bg:#f7f4ee;
  --surface:#ffffff;
  --surface-alt:#f1ece3;
  --text:#2b2621;
  --muted:#62564a;
  --line:#d7c9b6;
  --accent:#6f5639;
  --accent-2:#8c6b45;
  --shadow:0 10px 30px rgba(43,38,33,.08);
  --radius:18px;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Sans","Yu Gothic","Meiryo",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.8;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(calc(100% - 32px),var(--max));margin-inline:auto}
.narrow{width:min(calc(100% - 32px),760px);margin-inline:auto}
.section{padding:72px 0}
.section-tight{padding:32px 0}
.section-alt{background:var(--surface-alt)}
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(247,244,238,.95);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;min-height:72px}
.brand-name{font-weight:700;letter-spacing:.02em}
.desktop-nav{display:flex;gap:22px}
.nav-link{font-size:.95rem;color:var(--muted)}
.nav-link.is-current,.nav-link:hover{color:var(--text)}
.menu-toggle{display:none;border:none;background:none;font-size:1.4rem}
.mobile-nav{display:none;border-top:1px solid var(--line);padding:12px 16px;background:var(--bg)}
.mobile-nav.is-open{display:block}
.mobile-link{display:block;padding:10px 0;border-bottom:1px solid rgba(0,0,0,.05)}
.mobile-link:last-child{border-bottom:none}
.hero{
  position:relative;
  min-height:72svh;
  display:grid;
  align-items:center;
  background-size:cover;
  background-position:center;
  color:#fff;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(26,20,15,.45), rgba(26,20,15,.62));
}
.hero-content{position:relative;padding:88px 0 72px}
.hero-eyebrow{
  display:inline-block;
  padding:6px 12px;border:1px solid rgba(255,255,255,.35);
  border-radius:999px;font-size:.9rem;margin:0 0 14px
}
.hero h1{font-size:clamp(2rem,6vw,3.75rem);line-height:1.2;margin:0 0 14px}
.lead{max-width:760px;font-size:1.02rem}
.hero-buttons,.button-row,.section-buttons,.link-buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 18px;border-radius:999px;
  font-weight:700;border:1px solid transparent;transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--accent);color:#fff}
.btn-secondary{background:#fff;color:var(--text);border-color:#fff}
.btn-outline{background:transparent;border-color:var(--line);color:var(--text)}
.trust-grid{
  list-style:none;padding:0;margin:0;
  display:grid;grid-template-columns:repeat(5,1fr);gap:12px
}
.trust-grid li{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 14px;text-align:center;
  font-size:.93rem;box-shadow:var(--shadow)
}
h1,h2,h3,h4{line-height:1.35;margin:0 0 12px}
h2{font-size:clamp(1.5rem,3vw,2.15rem)}
h3{font-size:1.15rem}
p{margin:0 0 12px}
.section-head{max-width:820px;margin-bottom:28px}
.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card,.faq-item,.price-box{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;box-shadow:var(--shadow)
}
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:center}
.two-up{grid-template-columns:1fr 1fr}
.media-stack,.gallery-grid,.inline-gallery{display:grid;gap:14px}
.media-stack img,.gallery-grid img,.concept-map img{
  border-radius:var(--radius);box-shadow:var(--shadow)
}
.gallery-grid{grid-template-columns:repeat(3,1fr)}
.notice{
  border-left:4px solid var(--accent);
  background:var(--surface);padding:18px 18px 18px 20px;border-radius:12px;
  box-shadow:var(--shadow)
}
.concept-map{
  background:var(--surface);
  padding:18px;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);margin:22px 0
}
.faq-list{display:grid;gap:14px;margin:18px 0 24px}
.price-value{font-size:2rem;font-weight:800;color:var(--accent);line-height:1.2}
.price-label{font-weight:700;color:var(--muted);margin-bottom:8px}
.price-note{font-size:.95rem;color:var(--muted)}
.number-list,.check-list,.footer-list{padding-left:1.15rem}
.site-footer{
  background:#2f261d;color:#f8f3eb;margin-top:64px;padding:56px 0 96px
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:22px}
.footer-list{margin:0}
.footer-list li{margin:8px 0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:28px;padding-top:20px;text-align:center;color:#d8cfc3}
.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:110;
  display:grid;grid-template-columns:1fr 1fr 1fr;
  background:#fff;border-top:1px solid var(--line);box-shadow:0 -10px 25px rgba(0,0,0,.08)
}
.sticky-cta a{
  text-align:center;padding:13px 8px;font-weight:700;color:var(--accent)
}
.sticky-cta a + a{border-left:1px solid var(--line)}
.page-hero.simple{
  padding:72px 0 36px;background:linear-gradient(180deg,#f3ecdf 0%, transparent 100%)
}
.closing-message p{text-align:center;color:var(--muted)}
@media (max-width: 980px){
  .desktop-nav{display:none}
  .menu-toggle{display:block}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .split,.two-up,.footer-grid{grid-template-columns:1fr}
}
@media (max-width: 700px){
  body{font-size:15.5px}
  .section{padding:56px 0}
  .hero{min-height:62svh}
  .hero-content{padding:72px 0 52px}
  .hero-buttons,.button-row,.section-buttons,.link-buttons{display:grid;grid-template-columns:1fr}
  .btn{width:100%}
  .card-grid,.gallery-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr 1fr}
}


.rounded-image{border-radius:var(--radius);box-shadow:var(--shadow)}
.section-image-top{margin-top:18px}
.section-image-bottom{margin:18px 0 0}
.priest-photo{max-width:420px;width:100%;margin-top:18px}
.image-caption{font-size:.95rem;color:var(--muted);margin-top:10px}
.about-head{align-items:start;margin-bottom:12px}


/* Expansion: softer hero + serif headings */
h1,h2,h3,.brand-name{
  font-family:"Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
}
.hero-warm{
  margin:0 0 10px;
  font-size:clamp(1.25rem,3vw,2rem);
  font-weight:700;
  letter-spacing:.02em;
  text-shadow:0 4px 18px rgba(0,0,0,.35);
}
.hero h1{
  font-size:clamp(1.7rem,4.6vw,3.15rem);
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.brand-logo{
  height:34px;width:auto;display:block;
}
.desktop-nav{gap:16px;flex-wrap:wrap;justify-content:flex-end}
.policy-grid,.novel-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;
}
.cover-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;
}
.cover-grid.two{grid-template-columns:repeat(2,minmax(0,1fr));}
.cover-card,.policy-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:18px;box-shadow:var(--shadow);
}
.cover-card img,.policy-hero img{
  width:100%;height:auto;border-radius:14px;
}
.small-note{font-size:.92rem;color:var(--muted)}
.kicker{display:inline-block;margin-bottom:10px;padding:4px 10px;border-radius:999px;background:#efe7da;color:var(--accent);font-size:.88rem}
.feedback-form{display:grid;gap:14px}
.feedback-form label{display:grid;gap:8px;font-weight:700}
.feedback-form input,.feedback-form select,.feedback-form textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:12px;
  background:#fff;font:inherit;color:var(--text);
}
.feedback-form textarea{min-height:180px;resize:vertical}
.note-box{
  background:#fff;border-left:4px solid var(--accent);padding:16px 18px;border-radius:12px;
}
.page-links{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:20px;
}
.footer-project-links{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:10px;
}
.video-wrap{position:relative;padding-top:56.25%;overflow:hidden;border-radius:16px;box-shadow:var(--shadow)}
.video-wrap iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
@media (max-width: 960px){
  .desktop-nav{display:none}
  .menu-toggle{display:block}
}
@media (max-width: 768px){
  .policy-grid,.novel-grid,.cover-grid,.cover-grid.two{grid-template-columns:1fr}
  .brand-logo{height:28px}
  .hero-content{padding:72px 0 60px}
  .hero-warm{font-size:1.2rem}
}

.plain-list{margin:0;padding-left:1.2em}.plain-list li{margin:.45em 0}

.info-list{display:grid;gap:10px;margin:18px 0}
.info-list .item{background:#fff;border:1px solid var(--line);border-radius:14px;padding:14px 16px}
.price-columns{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.price-table{width:100%;border-collapse:collapse;background:#fff;border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
.price-table th,.price-table td{padding:12px 14px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.price-table th{background:#f1ece3;width:34%}
.price-table tr:last-child th,.price-table tr:last-child td{border-bottom:none}
.support-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:start}
.image-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.caption{margin-top:8px;font-size:.9rem;color:var(--muted)}
.quote-box{background:#fff;padding:18px 20px;border-radius:16px;border:1px solid var(--line);box-shadow:var(--shadow)}
.quote-box strong{display:block;margin-bottom:8px}
@media (max-width: 900px){
  .price-columns,.support-grid,.image-grid-2{grid-template-columns:1fr}
}


.site-footer .btn-outline{
  color:#f8f3eb;
  border-color:rgba(255,255,255,.35);
}
.site-footer .btn-outline:hover{
  background:rgba(255,255,255,.08);
}
.policy-figure-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.policy-figure{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow);
}
.policy-figure img{
  width:100%;
  border-radius:12px;
}
@media (max-width: 900px){
  .policy-figure-grid{grid-template-columns:1fr}
}


.site-footer .footer-project-links .btn,
.site-footer .footer-project-links a.btn,
.site-footer .footer-project-links .btn.btn-outline{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:120px;
  padding:12px 18px !important;
  color:#f8f3eb !important;
  font-size:.95rem !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  border:1px solid rgba(255,255,255,.45) !important;
  background:rgba(255,255,255,.03) !important;
}
.site-footer .footer-project-links .btn:hover,
.site-footer .footer-project-links a.btn:hover,
.site-footer .footer-project-links .btn.btn-outline:hover{
  background:rgba(255,255,255,.09) !important;
}


/* Final fixed footer/project buttons */
.site-footer .footer-project-links .btn,
.site-footer .footer-project-links a.btn,
.site-footer .footer-project-links .btn.btn-outline{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:120px;
  padding:12px 18px !important;
  color:#f8f3eb !important;
  font-size:.95rem !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  border:1px solid rgba(255,255,255,.45) !important;
  background:rgba(255,255,255,.03) !important;
}
.site-footer .footer-project-links .btn:hover,
.site-footer .footer-project-links a.btn:hover,
.site-footer .footer-project-links .btn.btn-outline:hover{
  background:rgba(255,255,255,.09) !important;
}



/* Favicon / WARABE / lightbox */
.zen-subsymbol{
  margin-top:18px;
  display:grid;
  grid-template-columns:220px 1fr;
  gap:20px;
  align-items:center;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}
.zen-subsymbol img{
  width:100%;
  height:auto;
  border-radius:14px;
  background:#111;
}
.zen-subsymbol p:last-child{margin-bottom:0}
.ofuda-gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.ofuda-gallery figure{margin:0}
.ofuda-gallery a{
  display:block;
  border-radius:14px;
}
.ofuda-gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:var(--shadow);
  cursor:zoom-in;
}
.ofuda-gallery figcaption{
  margin-top:8px;
  font-size:.92rem;
  color:var(--muted);
}
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(17,14,12,.84);
  z-index:1200;
}
.lightbox.is-open{display:flex}
.lightbox-inner{
  position:relative;
  max-width:min(92vw,1100px);
  max-height:90vh;
}
.lightbox img{
  max-width:100%;
  max-height:90vh;
  width:auto;
  height:auto;
  display:block;
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.32);
  background:#fff;
}
.lightbox-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#2b2621;
  font-size:1.4rem;
  cursor:pointer;
  box-shadow:var(--shadow);
}
@media (max-width: 700px){
  .zen-subsymbol{grid-template-columns:1fr}
  .ofuda-gallery{grid-template-columns:1fr}
  .ofuda-gallery img{height:auto}
}


/* Final unified CTA */
body{padding-bottom:108px;}
.site-footer{padding-bottom:132px;}
.sticky-cta{
  position:fixed;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  z-index:1100;
  width:min(720px, calc(100% - 20px));
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  padding:10px;
  background:#4a382c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  box-shadow:0 16px 36px rgba(0,0,0,.18);
}
.sticky-cta a{
  text-align:center;
  padding:14px 10px;
  font-weight:700;
  color:#fff;
  background:#9b7645;
  border-radius:999px;
  text-decoration:none;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.sticky-cta a + a{border-left:none}
.sticky-cta a:hover{opacity:.95; transform:translateY(-1px)}
@media (max-width:700px){
  body{padding-bottom:102px;}
  .site-footer{padding-bottom:126px;}
  .sticky-cta{bottom:12px; gap:8px; padding:8px; width:calc(100% - 16px);}
  .sticky-cta a{padding:12px 8px; min-height:50px; font-size:.96rem;}
}

/* Oto no Hi card */
.oto-card{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:20px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}
.oto-card img{width:100%; height:auto; border-radius:16px; box-shadow:var(--shadow);}
.oto-card h3{margin-top:0;}
.oto-card .button-row{margin-top:18px;}

/* WARABE smaller + clickable */
.zen-subsymbol{
  grid-template-columns:160px 1fr;
}
.zen-subsymbol a{display:block; border-radius:14px;}
.zen-subsymbol img{
  width:100%;
  max-width:160px;
  margin:0 auto;
  display:block;
  cursor:zoom-in;
}

/* More compact ofuda gallery */
.ofuda-gallery{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.ofuda-gallery img{
  height:150px;
  object-fit:cover;
}
.caption,.small-caption{font-size:.9rem;color:var(--muted);}
@media (max-width:700px){
  .oto-card,.zen-subsymbol{grid-template-columns:1fr;}
  .zen-subsymbol img{max-width:180px;}
  .ofuda-gallery{grid-template-columns:repeat(2, minmax(0,1fr));}
  .ofuda-gallery img{height:120px;}
}


/* 2026-04-11 refinement: WARABE + ofuda balance */
.warabe-figure{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.warabe-figure a{
  display:block;
  width:100%;
  border-radius:16px;
  overflow:hidden;
}
.warabe-figure img{
  width:100%;
  max-width:220px;
  margin:0 auto;
  display:block;
  background:#fff;
  filter:invert(1) grayscale(1) contrast(1.08);
  cursor:zoom-in;
  border-radius:14px;
}
.support-preview-card{padding:28px;}
.support-preview-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(260px,.8fr);
  gap:24px;
  align-items:start;
}
.support-preview-images{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.support-preview-images figure{margin:0;}
.support-preview-images img{
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:contain;
  background:#fff;
}
@media (max-width: 900px){
  .support-preview-grid,
  .support-preview-images{grid-template-columns:1fr;}
  .support-preview-images img{max-height:none;}
}



/* 2026-04-11 mobile menu fix */
.site-header{
  z-index: 5000;
}
.header-inner{
  position: relative;
  z-index: 5001;
}
.menu-toggle{
  position: relative;
  z-index: 6002;
}
.mobile-nav{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  z-index: 6001;
}
.mobile-nav.is-open{
  display: block;
}
.mobile-link{
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  position: relative;
  z-index: 6003;
}
.mobile-link:hover,
.mobile-link:focus{
  background: #efe7da;
}
body.mobile-menu-open{
  overflow-x: hidden;
}
@media (max-width: 960px){
  .site-header,
  .header-inner,
  .menu-toggle,
  .mobile-nav,
  .mobile-link{
    z-index: 6000 !important;
  }
  .sticky-cta{
    z-index: 1100 !important;
  }
}
