@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
<style>
/* ── Reset & Root ── */
:root {
  --ink:    #1C1A15;
  --paper:  #F7F3EA;
  --warm:   #FDFAF3;
  --rice:   #EDE4CC;
  --moss:   #3A5C38;
  --moss2:  #2A4228;
  --mossL:  #E8F0E7;
  --amber:  #A87828;
  --amberL: #F5EDD5;
  --sake:   #7A4A1E;
  --sakeL:  #F5EDE5;
  --indigo: #28406A;
  --indigoL:#E2E8F5;
  --border: #D8CEB5;
  --muted:  #7A6E58;
  --soft:   #A89E88;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
}

/* ── Typography ── */
.zen { font-family: 'Zen Old Mincho', serif; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28,26,21,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
}
.nav-logo {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px; color: #F7F3EA;
  letter-spacing: 2px;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: #AAA; font-size: 13px; text-decoration: none;
  letter-spacing: 1px; transition: color .2s;
}
.nav-links a:hover { color: #F7F3EA; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 60px;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hc1 { width:520px;height:520px; top:-120px;right:-100px; background:radial-gradient(circle,rgba(58,92,56,.22) 0%,transparent 70%); }
.hc2 { width:340px;height:340px; bottom:-80px;left:8%; background:radial-gradient(circle,rgba(168,120,40,.15) 0%,transparent 70%); }
.hc3 { width:240px;height:240px; top:35%;left:30%; background:radial-gradient(circle,rgba(122,74,30,.1) 0%,transparent 70%); }

.hero-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 0 24px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px; font-weight: 500;
}
.hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(36px, 6vw, 64px);
  color: #F7F3EA; line-height: 1.4;
  margin-bottom: 20px;
}
.hero-title em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #888; max-width: 560px; margin: 0 auto 40px;
  line-height: 2;
}
.hero-cta {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.btn {
  display: inline-block; padding: 13px 28px;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-decoration: none; border-radius: 2px;
  transition: all .22s;
}
.btn-primary { background: var(--moss); color: #fff; }
.btn-primary:hover { background: var(--moss2); }
.btn-outline { border: 1px solid rgba(255,255,255,.25); color: #ccc; }
.btn-outline:hover { border-color: rgba(255,255,255,.6); color: #fff; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #555; font-size: 11px; letter-spacing: 3px;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
.scroll-line { width:1px; height:40px; background:linear-gradient(var(--amber),transparent); }

/* ── Section commons ── */
section { padding: 96px 0; }
.container { max-width: 1060px; margin: 0 auto; padding: 0 32px; }
.sec-eye {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--soft); margin-bottom: 8px; font-weight: 500;
}
.sec-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 14px; line-height: 1.5;
}
.sec-lead {
  font-size: 15px; color: var(--muted); max-width: 620px;
  line-height: 2; margin-bottom: 52px;
}

/* ── Mission ── */
.mission { background: var(--ink); color: #F7F3EA; }
.mission .sec-eye { color: var(--amber); }
.mission .sec-title { color: #F7F3EA; }
.mission .sec-lead { color: #888; }
.mission-quote {
  border-left: 3px solid var(--amber);
  padding: 20px 28px;
  background: rgba(255,255,255,.03);
  border-radius: 0 4px 4px 0;
  margin-bottom: 52px;
  max-width: 680px;
}
.mission-quote p {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #F7F3EA; line-height: 1.8;
}
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mission-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; padding: 24px 22px;
}
.mission-card-icon { font-size: 28px; margin-bottom: 10px; }
.mission-card-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--amber); }
.mission-card-body { font-size: 13px; color: #888; line-height: 1.9; }

/* ── Overview (Company) ── */
.overview { background: var(--warm); }
.ov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ov-table { width: 100%; border-collapse: collapse; }
.ov-table tr { border-bottom: 1px solid var(--border); }
.ov-table tr:last-child { border: none; }
.ov-table th {
  padding: 12px 16px 12px 0; text-align: left;
  font-size: 13px; font-weight: 500; color: var(--muted);
  white-space: nowrap; width: 120px;
}
.ov-table td { padding: 12px 0; font-size: 14px; }
.ov-mission-block {
  background: var(--amberL);
  border-left: 4px solid var(--amber);
  padding: 24px 24px;
  border-radius: 0 4px 4px 0;
}
.ov-mission-block .label { font-size: 11px; letter-spacing: 3px; color: var(--amber); margin-bottom: 8px; }
.ov-mission-block p { font-family: 'Zen Old Mincho', serif; font-size: 18px; line-height: 1.8; }

/* ── Business ── */
.business { background: var(--paper); }
.biz-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.biz-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.biz-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.biz-card-bar { height: 5px; }
.biz-card.moss  .biz-card-bar { background: var(--moss); }
.biz-card.sake  .biz-card-bar { background: var(--sake); }
.biz-card.amber .biz-card-bar { background: var(--amber); }
.biz-card-body { padding: 28px 24px; }
.biz-card-icon { font-size: 32px; margin-bottom: 12px; }
.biz-card-num  { font-size: 11px; letter-spacing: 3px; margin-bottom: 4px; font-weight: 500; }
.biz-card.moss  .biz-card-num  { color: var(--moss); }
.biz-card.sake  .biz-card-num  { color: var(--sake); }
.biz-card.amber .biz-card-num  { color: var(--amber); }
.biz-card-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px; margin-bottom: 12px; line-height: 1.4;
}
.biz-card-desc { font-size: 13px; color: var(--muted); line-height: 2; }
.biz-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.biz-tag {
  font-size: 11px; padding: 3px 9px; border-radius: 10px;
  background: var(--rice); color: var(--muted);
}

/* ── Supporter ── */
.supporter { background: var(--ink); color: #F7F3EA; }
.supporter .sec-eye { color: var(--amber); }
.supporter .sec-title { color: #F7F3EA; }
.supporter .sec-lead { color: #888; }
.sup-flow { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 0; align-items: center; margin-bottom: 52px; }
.sup-box { border-radius: 4px; padding: 20px 18px; text-align: center; }
.sup-box.give { background: rgba(40,64,106,.5); border: 1px solid rgba(255,255,255,.1); }
.sup-box.hub  { background: rgba(58,92,56,.35); border: 1px solid rgba(58,92,56,.4); }
.sup-box.recv { background: rgba(122,74,30,.3); border: 1px solid rgba(122,74,30,.4); }
.sup-arr { text-align: center; font-size: 22px; color: #444; }
.sup-icon  { font-size: 26px; margin-bottom: 8px; }
.sup-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.sup-box.give .sup-title { color: #9ab0d4; }
.sup-box.hub  .sup-title { color: #8ab488; }
.sup-box.recv .sup-title { color: #c8986a; }
.sup-body  { font-size: 12px; color: #888; line-height: 1.7; }
.sup-benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.sup-benefit {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; padding: 20px 16px; text-align: center;
}
.sup-benefit-icon { font-size: 24px; margin-bottom: 8px; }
.sup-benefit-title { font-size: 13px; font-weight: 700; color: var(--amber); margin-bottom: 6px; }
.sup-benefit-body  { font-size: 12px; color: #888; line-height: 1.7; }
.sup-cta { margin-top: 48px; text-align: center; }
.btn-amber { background: var(--amber); color: #fff; padding: 15px 40px; font-size: 14px; }
.btn-amber:hover { background: #8a6018; }

/* ── Freepaper ── */
.freepaper { background: var(--warm); }
.fp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.fp-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: transform .2s;
}
.fp-card:hover { transform: translateY(-3px); }
.fp-thumb {
  aspect-ratio: 3/4; background: var(--rice);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 13px; color: var(--muted); flex-direction: column; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.fp-thumb-icon { font-size: 28px; }
.fp-info { padding: 12px 14px; }
.fp-vol  { font-size: 11px; color: var(--amber); font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; }
.fp-date { font-size: 12px; color: var(--muted); }
.fp-coming {
  background: var(--rice);
  border-radius: 4px; padding: 48px 24px;
  text-align: center; grid-column: 1 / -1;
  font-size: 14px; color: var(--muted);
}

/* ── Contact ── */
.contact { background: var(--paper); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info p { font-size: 14px; color: var(--muted); line-height: 2; margin-bottom: 24px; }
.contact-detail { margin-top: 24px; }
.contact-detail dt { font-size: 12px; color: var(--soft); letter-spacing: 1px; margin-bottom: 2px; }
.contact-detail dd { font-size: 14px; margin-bottom: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--muted); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 2px; padding: 11px 14px;
  font-size: 14px; font-family: inherit;
  background: var(--warm); color: var(--ink);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--moss);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--moss); color: #fff;
  border: none; padding: 14px 36px;
  font-size: 14px; font-family: inherit;
  cursor: pointer; border-radius: 2px;
  letter-spacing: 1px; transition: background .2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--moss2); }
.form-note { font-size: 12px; color: var(--soft); line-height: 1.8; }

/* ── Footer ── */
footer {
  background: var(--ink); padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1060px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px; color: #F7F3EA; margin-bottom: 10px;
}
.footer-brand-name span { color: var(--amber); }
.footer-tagline { font-size: 13px; color: #666; line-height: 1.9; }
.footer-col h4 { font-size: 12px; color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #888; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: #F7F3EA; }
.footer-bottom {
  max-width: 1060px; margin: 0 auto; padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: #555; }

/* ── Divider ── */
.divider {
  width: 40px; height: 2px; background: var(--amber);
  margin: 0 0 40px;
}
.divider.center { margin: 0 auto 40px; }

/* ── Responsive ── */
@media(max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .mission-grid,
  .biz-cards,
  .sup-benefits { grid-template-columns: 1fr 1fr; }
  .sup-flow { grid-template-columns: 1fr; }
  .sup-arr { transform: rotate(90deg); }
  .ov-grid,
  .contact-wrap,
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .fp-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px) {
  .mission-grid, .biz-cards, .sup-benefits, .fp-grid { grid-template-columns: 1fr; }
}
</style>

