@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=M+PLUS+Rounded+1c:wght@400;500&family=Outfit:wght@300;400;500;600;700&family=Yomogi&display=swap");

:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --color-bg: #f2fcf5;
  --color-section-alt: #e8f7ee;
  --color-primary: #2eaf6e;
  --color-primary-light: #c8f0da;
  --color-primary-dark: #1f8b54;
  --color-accent: #f0c93a;
  --color-accent-light: #fdf7dc;
  --color-text: #132a1e;
  --color-text-muted: #4d7460;
  --color-border: #c5e8d2;
  --color-card: #ffffff;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Clover */
.clover {
  flex-shrink: 0;
  display: block;
}
.clover--spin {
  animation: spinSlow 8s linear infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46, 175, 110, 0.38);
}
.btn-sm {
  padding: 9px 22px;
  font-size: 13px;
}
.btn-md {
  padding: 12px 30px;
  font-size: 15px;
}
.btn-lg {
  padding: 16px 44px;
  font-size: 18px;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-light);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(240, 201, 58, 0.45);
}
.btn-accent:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(240, 201, 58, 0.55);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}
.btn-cta-final {
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: 9999px;
  padding: 18px 52px;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 10px 36px rgba(240, 201, 58, 0.45);
}
.btn-cta-final:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 48px rgba(240, 201, 58, 0.55);
}

.float-cta {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: 9999px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(240, 201, 58, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 40px rgba(240, 201, 58, 0.58);
}
@media (max-width: 768px) {
  .float-cta {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(19, 42, 30, 0.22);
  }
  .float-cta:hover {
    transform: none;
  }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

.section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.section-label span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
.section--alt {
  background: var(--color-section-alt);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title em {
  font-style: italic;
  color: var(--color-primary);
}
.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 64px;
  font-weight: 300;
  line-height: 1.8;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(242, 252, 245, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: opacity 0.4s, transform 0.4s;
}
.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lang-switch a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--color-primary);
}
.lang-sep {
  color: var(--color-border);
  font-weight: 500;
}
.nav a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:not(.btn):hover {
  color: var(--color-primary);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--color-text);
  line-height: 1;
}
.mobile-nav {
  display: none;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
  }
  .header-tools {
    margin-left: auto;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: clip-path;
}
.hero.is-bg .hero-bg {
  clip-path: circle(150% at 50% 50%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(19, 42, 30, 0.75) 0%, rgba(46, 175, 110, 0.55) 100%);
}
.hero-deco {
  position: absolute;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  transition: color 0.8s ease;
  margin-bottom: 28px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero.is-bg h1 {
  color: #fff;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
  transition: color 0.8s ease;
}
.hero.is-bg h1 em {
  color: var(--color-accent);
}
.hero-sub {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero.is-sub .hero-sub {
  opacity: 1;
  transform: translateY(0);
}
.hero-sub p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-weight: 300;
}
.hero-sub p + p {
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero.is-sub .scroll-hint {
  opacity: 0.65;
}
.scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: pulse 1.8s ease-in-out infinite;
}

/* About */
.about-lead {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.8;
  font-weight: 300;
}
.about-title {
  font-size: clamp(28px, 3.5vw, 46px);
}
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.use-card {
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.use-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.use-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.use-card .label {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}
.use-card .deco {
  position: absolute;
  bottom: -8px;
  right: -8px;
  pointer-events: none;
}

.deco-abs {
  position: absolute;
  pointer-events: none;
}

/* For who */
.for-who-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.for-who-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.3;
  text-align: left;
}
.for-who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.for-who-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.for-who-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(46, 175, 110, 0.14);
  transform: translateX(6px);
}
.for-who-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.for-who-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
  position: relative;
}
.for-who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.for-who-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 175, 110, 0.35), transparent);
}

@media (max-width: 768px) {
  .for-who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Preview */
.preview-section-lead {
  margin-bottom: 16px;
}
.preview-hide-note {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}
.preview-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.preview-tab {
  background: #fff;
  color: var(--color-text-muted);
  border: 2px solid var(--color-border);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.preview-tab.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.preview-pair {
  display: none;
}
.preview-grid--multi {
  align-items: start;
}
.preview-grid--multi .preview-single,
.preview-grid--multi #previewBrowser {
  display: none;
}
.preview-grid--multi .preview-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-column: 1 / -1;
}
.preview-grid--multi .preview-copy {
  grid-column: 1 / -1;
}
.preview-example {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.preview-example-label {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.preview-example .preview-live {
  margin-top: 0;
  align-self: center;
}
.browser {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
  background: #fff;
  border: 1px solid var(--color-border);
}
.browser-bar {
  background: #f5f5f5;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e0e0e0;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-r {
  background: #ff5f57;
}
.dot-y {
  background: #febc2e;
}
.dot-g {
  background: #28c840;
}
.browser-url {
  margin-left: 8px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: #888;
  flex: 1;
}
.browser-hero {
  padding: 32px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.browser-hero img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}
.browser-hero h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.browser-hero p {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 2px;
  color: #fff;
}
.browser-body {
  padding: 20px 24px;
}
.tag-pill {
  display: inline-block;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.browser-bio {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag-chip {
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}
.msg-btn {
  width: 100%;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.preview-copy {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--color-border);
}
.preview-copy h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.preview-copy > .preview-template-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}
.preview-copy > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}
.preview-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.preview-live {
  margin-top: 24px;
}
.browser.is-live {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.browser.is-live:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.16);
}
.browser-live-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.browser-site--portfolio {
  --bm-bg: #edf5ed;
  --bm-accent: #4f7f50;
  --bm-line: color-mix(in srgb, var(--bm-accent) 22%, var(--bm-bg));
  background: var(--bm-bg);
  padding: 20px 22px 24px;
  color: #1e2420;
}
.bm-head,
.bm-port {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.bm-head {
  margin-bottom: 16px;
}
.bm-port {
  margin-top: 8px;
  font-size: 24px;
}
.bm-identity {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.browser-site--portfolio .bm-identity img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bm-line);
  flex-shrink: 0;
}
.bm-identity h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.bm-identity p {
  font-size: 11px;
  color: var(--bm-accent);
  letter-spacing: 0.14em;
  margin: 4px 0 0;
}
.bm-rows {
  border-top: 1px solid var(--bm-line);
  margin-bottom: 12px;
}
.bm-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bm-line);
  font-size: 12px;
}
.bm-row span:first-child {
  color: var(--bm-accent);
  min-width: 40px;
}
.bm-row-value {
  color: #6a7a6a;
}
.browser-site--portfolio .browser-bio {
  color: #6a7a6a;
  font-size: 13px;
}
.browser-site--mate {
  --bm-bg: #fff4f7;
  --bm-ice: #fde4ee;
  --bm-accent: #e85a8c;
  --bm-pale: #fbcfe0;
  --bm-ink: #4a2436;
  --bm-muted: #8a6474;
  background:
    radial-gradient(220px 120px at 8% 0%, color-mix(in srgb, var(--bm-accent) 28%, transparent), transparent 60%),
    var(--bm-bg);
  padding: 14px 18px 20px;
  color: var(--bm-ink);
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
}
.browser-site--mate .bm-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.browser-site--mate .bm-motif {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: var(--bm-accent);
}
.browser-site--mate .bm-motif svg {
  width: 100%;
  height: 100%;
}
.browser-site--mate .bm-head,
.browser-site--mate .bm-port {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  color: var(--bm-ink);
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
}
.browser-site--mate .bm-identity {
  align-items: flex-start;
}
.bm-avatar {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.bm-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--bm-accent) 28%, transparent);
}
.bm-gem {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  color: var(--bm-accent);
  filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--bm-accent) 40%, transparent));
}
.bm-gem svg {
  width: 100%;
  height: 100%;
}
.browser-site--mate .bm-identity h3 {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.bm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.bm-pills span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bm-ice);
  color: var(--bm-accent);
  font-size: 10px;
  font-weight: 500;
}
.bm-label {
  margin: 0 0 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--bm-accent);
}
.bm-sheet {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--bm-accent) 12%, transparent);
  overflow: hidden;
  margin-bottom: 10px;
}
.browser-site--mate .bm-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px dashed var(--bm-pale);
  font-size: 12px;
}
.browser-site--mate .bm-row:last-child {
  border-bottom: none;
}
.browser-site--mate .bm-row span:first-child {
  color: var(--bm-accent);
  min-width: 0;
  font-size: 11px;
}
.browser-site--mate .bm-row-value {
  color: var(--bm-ink);
}
.browser-site--mate .browser-bio {
  color: var(--bm-muted);
  font-size: 12px;
  margin-bottom: 12px;
}
.bm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.bm-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--bm-accent) 12%, transparent);
  min-width: 0;
  flex: 1;
}
.bm-chip-label {
  font-size: 10px;
  color: var(--bm-accent);
  letter-spacing: 0.06em;
}
.bm-chip-value {
  font-size: 11px;
  color: var(--bm-ink);
}
.browser-site--mate .tag-row {
  margin-bottom: 8px;
}
.browser-site--mate .tag-chip {
  background: #fff;
  color: var(--bm-accent);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--bm-accent) 10%, transparent);
}
.browser-site--sheet {
  background: linear-gradient(135deg, #fff0f5 0%, #f3e5f5 40%, #fff9c4 100%);
  padding: 14px 16px 18px;
  color: #555;
  text-align: center;
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
}
.bs-ribbon {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff69b4, #c9b8f5);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.bs-title {
  margin: 0;
  font-family: "Yomogi", "M PLUS Rounded 1c", cursive;
  font-size: 22px;
  font-weight: 700;
  color: #ff69b4;
  text-shadow: 2px 2px 0 #c9b8f5;
}
.bs-sub {
  margin: 4px 0 12px;
  color: #f472b6;
  font-size: 11px;
  font-family: "Yomogi", cursive;
}
.bs-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.18);
  text-align: left;
}
.bs-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.bs-identity img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid #ff69b4;
  box-shadow: 0 0 0 2px #c9b8f5;
  flex-shrink: 0;
}
.bs-nick-label {
  margin: 0 0 2px;
  font-size: 10px;
  color: #ff69b4;
  font-family: "Yomogi", cursive;
}
.bs-nick {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ff69b4;
  font-family: "Yomogi", cursive;
}
.bs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.bs-pills span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff0f5;
  color: #ff69b4;
  font-size: 10px;
  font-weight: 600;
}
.bs-sheet {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #fff7fb;
}
.bs-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 6px;
  padding: 6px 10px;
  font-size: 12px;
  border-bottom: 1px dashed #fbcfe8;
}
.bs-row:last-child {
  border-bottom: none;
}
.bs-row-label {
  color: #f472b6;
  font-size: 11px;
}
.bs-row-value {
  color: #4a2436;
}
.bs-bio {
  margin: 0 0 8px;
  font-size: 12px;
  color: #8a6474;
}
.bs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.bs-chip {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fce7f3;
  color: #db2777;
  font-size: 10px;
}
.bs-foot {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: #ff69b4;
  font-family: "Yomogi", cursive;
}

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .preview-grid--multi .preview-pair {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step-wrap {
  position: relative;
}
.step-connector {
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
  z-index: 1;
}
.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(46, 175, 110, 0.15);
  border-color: var(--color-primary);
}
.step-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border-radius: 9999px;
  padding: 4px 12px;
}
.step-icon {
  font-size: 28px;
}
.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 300;
}
.flow-note {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
  border-radius: 20px;
  padding: 24px 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flow-note p {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
}

/* Pricing */
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: #fff;
  color: var(--color-text);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform 0.22s;
  overflow: hidden;
}
.plan:hover {
  transform: translateY(-5px);
}
.plan.is-popular {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 28px;
  border: none;
  box-shadow: 0 24px 56px rgba(46, 175, 110, 0.3);
}
.plan-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: 9999px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
}
.plan-duration {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.55;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan.is-popular .plan-duration {
  opacity: 0.85;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.plan-month {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 28px;
}
.plan ul {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.plan-cta {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.plan-cta:hover {
  opacity: 0.85;
}
.plan.is-popular .plan-cta {
  background: var(--color-accent);
  color: var(--color-text);
}
.plan-original {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 8px 48px;
  align-items: center;
}
.plan-original .plan-cta {
  width: 100%;
}
.plan-discount {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin: 0 0 24px;
  background: var(--color-primary-light);
  padding: 10px 14px;
  border-radius: 12px;
}
.plan-original ul {
  margin-bottom: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 20px;
  color: var(--color-text-muted);
  font-weight: 300;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .plan-original {
    grid-template-columns: 1fr;
  }
  .plan-original ul {
    margin-bottom: 28px;
  }
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
}
.feature-card.is-featured {
  background: linear-gradient(135deg, var(--color-primary), #45c986);
  color: #fff;
  border: none;
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--color-text-muted);
}
.feature-card.is-featured p {
  color: rgba(255, 255, 255, 0.88);
}

/* FAQ */
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open {
  border-color: var(--color-primary);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.faq-q span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
}
.faq-plus {
  color: var(--color-primary);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  display: inline-block;
  font-weight: 300;
  line-height: 1;
}
.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 300;
  animation: fadeUp 0.25s ease both;
}
.faq-item.is-open .faq-a {
  display: block;
}

/* Final CTA */
.final-cta {
  padding: 130px 24px;
  background: linear-gradient(140deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #5dd99a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.final-cta h2 em {
  font-style: italic;
}
.final-inner > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}
.final-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-form {
  text-align: left;
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  color: var(--color-text);
}
.inquiry-form [hidden] {
  display: none !important;
}
.inquiry-note {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 300;
}
.inquiry-example {
  margin: 0 0 24px;
  padding: 16px;
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}
.inquiry-example-caption {
  margin: 0 0 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
.inquiry-example .browser {
  max-width: 420px;
  margin: 0 auto;
}
.inquiry-example .preview-live {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 12px auto 0;
  padding-left: 20px;
  padding-right: 20px;
}
.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.inquiry-field label,
.inquiry-legend {
  font-size: 13px;
  font-weight: 600;
}
.inquiry-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 6px;
}
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
}
.inquiry-field textarea {
  min-height: 110px;
  resize: vertical;
}
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.inquiry-field.is-invalid input,
.inquiry-field.is-invalid select,
.inquiry-field.is-invalid textarea,
.inquiry-fieldset.is-invalid .inquiry-choice-item,
.inquiry-fieldset.is-invalid .inquiry-plan,
.inquiry-fieldset.is-invalid .inquiry-bullet-row input {
  border-color: #b42318;
}
.inquiry-error {
  font-size: 12px;
  color: #b42318;
  margin: 8px 0 0;
  line-height: 1.5;
}
.inquiry-field select optgroup {
  font-weight: 700;
  font-style: normal;
}
.inquiry-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.inquiry-slot {
  padding: 12px 14px 4px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.inquiry-slot .inquiry-field {
  margin-bottom: 12px;
}
.inquiry-legend {
  margin-bottom: 8px;
}
.inquiry-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
@media (min-width: 800px) {
  .inquiry-plans {
    grid-template-columns: repeat(4, 1fr);
  }
}
.inquiry-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 8px 14px;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  background: #fff;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.inquiry-plan input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.inquiry-plan:hover,
.inquiry-plan:has(input:focus-visible) {
  border-color: var(--color-primary);
}
.inquiry-plan:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-section-alt);
  box-shadow: 0 8px 20px rgba(46, 175, 110, 0.12);
}
.inquiry-plan-badge {
  position: absolute;
  top: -9px;
  right: 10px;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
}
.inquiry-plan-duration {
  font-size: 13px;
  font-weight: 700;
}
.inquiry-plan-price {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.inquiry-plan-month {
  font-size: 11px;
  color: var(--color-text-muted);
}
.inquiry-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.inquiry-choice-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
}
.inquiry-choice-item:hover,
.inquiry-choice-item:has(input:focus-visible) {
  border-color: var(--color-primary);
}
.inquiry-choice-item:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-section-alt);
}
.inquiry-choice-item input {
  accent-color: var(--color-primary);
}
@media (max-width: 640px) {
  .inquiry-choice {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .inquiry-plans {
    grid-template-columns: 1fr;
  }
}
.inquiry-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inquiry-bullet-row {
  display: flex;
  gap: 8px;
}
.inquiry-bullet-row input {
  flex: 1;
}
.inquiry-bullet-remove,
.inquiry-add {
  border: 1px solid var(--color-border);
  background: var(--color-section-alt);
  color: var(--color-primary-dark);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.inquiry-add {
  margin-top: 8px;
}
.inquiry-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.inquiry-file-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}
.inquiry-file-over {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.inquiry-status {
  font-size: 13px;
  color: #b42318;
  margin: 8px 0 16px;
}
.inquiry-status.is-ok {
  color: var(--color-primary-dark);
}
.inquiry-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.inquiry-submit-note {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 8px 0 16px;
  font-weight: 300;
  text-align: left;
}
.inquiry-submit-note a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
}
.inquiry-form .btn-cta-final {
  display: block;
  margin: 8px auto 0;
}
.inquiry-form .btn-cta-final:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 640px) {
  .inquiry-form {
    padding: 20px 16px 24px;
  }
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.55);
  padding: 48px 24px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
}
.site-footer .copy {
  font-size: 12px;
}
.footer-links a:hover {
  color: #fff;
}

/* Legal pages */
body.is-legal {
  padding-top: var(--header-h);
}
body.is-legal .site-header {
  opacity: 1;
  transform: none;
}
.legal-hero {
  padding: 72px 24px 40px;
  background: var(--color-section-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.legal-hero .updated {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 300;
}
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 110px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.legal-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text-muted);
  border: 2px solid var(--color-border);
  background: #fff;
  border-radius: 9999px;
  padding: 8px 16px;
  transition: all 0.2s;
}
.legal-nav a:hover,
.legal-nav a.is-current {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.legal-doc {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 36px 32px;
}
.legal-doc h2 {
  font-size: 18px;
  margin: 32px 0 12px;
  color: var(--color-text);
}
.legal-doc h2:first-child {
  margin-top: 0;
}
.legal-doc p,
.legal-doc li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 400;
}
.legal-doc p + p {
  margin-top: 12px;
}
.legal-doc ol,
.legal-doc ul {
  margin: 8px 0 0 1.2em;
}
.legal-doc li + li {
  margin-top: 4px;
}
.legal-doc .lead {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.placeholder {
  display: inline-block;
  background: var(--color-accent-light);
  border: 1px dashed var(--color-accent);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.tokusho-table {
  width: 100%;
  border-collapse: collapse;
}
.tokusho-table tr {
  border-bottom: 1px solid var(--color-border);
}
.tokusho-table th,
.tokusho-table td {
  padding: 16px 0;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.8;
}
.tokusho-table th {
  width: 34%;
  padding-right: 16px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-body);
}
.tokusho-table td {
  color: var(--color-text);
}
.tokusho-table ul {
  margin: 0 0 0 1.1em;
}
@media (max-width: 640px) {
  .legal-doc {
    padding: 24px 18px;
  }
  .tokusho-table,
  .tokusho-table tbody,
  .tokusho-table tr,
  .tokusho-table th,
  .tokusho-table td {
    display: block;
    width: 100%;
  }
  .tokusho-table tr {
    padding: 12px 0;
  }
  .tokusho-table th {
    padding: 0 0 4px;
  }
  .tokusho-table td {
    padding: 0 0 8px;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.45s;
}
.reveal-delay-5 {
  transition-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}
@keyframes floatY2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-6deg);
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.07);
  }
}
