:root {
  --main: #F2CA50;
  --sub1: #F2B84B;
  --sub2: #D96523;
  --sub3: #A63D17;
  --txt: #0D0D0D;
  --cream: #FFFDF0;
  --cream-dark: #FFF8DC;
  --ly: #FFF3C4;
  --bd: #1A0E05;
  --bm: #5C3010;
  --bc: rgba(242, 202, 80, 0.4);
  --sc: rgba(166, 61, 23, 0.14);
  --w: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  background: var(--cream);
  color: var(--txt);
  overflow-x: hidden;
}

/* PARTICLES */
.ptw {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.pt {
  position: absolute;
  top: -20px;
  border-radius: 150% 0 150% 0;
  opacity: 0;
  animation: ptFall linear infinite;
}

@keyframes ptFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: .5;
  }

  90% {
    opacity: .25;
  }

  100% {
    transform: translateY(110vh) rotate(680deg) translateX(50px);
    opacity: 0;
  }
}

/* HEADER */
.sh {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255, 253, 240, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--main);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.logo-ja {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--sub2), var(--sub3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .1em;
  position: relative;
}

.logo-ja::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--sub2), var(--main), transparent);
  border-radius: 1px;
}

.logo-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: .65rem;
  color: var(--sub3);
  letter-spacing: .14em;
  opacity: .7;
}

.snav {
  display: flex;
  gap: 26px;
  list-style: none;
}

.snav a {
  font-size: .78rem;
  color: var(--bm);
  text-decoration: none;
  letter-spacing: .08em;
  font-family: 'Noto Serif JP', serif;
  transition: color .2s;
}

.snav a:hover {
  color: var(--sub2);
}

.hso {
  display: flex;
  gap: 8px;
}

.hso a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ly);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub2);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  border: 1.5px solid var(--main);
  transition: all .2s;
}

.hso a:hover {
  background: var(--sub2);
  color: var(--w);
  border-color: var(--sub2);
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hbg span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sub2);
  border-radius: 2px;
  transition: all .3s;
}

.hbg.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hbg.open span:nth-child(2) {
  opacity: 0;
}

.hbg.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mmenu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(255, 253, 240, .98);
  border-bottom: 2px solid var(--main);
  padding: 20px 24px 24px;
  flex-direction: column;
}

.mmenu.open {
  display: flex;
}

.mmenu a {
  display: block;
  padding: 14px 0;
  font-family: 'Noto Serif JP', serif;
  font-size: .9rem;
  color: var(--txt);
  text-decoration: none;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--bc);
  transition: color .2s;
}

.mmenu a:hover {
  color: var(--sub2);
}

.mso {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mso a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ly);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub2);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.hbg2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 65% 35%, rgba(242, 202, 80, .4) 0%, transparent 68%), radial-gradient(ellipse 45% 70% at 15% 85%, rgba(217, 101, 35, .15) 0%, transparent 55%), linear-gradient(155deg, #FFFDF0 0%, #FFF8DC 45%, #FFF3A8 75%, #FFFBCC 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.o1 {
  width: 460px;
  height: 460px;
  background: rgba(242, 202, 80, .28);
  top: -90px;
  right: -90px;
  animation: oF 10s ease-in-out infinite;
}

.o2 {
  width: 260px;
  height: 260px;
  background: rgba(217, 101, 35, .16);
  bottom: 80px;
  left: 3%;
  animation: oF 12s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes oF {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-26px);
  }
}

.hi {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  padding: 40px 48px;
}

.ht {
  flex: 1;
  min-width: 0;
  animation: fU 1s ease both;
}

@keyframes fU {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.htag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .88rem;
  color: var(--sub3);
  letter-spacing: .22em;
  margin-bottom: 10px;
}

.hn {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--txt);
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: .08em;
}

.hne {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .95rem;
  color: var(--sub2);
  letter-spacing: .22em;
  font-weight: 500;
  margin-bottom: 20px;
}

.hl {
  font-size: .92rem;
  line-height: 2.1;
  color: var(--bm);
  margin-bottom: 32px;
  max-width: 360px;
}

.hcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--sub1), var(--sub2));
  color: var(--w);
  border-radius: 40px;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .14em;
  font-family: 'Noto Serif JP', serif;
  box-shadow: 0 8px 24px rgba(166, 61, 23, .28);
  transition: all .3s;
}

.hcta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(166, 61, 23, .38);
}

.hv {
  flex: 0 0 380px;
  position: relative;
  animation: fR 1s .2s ease both;
}

@keyframes fR {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hrng {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hrng:nth-child(1) {
  inset: -20px;
  border: 1.5px dashed rgba(242, 184, 75, .35);
  animation: spin 24s linear infinite;
}

.hrng:nth-child(2) {
  inset: -44px;
  border: 1px solid rgba(217, 101, 35, .2);
  animation: spin 36s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hfr {
  width: 340px;
  height: 440px;
  border-radius: 50% 50% 46% 54%/60% 60% 40% 40%;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8CC 0%, #F2CA50 45%, #D96523 100%);
  box-shadow: 0 24px 64px rgba(166, 61, 23, .24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(166, 61, 23, .25);
}

.hfr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hbdg {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: var(--w);
  border-radius: 30px;
  padding: 8px 18px;
  box-shadow: 0 8px 24px var(--sc);
  white-space: nowrap;
}

.hbdg a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ly);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub2);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  transition: all .2s;
}

.hbdg a:hover {
  background: var(--sub2);
  color: var(--w);
  transform: scale(1.1);
}

/* SECTION COMMON */
section {
  position: relative;
  z-index: 2;
}

.si {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.sh2 {
  text-align: center;
  margin-bottom: 48px;
}

.sl {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .76rem;
  color: var(--sub3);
  letter-spacing: .3em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.st {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--txt);
  letter-spacing: .08em;
  display: inline-block;
}

.st::after {
  content: '';
  display: block;
  width: 34px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--main), transparent);
  margin: 8px auto 0;
}

/* SAMPLE VOICE */
.vs {
  padding: 88px 0;
  background: var(--w);
}

.vtabs {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid var(--ly);
  margin-bottom: 40px;
}

.vt {
  padding: 11px 36px;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  font-family: 'Noto Serif JP', serif;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--bm);
  cursor: pointer;
  transition: all .2s;
}

.vt:hover {
  color: var(--sub2);
}

.vt.active {
  color: var(--sub2);
  border-bottom-color: var(--sub2);
  font-weight: 700;
}

.vp {
  display: none;
}

.vp.active {
  display: block;
  animation: fIn .35s ease;
}

@keyframes fIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vc {
  background: var(--cream);
  border: 1.5px solid var(--bc);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .3s;
}

.vc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--sc);
  border-color: var(--main);
}

.vct {
  font-size: .9rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: .06em;
}

.vcd {
  font-size: .78rem;
  color: #666;
  line-height: 1.85;
  flex: 1;
}

.vc-credit {
  font-size: .68rem;
  color: var(--sub3);
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid var(--bc);
  padding-top: 10px;
  margin-top: 2px;
  line-height: 1.5;
}

.vc-credit i {
  font-size: .6rem;
  opacity: .7;
  flex-shrink: 0;
}

.vc-credit a {
  color: var(--sub2);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 101, 35, .3);
  transition: border-color .2s;
}

.vc-credit a:hover {
  border-bottom-color: var(--sub2);
}

.vc-credit-note {
  margin-top: 20px;
  text-align: center;
  font-size: .75rem;
  color: #999;
  line-height: 1.8;
}

.vc-credit-note a {
  color: var(--sub2);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 101, 35, .3);
  transition: border-color .2s;
}

.vc-credit-note a:hover {
  border-bottom-color: var(--sub2);
}

/* WAVEFORM */
.wf {
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--ly), var(--main));
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 8px;
}

.wb {
  flex: 1;
  border-radius: 3px;
  background: var(--sub2);
  transform-origin: center;
  /* animation は JS で付与 */
}

@keyframes wvAnim {

  0%,
  100% {
    transform: scaleY(.15);
    opacity: .18;
  }

  50% {
    transform: scaleY(1);
    opacity: .85;
  }
}

.pb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 22px;
  width: fit-content;
  background: linear-gradient(135deg, var(--main), var(--sub2));
  border: none;
  border-radius: 30px;
  cursor: pointer;
  color: var(--w);
  font-size: .78rem;
  letter-spacing: .1em;
  font-family: 'Noto Serif JP', serif;
  transition: all .3s;
}

.pb:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px var(--sc);
}

.pb.playing {
  background: linear-gradient(135deg, #888, #444);
}

/* PROFILE */
.prs {
  padding: 88px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.pri {
  display: flex;
  gap: 60px;
  align-items: center;
}

.pimg {
  flex: 0 0 280px;
  width: 280px;
  height: 360px;
  border-radius: 40% 60% 55% 45%/50% 50% 50% 50%;
  overflow: hidden;
  background: linear-gradient(140deg, #FFF8CC, #F2CA50, #D96523);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  box-shadow: 0 18px 55px rgba(166, 61, 23, .22);
  position: relative;
  flex-shrink: 0;
}

.pimg::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, .5);
  z-index: 1;
  pointer-events: none;
}

.pimg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.pb2 {
  flex: 1;
  min-width: 0;
}

.pen {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  color: var(--sub3);
  letter-spacing: .18em;
  margin-bottom: 5px;
}

.pja {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--txt);
  letter-spacing: .1em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.ptx {
  font-size: .9rem;
  line-height: 2.2;
  color: var(--bm);
  margin-bottom: 26px;
  max-width: 460px;
}

.pmt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pmi {
  background: var(--w);
  border-radius: 10px;
  padding: 13px 16px;
  border: 1px solid var(--bc);
}

.pml {
  font-size: .65rem;
  color: var(--sub2);
  letter-spacing: .14em;
  margin-bottom: 3px;
  font-family: 'Playfair Display', serif;
}

.pmv {
  font-size: .87rem;
  font-weight: 700;
  color: var(--txt);
}

/* PRICING */
.pcs {
  padding: 88px 0;
  background: var(--w);
}

/* pricing tab card */
.ptab {
  border: 1.5px solid var(--bc);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow .3s;
}

.ptab:hover {
  box-shadow: 0 12px 36px var(--sc);
}

.ptab-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--main), var(--sub1));
}

.ptab-head-chara {
  background: linear-gradient(135deg, var(--sub1), var(--sub2));
}

.ptab-icon {
  font-size: 1.6rem;
  color: var(--bd);
  opacity: .85;
}

.ptab-en {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .72rem;
  color: rgba(26, 14, 5, .65);
  letter-spacing: .2em;
  margin-bottom: 2px;
}

.ptab-ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--bd);
  letter-spacing: .06em;
}

.ptab-sub {
  font-size: .68rem;
  color: rgba(26, 14, 5, .55);
  margin-top: 2px;
  letter-spacing: .08em;
}

.ptab-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ptab-col {
  padding: 24px 28px;
}

.ptab-col:first-child {
  border-right: 1px solid var(--bc);
}

.ptab-section-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--sub2);
  letter-spacing: .1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ptab-section-label i {
  font-size: .65rem;
}

.ptab-note-inline {
  font-size: .64rem;
  font-weight: 400;
  color: #aaa;
  margin-left: 6px;
  letter-spacing: .05em;
}

.ptab-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ptab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 12px;
  border: 1.5px solid rgba(242, 202, 80, .35);
}

.ptab-row.plan-row {
  background: linear-gradient(135deg, rgba(255, 253, 240, 1), rgba(255, 248, 220, 1));
  border-color: var(--main);
  padding: 18px 22px;
}

.ptab-item {
  font-size: .82rem;
  color: var(--bm);
  line-height: 1.5;
  flex: 1;
}

.ptab-row.plan-row .ptab-item {
  font-size: .92rem;
  font-weight: 600;
  color: var(--txt);
}

.ptab-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sub2);
  white-space: nowrap;
  letter-spacing: .04em;
}

.ptab-row.plan-row .ptab-price {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--sub2);
}

.ptab-add {
  color: var(--sub3);
  font-size: .9rem;
}

.pn {
  background: var(--ly);
  border-radius: 14px;
  padding: 22px 26px;
  border-left: 4px solid var(--sub1);
}

.pn p {
  font-size: .82rem;
  line-height: 2.1;
  color: var(--bm);
}

.pn p+p {
  margin-top: 3px;
}

/* CONTACT */
.cs {
  padding: 88px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.cc {
  max-width: 680px;
  margin: 0 auto;
  background: var(--w);
  border-radius: 24px;
  padding: 50px 46px;
  box-shadow: 0 18px 56px var(--sc);
  border: 1.5px solid var(--bc);
}

.cld {
  text-align: center;
  font-size: .87rem;
  line-height: 2.15;
  color: var(--bm);
  margin-bottom: 34px;
}

.fr {
  margin-bottom: 20px;
}

.fl {
  display: block;
  font-size: .76rem;
  color: var(--bm);
  letter-spacing: .1em;
  margin-bottom: 6px;
  font-family: 'Noto Serif JP', serif;
}

.rq {
  color: var(--sub2);
  font-size: .67rem;
  margin-left: 5px;
}

.fi,
.fta {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--bc);
  border-radius: 10px;
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: .87rem;
  color: var(--txt);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
}

.fi:focus,
.fta:focus {
  border-color: var(--sub1);
  background: var(--w);
}

.fta {
  height: 140px;
  resize: vertical;
}

/* カスタム select */
.fse-wrap {
  position: relative;
}

.fse {
  width: 100%;
  padding: 11px 40px 11px 15px;
  border: 1.5px solid var(--bc);
  border-radius: 10px;
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: .87rem;
  color: var(--txt);
  background: var(--cream);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color .2s, background .2s;
}

.fse:focus {
  border-color: var(--sub1);
  background: var(--w);
}

.fse-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sub2);
  font-size: .82rem;
  pointer-events: none;
}

.f2c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sb {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--sub1), var(--sub2));
  border: none;
  border-radius: 40px;
  color: var(--w);
  cursor: pointer;
  font-size: .87rem;
  letter-spacing: .15em;
  font-family: 'Noto Serif JP', serif;
  box-shadow: 0 8px 22px rgba(166, 61, 23, .26);
  transition: all .3s;
}

.sb:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(166, 61, 23, .38);
}

.fn {
  font-size: .73rem;
  color: #999;
  text-align: center;
  margin-top: 14px;
  line-height: 1.95;
}

.fn a {
  color: var(--sub2);
  text-decoration: underline;
}

/* WORKS */
.ws {
  padding: 88px 0;
  background: var(--w);
}

.wg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.wc {
  border: 1.5px solid var(--bc);
  border-radius: 14px;
  padding: 22px;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--w);
}

.wc::after {
  content: '詳細を見る →';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--main), var(--sub1));
  color: var(--bd);
  font-size: .72rem;
  letter-spacing: .1em;
  font-family: 'Noto Serif JP', serif;
  padding: 8px;
  text-align: center;
  transform: translateY(100%);
  transition: transform .28s ease;
}

.wc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px var(--sc);
  border-color: var(--main);
}

.wc:hover::after {
  transform: translateY(0);
}

.wm {
  font-family: 'Playfair Display', serif;
  font-size: .72rem;
  color: var(--sub3);
  letter-spacing: .18em;
  margin-bottom: 7px;
}

.wti {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 9px;
  color: var(--txt);
}

.wtg {
  font-size: .67rem;
  color: var(--sub2);
  background: var(--ly);
  padding: 2px 11px;
  border-radius: 10px;
  display: inline-block;
}

.va {
  text-align: center;
}

.vab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  border: 2px solid var(--main);
  border-radius: 40px;
  color: var(--sub2);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .15em;
  font-family: 'Noto Serif JP', serif;
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}

.vab:hover {
  background: var(--main);
  color: var(--bd);
}

/* MODAL */
.mo {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 14, 5, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mo.open {
  display: flex;
}

.mb {
  background: var(--w);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(26, 14, 5, .35);
  animation: mIn .3s ease;
}

@keyframes mIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mhero {
  height: 220px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, var(--ly), var(--main), var(--sub1));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.mhd {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .25), transparent 60%);
}

.mhero-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(166, 61, 23, .28));
}

.mbd {
  padding: 32px 36px 36px;
}

.mtr {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mtg {
  font-size: .68rem;
  padding: 3px 13px;
  border-radius: 20px;
  background: var(--ly);
  color: var(--sub2);
  font-family: 'Noto Serif JP', serif;
  letter-spacing: .1em;
}

.mdt {
  font-family: 'Playfair Display', serif;
  font-size: .76rem;
  color: var(--sub3);
  letter-spacing: .16em;
  margin-bottom: 10px;
}

.mtt {
  font-family: 'Zen Old Mincho', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--txt);
  margin-bottom: 20px;
  line-height: 1.4;
}

.mdv {
  height: 1px;
  background: var(--bc);
  margin-bottom: 20px;
}

.msl {
  font-size: .68rem;
  color: var(--sub3);
  letter-spacing: .2em;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 6px;
}

.mds {
  font-size: .87rem;
  line-height: 2;
  color: var(--bm);
  margin-bottom: 20px;
}

.mmg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mmi {
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid var(--bc);
}

.mml {
  font-size: .63rem;
  color: var(--sub2);
  letter-spacing: .14em;
  font-family: 'Playfair Display', serif;
  margin-bottom: 3px;
}

.mmv {
  font-size: .85rem;
  font-weight: 700;
  color: var(--txt);
}

.mcl {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bm);
  transition: all .2s;
  z-index: 10;
}

.mcl:hover {
  background: var(--sub2);
  color: var(--w);
}

/* WORKS ALL */
.wa {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--cream);
  overflow-y: auto;
}

.wa.open {
  display: block;
}

.wai {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px 80px;
}

.wah {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.wat {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--txt);
}

.wat span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .85rem;
  color: var(--sub3);
  letter-spacing: .25em;
  display: block;
  margin-bottom: 4px;
}

.wac {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1.5px solid var(--main);
  border-radius: 40px;
  background: none;
  cursor: pointer;
  color: var(--sub2);
  font-family: 'Noto Serif JP', serif;
  font-size: .8rem;
  letter-spacing: .1em;
  transition: all .2s;
}

.wac:hover {
  background: var(--main);
  color: var(--bd);
}

.waf {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.fb {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--bc);
  background: none;
  font-family: 'Noto Serif JP', serif;
  font-size: .75rem;
  color: var(--bm);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .06em;
}

.fb:hover,
.fb.active {
  background: var(--main);
  border-color: var(--main);
  color: var(--bd);
}

.wag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* FOOTER */
.sf {
  background: var(--bd);
  color: rgba(255, 255, 255, .72);
  padding: 56px 0 28px;
}

.fi2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.ft {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fbn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--w);
  margin-bottom: 3px;
  letter-spacing: .1em;
}

.fbe {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: .72rem;
  color: var(--main);
  letter-spacing: .16em;
  margin-bottom: 12px;
  opacity: .85;
}

.ftg {
  font-size: .77rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

.fso {
  display: flex;
  gap: 9px;
}

.fso a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  transition: all .2s;
}

.fso a:hover {
  background: var(--sub2);
  border-color: var(--sub2);
  color: var(--w);
}

.fct {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .68rem;
  color: var(--main);
  letter-spacing: .2em;
  margin-bottom: 13px;
}

.fll {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fll a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .79rem;
  letter-spacing: .05em;
  transition: color .2s;
}

.fll a:hover {
  color: var(--main);
}

.fll-plain li {
  color: rgba(255, 255, 255, .55);
  font-size: .79rem;
  letter-spacing: .05em;
}

.fb2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fle {
  display: flex;
  gap: 18px;
}

.fle a {
  color: rgba(255, 255, 255, .32);
  text-decoration: none;
  font-size: .68rem;
  transition: color .2s;
}

.fle a:hover {
  color: rgba(255, 255, 255, .65);
}

.fcp {
  font-size: .68rem;
  color: rgba(255, 255, 255, .28);
  font-family: 'Playfair Display', serif;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  background: var(--bd);
  color: var(--w);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: .79rem;
  letter-spacing: .07em;
  opacity: 0;
  transition: all .35s;
  z-index: 9999;
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .si,
  .sh,
  .fi2 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hi {
    padding: 40px 32px;
    gap: 40px;
  }

  .hv {
    flex: 0 0 300px;
  }

  .hfr {
    width: 280px;
    height: 360px;
  }

  .wai {
    padding: 100px 32px 60px;
  }
}

@media(max-width:768px) {
  .sh {
    padding: 0 20px;
  }

  .snav,
  .hso {
    display: none;
  }

  .hbg {
    display: flex;
  }

  .hi {
    flex-direction: column-reverse;
    padding: 40px 20px 60px;
    gap: 32px;
    text-align: center;
  }

  .hv {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hfr {
    width: 240px;
    height: 300px;
    font-size: 3.5rem;
  }

  .hrng:nth-child(1) {
    inset: -14px;
  }

  .hrng:nth-child(2) {
    inset: -34px;
  }

  .hl {
    margin: 0 auto 28px;
  }

  .hcta {
    margin: 0 auto;
  }

  .si {
    padding: 0 20px;
  }

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

  .vt {
    padding: 11px 20px;
    font-size: .8rem;
  }

  .pri {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ptx {
    margin: 0 auto 26px;
  }

  .ptab-body {
    grid-template-columns: 1fr;
  }

  .ptab-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--bc);
  }

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

  .cc {
    padding: 32px 20px;
  }

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

  .wg,
  .wag {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .wai {
    padding: 80px 20px 60px;
  }

  .wah {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .fi2 {
    padding: 0 20px;
  }

  .ft {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fb2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mbd {
    padding: 24px 20px 28px;
  }

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

@media(max-width:480px) {
  .hfr {
    width: 200px;
    height: 260px;
    font-size: 3rem;
  }

  .vt {
    padding: 10px 14px;
    font-size: .75rem;
  }

  .wg,
  .wag {
    grid-template-columns: 1fr;
  }

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

  .st {
    font-size: 1.5rem;
  }

  .hn {
    font-size: 2.2rem;
  }

  .wat {
    font-size: 1.5rem;
  }
}