:root{
  --paper:#fff8f1;
  --paper-deep:#fdf1e8;
  --white:#ffffff;
  --rose:#e58a7e;
  --rose-soft:#f8dad1;
  --rose-pale:#fbe5d9;
  --wine:#d26f63;
  --sage:#9cba94;
  --sage-pale:rgba(156,186,148,.20);
  --brown:#4a3a35;
  --brown-soft:#937f76;
  --line:rgba(229,138,126,.18);
  --shadow:0 16px 40px rgba(210,111,99,.14);
  --shadow-lg:0 26px 60px rgba(210,111,99,.18);
  --max:1200px;
  --serif:"Zen Maru Gothic",system-ui,"Hiragino Maru Gothic ProN","ヒラギノ丸ゴ ProN",-apple-system,sans-serif;
  --sans:"Zen Maru Gothic",system-ui,"Hiragino Maru Gothic ProN","ヒラギノ丸ゴ ProN",-apple-system,sans-serif;
  --hand:"Klee One",serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--brown);
  background:
    radial-gradient(closest-side,rgba(248,218,209,.55),transparent 70%) -8% -6%/55vw 55vw no-repeat,
    radial-gradient(closest-side,rgba(156,186,148,.30),transparent 70%) 108% 30%/50vw 50vw no-repeat,
    radial-gradient(closest-side,rgba(251,229,217,.70),transparent 70%) 50% 118%/70vw 60vw no-repeat,
    var(--paper);
  font-family:var(--sans);
  line-height:1.9;
  letter-spacing:.02em;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

body::after{
  content:none;
}

img{display:block;max-width:100%}
a{color:inherit}
button,input{font:inherit}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{font-family:var(--serif);font-weight:700;line-height:1.45;letter-spacing:.02em}

.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:100;
  transition:background .35s ease,box-shadow .35s ease;
}

.site-header.scrolled{
  background:rgba(255,248,241,.88);
  box-shadow:0 1px 0 rgba(229,138,126,.15);
  backdrop-filter:blur(16px);
}

.header-inner{
  width:min(100% - 48px,var(--max));
  min-height:88px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  line-height:1.35;
  position:relative;
  z-index:2;
}

.brand span{font-family:var(--serif);font-weight:700;font-size:clamp(.95rem,1.6vw,1.1rem)}
.brand small{font-size:.61rem;letter-spacing:.23em;color:var(--wine);font-weight:700}

.nav{display:flex;align-items:center;gap:26px}
.nav a{
  position:relative;
  text-decoration:none;
  font-family:var(--serif);
  font-size:.84rem;
  font-weight:500;
  letter-spacing:.11em;
  padding:8px 0;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:3px;
  width:100%;
  height:1px;
  background:var(--rose);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .35s ease;
}
.nav a:hover::after{transform:scaleX(1);transform-origin:left}

.menu-button{
  display:none;
  width:48px;
  height:48px;
  border:0;
  background:transparent;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  position:relative;
  z-index:2;
}
.menu-button span{width:24px;height:1px;background:var(--brown);transition:.3s ease}
.menu-button[aria-expanded="true"] span:first-child{transform:translateY(3.5px) rotate(45deg)}
.menu-button[aria-expanded="true"] span:last-child{transform:translateY(-3.5px) rotate(-45deg)}

main{overflow:hidden}

.hero{
  width:min(100% - 48px,var(--max));
  min-height:100svh;
  margin:auto;
  padding:150px 0 100px;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);
  align-items:center;
  gap:clamp(50px,8vw,120px);
  position:relative;
}

.hero-copy{position:relative;z-index:2}
.hero-kicker,.eyebrow{
  display:flex;
  align-items:center;
  gap:13px;
  margin:0 0 24px;
  color:var(--wine);
  font-family:var(--serif);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.hero-kicker::before,.eyebrow::before{content:"";width:36px;height:1px;background:currentColor}

.hero h1{
  margin:0;
  font-size:clamp(2.75rem,6vw,5.8rem);
  font-weight:900;
  line-height:1.32;
  letter-spacing:.07em;
}
.hero h1 .accent{display:inline-block;color:var(--wine);position:relative}
.hero h1 .accent::after{
  content:"";
  position:absolute;
  left:-.08em;
  right:-.08em;
  bottom:.13em;
  height:.26em;
  z-index:-1;
  background:var(--rose-soft);
  border-radius:100%;
  transform:rotate(-1.8deg);
}

.hero-lead{
  max-width:35em;
  margin:38px 0 0;
  color:var(--brown-soft);
  font-family:var(--hand);
  font-size:clamp(1rem,1.4vw,1.16rem);
  line-height:2.25;
}

.hero-link{
  display:inline-flex;
  align-items:center;
  gap:18px;
  margin-top:42px;
  text-decoration:none;
  font-size:.83rem;
  font-weight:700;
  letter-spacing:.12em;
}
.hero-link::after{
  content:"";
  width:58px;
  height:1px;
  background:var(--brown);
  transition:width .35s ease;
}
.hero-link:hover::after{width:80px}

.hero-visual{
  position:relative;
  min-height:650px;
  display:grid;
  place-items:center;
}
.hero-orbit{
  position:absolute;
  z-index:3;
  width:min(48vw,560px);
  aspect-ratio:1;
  border:1px solid rgba(229,138,126,.18);
  border-radius:50%;
  animation:spin 34s linear infinite;
  pointer-events:none;
}
.hero-orbit::before,.hero-orbit::after{
  content:"";
  position:absolute;
  z-index:5;
  border-radius:50%;
}
.hero-orbit::before{width:15px;height:15px;background:var(--rose);left:11%;top:16%;box-shadow:0 0 0 10px rgba(229,138,126,.18)}
.hero-orbit::after{width:11px;height:11px;background:var(--sage);right:4%;bottom:30%;box-shadow:0 0 0 8px rgba(156,186,148,.18)}
@keyframes spin{to{transform:rotate(360deg)}}

.hero-disc{
  z-index:2;
  width:min(38vw,480px);
  aspect-ratio:1;
  border-radius:50%;
  background:linear-gradient(145deg,var(--paper-deep),var(--rose-pale));
  box-shadow:var(--shadow);
  overflow:hidden;
  display:grid;
  place-items:center;
  position:relative;
}
.hero-disc::before{
  content:"";
  position:absolute;
  inset:8%;
  border:1px solid rgba(255,255,255,.82);
  border-radius:50%;
}
.hero-disc img{width:82%;height:82%;object-fit:contain;position:relative;z-index:1;filter:drop-shadow(0 20px 26px rgba(210,111,99,.14))}

.hero-note{
  position:absolute;
  z-index:4;
  right:-18px;
  bottom:44px;
  writing-mode:vertical-rl;
  font-family:var(--serif);
  color:var(--wine);
  font-size:.72rem;
  letter-spacing:.25em;
}

.section{
  width:min(100% - 48px,var(--max));
  margin:auto;
  padding:clamp(90px,12vw,160px) 0;
  position:relative;
}

.section-head{max-width:760px;margin:0 auto 70px;text-align:center}
.section-head .eyebrow{justify-content:center}
.section-head h2{font-size:clamp(2rem,4.2vw,3.7rem);font-weight:900;margin-bottom:24px}
.section-head>p:last-child{margin:0;color:var(--brown-soft);font-family:var(--hand);font-size:1rem;line-height:2.1}

.origin-layout{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
  gap:clamp(42px,8vw,110px);
  align-items:center;
}

.origin-image{
  border-radius:0 180px 0 180px;
  overflow:hidden;
  background:var(--rose-pale);
  box-shadow:var(--shadow);
}
.origin-image img{width:100%;height:auto}

.origin-copy{position:relative;padding:30px 0}
.origin-copy::before{
  content:"“";
  position:absolute;
  top:-65px;
  left:-20px;
  font-family:Georgia,serif;
  font-size:10rem;
  line-height:1;
  color:rgba(229,138,126,.18);
}
.origin-copy h2{font-size:clamp(2rem,3.4vw,3.1rem);margin-bottom:30px}
.origin-copy p{font-family:var(--hand);color:var(--brown-soft);line-height:2.35;margin-bottom:0}

.about-section::before{
  content:"THANK YOU";
  position:absolute;
  left:50%;
  top:6%;
  transform:translateX(-50%);
  font-family:var(--serif);
  font-size:clamp(4rem,15vw,12rem);
  line-height:1;
  letter-spacing:.08em;
  color:rgba(210,111,99,.06);
  white-space:nowrap;
  pointer-events:none;
}

.about-list{border-top:1px solid var(--line)}
.about-item{
  min-height:250px;
  padding:48px 0;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:130px minmax(240px,.65fr) minmax(300px,1fr);
  gap:40px;
  align-items:start;
}
.about-number{font-family:var(--serif);font-size:.74rem;letter-spacing:.24em;color:var(--rose)}
.about-item h3{font-size:clamp(1.45rem,2.5vw,2.2rem);margin:0}
.about-item p{margin:0;color:var(--brown-soft);line-height:2.1}

.vol-section{width:100%;padding:0;background:var(--wine);color:var(--white)}
.vol-inner{
  width:min(100% - 48px,var(--max));
  min-height:680px;
  margin:auto;
  padding:clamp(90px,12vw,150px) 0;
  display:grid;
  grid-template-columns:minmax(250px,.8fr) minmax(400px,1.2fr);
  gap:clamp(50px,8vw,120px);
  align-items:center;
  position:relative;
}
.vol-number{
  font-family:var(--serif);
  font-size:clamp(10rem,25vw,22rem);
  line-height:.75;
  color:rgba(255,253,249,.08);
  position:absolute;
  left:-.1em;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
}
.vol-title{position:relative;z-index:1}
.vol-title .eyebrow{color:var(--rose-soft)}
.vol-title h2{font-size:clamp(2.3rem,5vw,4.6rem);font-weight:900;margin-bottom:0}
.vol-panel{
  position:relative;
  z-index:1;
  padding:clamp(40px,6vw,72px);
  background:rgba(255,253,249,.09);
  border:1px solid rgba(255,255,255,.22);
  border-radius:120px 0 120px 0;
  backdrop-filter:blur(8px);
}
.vol-panel h3{font-size:clamp(1.6rem,3vw,2.6rem);margin-bottom:24px}
.vol-panel p{color:rgba(255,253,249,.76);font-family:var(--hand);line-height:2.2;margin-bottom:34px}
.coming-soon{
  display:inline-flex;
  align-items:center;
  gap:18px;
  font-family:var(--serif);
  font-size:.83rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.coming-soon::before{content:"";width:54px;height:1px;background:var(--rose-soft)}

.artists-section{padding-top:clamp(110px,14vw,180px)}
.artists-grid{display:grid;gap:clamp(90px,12vw,150px)}
.artist-card{
  display:grid;
  grid-template-columns:minmax(360px,.95fr) minmax(330px,1.05fr);
  gap:clamp(50px,9vw,130px);
  align-items:center;
}
.artist-card:nth-child(even){grid-template-columns:minmax(330px,1.05fr) minmax(360px,.95fr)}
.artist-card:nth-child(even) .artist-image-wrap{order:2}
.artist-card:nth-child(even) .artist-body{order:1;padding-left:7vw}

.artist-image-wrap{
  width:min(100%,520px);
  aspect-ratio:1;
  border-radius:50%;
  overflow:hidden;
  position:relative;
  background:var(--rose-pale);
  box-shadow:var(--shadow);
}
.artist-image-wrap::after{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.76);
  border-radius:50%;
  pointer-events:none;
}
.artist-image{width:100%;height:100%;object-fit:cover}

.artist-body{position:relative}
.artist-label{margin:0 0 18px;color:var(--rose);font-family:var(--serif);font-size:.72rem;letter-spacing:.23em}
.artist-title{font-size:clamp(3rem,6vw,5.6rem);font-weight:900;line-height:1;margin-bottom:16px}
.artist-subtitle{margin:0 0 30px;font-family:var(--serif);font-size:1rem;letter-spacing:.08em;color:var(--wine)}
.artist-description{margin:0;color:var(--brown-soft);font-family:var(--hand);line-height:2.15}
.artist-links{display:flex;gap:22px;flex-wrap:wrap;margin-top:34px}
.artist-link{
  text-decoration:none;
  position:relative;
  padding-bottom:6px;
  font-family:var(--serif);
  font-size:.78rem;
  letter-spacing:.11em;
}
.artist-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:var(--rose);
  transform:scaleX(.35);
  transform-origin:left;
  transition:transform .3s ease;
}
.artist-link:hover::after{transform:scaleX(1)}

.links-section{width:100%;background:var(--sage-pale)}
.links-inner{width:min(100% - 48px,var(--max));margin:auto;padding:clamp(90px,12vw,150px) 0}
.link-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.link-card{
  min-height:310px;
  padding:44px;
  border:1px solid rgba(248,218,209,.70);
  background:rgba(255,255,255,.76);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  transition:transform .45s ease,background .45s ease,box-shadow .45s ease;
}
.link-card::before{
  content:"";
  position:absolute;
  width:190px;
  aspect-ratio:1;
  border-radius:50%;
  right:-85px;
  top:-85px;
  background:var(--rose-pale);
  transition:transform .5s ease;
}
.link-card:hover{transform:translateY(-8px);background:var(--white);box-shadow:var(--shadow)}
.link-card:hover::before{transform:scale(1.12)}
.link-label{position:relative;font-family:var(--serif);font-size:.68rem;letter-spacing:.2em;color:var(--wine)}
.link-card h3{position:relative;font-size:clamp(1.4rem,2.4vw,2rem);margin:30px 0 18px}
.link-card p{position:relative;margin:0;color:var(--brown-soft);font-size:.92rem;line-height:2}
.link-more{position:relative;margin-top:auto;padding-top:26px;font-family:var(--serif);font-size:.74rem;letter-spacing:.16em}


.official-text-link{
  color:var(--wine);
  font-weight:700;
  text-decoration-line:underline;
  text-decoration-color:rgba(210,111,99,.42);
  text-decoration-thickness:1px;
  text-underline-offset:.22em;
  transition:color .25s ease,text-decoration-color .25s ease;
}

.official-text-link:hover{
  color:var(--rose);
  text-decoration-color:currentColor;
}

.official-text-link:focus-visible{
  outline:2px solid var(--rose);
  outline-offset:3px;
  border-radius:3px;
}

.notice{
  max-width:900px;
  margin:46px auto 0;
  padding-top:30px;
  border-top:1px solid rgba(229,138,126,.22);
  color:var(--brown-soft);
  text-align:center;
  font-size:.78rem;
  line-height:2;
}

.donor-section .section-head{margin-bottom:56px}
.donor-links{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid var(--line)}
.donor-link{
  min-height:230px;
  padding:42px;
  text-decoration:none;
  border-bottom:1px solid var(--line);
  position:relative;
}
.donor-link:first-child{border-right:1px solid var(--line)}
.donor-link span{display:block;color:var(--rose);font-family:var(--serif);font-size:.68rem;letter-spacing:.2em;margin-bottom:18px}
.donor-link h3{font-size:clamp(1.25rem,2.2vw,1.8rem);margin-bottom:15px}
.donor-link p{margin:0;color:var(--brown-soft);font-size:.9rem;line-height:2}
.donor-link::after{content:"↗";position:absolute;right:32px;top:35px;font-family:var(--serif);color:var(--rose);transition:transform .3s ease}
.donor-link:hover::after{transform:translate(4px,-4px)}

.site-footer{padding:70px 24px 30px;background:linear-gradient(160deg,#fff3ea,#fbe5d9);color:var(--brown);border-top:1px solid rgba(229,138,126,.18)}
.footer-inner{width:min(100%,var(--max));margin:auto;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:end}
.footer-copy strong{font-family:var(--serif);font-size:1.35rem;font-weight:700;color:var(--wine)}
.footer-copy p{max-width:700px;margin:20px 0 0;color:#5f4d47;font-size:.88rem;line-height:2}
.footer-logo img{width:82px;height:auto;opacity:.9}

.site-footer .footer-inner strong{
  color:var(--wine);
  font-weight:700;
}
.site-footer .footer-inner>div:first-child{
  color:#5f4d47;
}
.copyright{width:min(100%,var(--max));margin:55px auto 0;padding-top:24px;border-top:1px solid rgba(229,138,126,.18);font-size:.7rem;letter-spacing:.1em;color:var(--brown-soft)}

/* =========================================================
   スクロール時のスライド表示
   通常状態では必ず表示
   JavaScriptが正常に動いた要素だけ待機状態にする
   ========================================================= */

.text-reveal,
.side-reveal,
.side-reveal.from-left,
.side-reveal.from-right{
  opacity:1;
  transform:none;
}

/* 文字は下から */
.text-reveal.reveal-armed{
  opacity:0;
  transform:translate3d(0,42px,0);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform .9s cubic-bezier(.22,1,.36,1);
  will-change:opacity,transform;
}

/* 基本は左から */
.side-reveal.reveal-armed,
.side-reveal.from-left.reveal-armed{
  opacity:0;
  transform:translate3d(-88px,0,0);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.22,1,.36,1);
  will-change:opacity,transform;
}

/* 右指定は右から */
.side-reveal.from-right.reveal-armed{
  opacity:0;
  transform:translate3d(88px,0,0);
}

/* 画面内に入った時 */
.text-reveal.reveal-armed.is-visible,
.side-reveal.reveal-armed.is-visible,
.side-reveal.from-left.reveal-armed.is-visible,
.side-reveal.from-right.reveal-armed.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

a:focus-visible,button:focus-visible{outline:2px solid var(--rose);outline-offset:5px}

@media (max-width:960px){
  .menu-button{display:flex}
  .nav{
    position:fixed;
    inset:0;
    padding:130px 34px 50px;
    background:rgba(255,248,241,.98);
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    transform:translateX(100%);
    transition:transform .45s cubic-bezier(.77,0,.18,1);
  }
  .nav.is-open{transform:none}
  .nav a{font-size:1.2rem}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:145px;gap:55px}
  .hero-visual{
    min-height:min(86vw,570px);
  }
  .hero-orbit{
    width:min(76vw,520px);
  }
  .hero-disc{
    width:min(62vw,424px);
  }
  .hero-note{
    right:2px;
    bottom:34px;
  }
  .origin-layout{grid-template-columns:1fr;gap:60px}
  .origin-copy{max-width:690px;margin:auto}
  .about-item{grid-template-columns:80px 1fr;gap:24px}
  .about-item p{grid-column:2}
  .vol-inner{grid-template-columns:1fr;min-height:760px}
  .vol-title{max-width:560px}
  .vol-panel{margin-left:12vw}
  .artist-card,.artist-card:nth-child(even){grid-template-columns:minmax(280px,.9fr) minmax(300px,1.1fr);gap:50px}
  .artist-card:nth-child(even) .artist-body{padding-left:0}
}

@media (max-width:700px){
  .header-inner,.hero,.section,.vol-inner,.links-inner{width:min(100% - 36px,var(--max))}
  .header-inner{min-height:74px}
  .hero{
    padding-top:120px;
    padding-bottom:82px;
    gap:44px;
  }
  .hero h1{font-size:clamp(2.55rem,13vw,4.5rem)}
  .hero-lead br{display:none}

  .hero-visual{
    width:100%;
    min-height:clamp(320px,92vw,430px);
    padding-right:24px;
    overflow:visible;
  }

  .hero-orbit{
    z-index:3;
    width:min(80vw,380px);
  }

  .hero-disc{
    z-index:2;
    width:min(65vw,309px);
  }

  .hero-orbit::before{
    width:12px;
    height:12px;
    box-shadow:0 0 0 8px rgba(229,138,126,.18);
  }

  .hero-orbit::after{
    width:9px;
    height:9px;
    box-shadow:0 0 0 6px rgba(156,186,148,.18);
  }

  .hero-note{
    display:block;
    z-index:4;
    right:0;
    bottom:22px;
    font-size:.62rem;
    line-height:1.8;
    letter-spacing:.18em;
    white-space:nowrap;
  }

  .section{padding:90px 0}
  .section-head{margin-bottom:50px;text-align:left}
  .section-head .eyebrow{justify-content:flex-start}
  .section-head>p:last-child br{display:none}
  .origin-image{border-radius:0 90px 0 90px}
  .origin-copy::before{font-size:7rem;top:-42px}
  .about-section::before{top:3%}
  .about-item{grid-template-columns:52px 1fr;padding:38px 0}
  .about-item p{font-size:.92rem}
  .vol-inner{padding:90px 0;min-height:auto}
  .vol-number{top:17%;font-size:13rem}
  .vol-panel{margin-left:0;border-radius:64px 0 64px 0;padding:42px 28px}
  .artist-card,.artist-card:nth-child(even){grid-template-columns:1fr;gap:42px}
  .artist-card:nth-child(even) .artist-image-wrap,.artist-card:nth-child(even) .artist-body{order:initial}
  .artist-image-wrap{width:min(92vw,470px);margin:auto}
  .artist-body{padding:0 8px}
  .artist-title{font-size:3.8rem}
  .link-grid,.donor-links{grid-template-columns:1fr}
  .link-card{padding:35px 28px;min-height:290px}
  .donor-link{padding:36px 10px}
  .donor-link:first-child{border-right:0}
  .footer-inner{grid-template-columns:1fr}
  .footer-logo{justify-self:start}
  .side-reveal.reveal-armed,
  .side-reveal.from-left.reveal-armed{
    transform:translate3d(-54px,0,0);
  }
  .side-reveal.from-right.reveal-armed{
    transform:translate3d(54px,0,0);
  }
}



  .notice{
    text-align:left;
    padding:20px 18px;
    line-height:1.95;
  }

  .notice br{
    display:none;
  }

@media (max-width:390px){
  .hero-visual{
    min-height:310px;
    padding-right:20px;
  }

  .hero-orbit{
    width:78vw;
  }

  .hero-disc{
    width:63vw;
  }

  .hero-note{
    right:-2px;
    bottom:18px;
    font-size:.58rem;
    letter-spacing:.15em;
  }
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  .text-reveal.reveal-armed,
  .side-reveal.reveal-armed,
  .side-reveal.from-left.reveal-armed,
  .side-reveal.from-right.reveal-armed{
    opacity:1!important;
    transform:none!important;
  }
}

/* =========================================================
   index0711a theme override
   独立した最終指定として、フォントとカラーを確実に反映
   ========================================================= */
html,
body,
button,
input,
textarea,
select,
.site-header,
.nav,
.hero,
.section,
.vol-section,
.links-section,
.site-footer {
  font-family:"Zen Maru Gothic",system-ui,"Hiragino Maru Gothic ProN","ヒラギノ丸ゴ ProN",-apple-system,sans-serif;
}

h1,h2,h3,
.brand span,
.brand small,
.nav a,
.hero-kicker,
.eyebrow,
.hero-link,
.about-number,
.coming-soon,
.artist-label,
.artist-title,
.artist-subtitle,
.artist-link,
.link-label,
.link-more,
.donor-link span,
.donor-link::after,
.footer-inner strong {
  font-family:"Zen Maru Gothic",system-ui,"Hiragino Maru Gothic ProN","ヒラギノ丸ゴ ProN",-apple-system,sans-serif;
}

.hero-lead,
.origin-copy p,
.section-head > p:last-child,
.vol-panel p,
.artist-description {
  font-family:"Klee One",serif;
}

body {
  color:#4a3a35;
  background:
    radial-gradient(closest-side,rgba(248,218,209,.55),transparent 70%) -8% -6%/55vw 55vw no-repeat,
    radial-gradient(closest-side,rgba(156,186,148,.30),transparent 70%) 108% 30%/50vw 50vw no-repeat,
    radial-gradient(closest-side,rgba(251,229,217,.70),transparent 70%) 50% 118%/70vw 60vw no-repeat,
    #fff8f1;
}

.site-header.scrolled {
  background:rgba(255,248,241,.92);
  box-shadow:0 1px 0 rgba(229,138,126,.15);
}

.brand small,
.hero-kicker,
.eyebrow,
.hero h1 .accent,
.hero-note,
.artist-subtitle,
.link-label {
  color:#d26f63;
}

.hero-kicker::before,
.eyebrow::before,
.nav a::after,
.hero-link::after,
.artist-link::after {
  background:#e58a7e;
}

.hero h1 .accent::after {
  background:#f8dad1;
}

.hero-disc {
  background:linear-gradient(145deg,#fdf1e8,#fbe5d9);
  box-shadow:0 26px 60px rgba(210,111,99,.18);
}

.hero-orbit {
  border-color:rgba(229,138,126,.18);
}

.hero-orbit::before {
  background:#e58a7e;
  box-shadow:0 0 0 10px rgba(229,138,126,.18);
}

.hero-orbit::after {
  background:#9cba94;
  box-shadow:0 0 0 8px rgba(156,186,148,.18);
}

.origin-image,
.artist-image-wrap {
  background:#fbe5d9;
  box-shadow:0 16px 40px rgba(210,111,99,.14);
}

.about-number,
.artist-label,
.donor-link span,
.donor-link::after {
  color:#e58a7e;
}

.vol-section {
  background:linear-gradient(145deg,#e58a7e,#d26f63);
  color:#fff;
}

.vol-panel {
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.30);
}

.links-section {
  background:rgba(156,186,148,.20);
}

.link-card,
.donor-link {
  background:rgba(255,255,255,.82);
  border-color:rgba(248,218,209,.70);
}

.link-card::before {
  background:#fbe5d9;
}

.site-footer {
  background:linear-gradient(160deg,#fff3ea,#fbe5d9);
  color:#4a3a35;
  border-top:1px solid rgba(229,138,126,.18);
}

.site-footer .footer-inner > div:first-child {
  color:#5f4d47;
}

.site-footer .footer-inner strong {
  color:#d26f63;
}

.copyright {
  color:#937f76;
  border-top-color:rgba(229,138,126,.18);
}
