/* A'noA合同会社 LP V4 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
:root {
  --red: #C8102E; --red-dark: #A50D26; --red-light: #FFE8EC;
  --tq: #00B7B7; --tq-dark: #008B8B; --tq-light: #E0F7F7;
  --gold: #B89B5E; --gold-dark: #8B7244;
  --cream: #FFF8EA; --dark: #1A1A1A;
  --gray: #555; --gray-l: #999; --lg: #EFEFEF;
  --white: #FFF; --bg: #FAFAF7; --bg-d: #1F1F1F;
  --font: -apple-system, BlinkMacSystemFont, "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --max: 1140px; --pad: 100px 0;
  --sh-s: 0 2px 8px rgba(0,0,0,.04);
  --sh-m: 0 8px 24px rgba(0,0,0,.08);
  --sh-l: 0 16px 48px rgba(0,0,0,.12);
  --sh-r: 0 8px 32px rgba(200,16,46,.25);
  --sh-t: 0 8px 32px rgba(0,183,183,.25);
  --r: 12px; --rl: 20px; --rx: 32px;
  --gw: linear-gradient(135deg,#FFF8EA 0%,#FFE8D6 50%,#FFE8EC 100%);
  --gr: linear-gradient(135deg,#C8102E 0%,#A50D26 100%);
  --gt: linear-gradient(135deg,#00B7B7 0%,#008B8B 100%);
  --gg: linear-gradient(135deg,#B89B5E 0%,#8B7244 100%);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.9; background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; font-size: 18px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all .2s; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; padding: 6px 16px; background: var(--red-light); color: var(--red); border-radius: 24px; font-size: 12px; font-weight: 700; letter-spacing: .15em; margin-bottom: 16px; text-transform: uppercase; }
.accent { color: var(--red); font-weight: 700; }
.accent-big { color: var(--red); font-weight: 700; font-size: 19px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,.06); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; }
.logo { display: flex; align-items: baseline; gap: 8px; }
.logo-mark { font-size: 28px; font-weight: 700; color: var(--red); }
.logo-sub { font-size: 14px; color: var(--gray); }
.logo-sub-pre { font-size: 14px; color: var(--gray); margin-right: 4px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 16px; color: var(--dark); font-weight: 500; }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 10px 22px; border-radius: 24px; font-weight: 600; box-shadow: var(--sh-r); }
.nav-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* HERO */
.hero { padding: 100px 0 80px; background: var(--gw); text-align: center; position: relative; overflow: hidden; }
.hero-shape-1, .hero-shape-2 { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-1 { top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,183,183,.12) 0%, transparent 70%); }
.hero-shape-2 { bottom: -150px; left: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,16,46,.08) 0%, transparent 70%); }
.hero .container { position: relative; z-index: 1; }
.hero-badge-top { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--white); border-radius: 24px; font-size: 16px; color: var(--gray); margin-bottom: 32px; box-shadow: var(--sh-s); font-weight: 600; }
.badge-dot { width: 8px; height: 8px; background: var(--tq); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.3); } }
.hero-subtitle { font-size: 22px; color: var(--gold); font-weight: 700; letter-spacing: .08em; margin-bottom: 28px; }
.hero-title { font-size: clamp(36px, 6vw, 64px); font-weight: 700; line-height: 1.25; margin-bottom: 32px; }
.hero-accent { color: var(--red); position: relative; display: inline-block; }
.hero-accent::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 14px; background: linear-gradient(90deg, transparent, rgba(184,155,94,.5), transparent); z-index: -1; }
.hero-tagline { font-size: clamp(16px, 2.2vw, 22px); margin-bottom: 48px; line-height: 1.8; }
.hero-tagline-sub { font-size: 17px; color: var(--gray); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 36px; border-radius: 32px; font-weight: 700; font-size: 18px; transition: all .3s; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gr); color: var(--white); box-shadow: var(--sh-r); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,16,46,.4); }
.btn-secondary { background: var(--white); color: var(--dark); border-color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }
.btn-large { padding: 20px 48px; font-size: 19px; }
.btn-arrow { transition: transform .3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.hero-badge { display: inline-flex; align-items: center; gap: 12px; padding: 14px 24px; background: var(--white); border: 2px solid var(--gold); border-radius: var(--rx); font-size: 16px; flex-wrap: wrap; box-shadow: var(--sh-s); }
.badge-icon { font-size: 26px; }
.badge-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.badge-text strong { color: var(--red); font-size: 17px; font-weight: 700; }
.badge-text span { font-size: 14px; color: var(--gray); }

/* SECTION COMMON */
section:not(.hero) { padding: var(--pad); }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; text-align: center; margin-bottom: 24px; position: relative; padding-bottom: 20px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--gr); border-radius: 2px; }
.section-subtitle { text-align: center; font-size: 19px; color: var(--gray); margin: 0 auto 56px; line-height: 1.9; max-width: 800px; }
.section-subtitle strong { color: var(--red); }
.section-subtitle-small { font-size: 16px; color: var(--gray-l); }

/* WHY */
.why { background: var(--white); }
.why .container { text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin: 56px 0; }
.why-card { background: var(--bg); padding: 36px 28px; border-radius: var(--rl); text-align: center; transition: all .4s; border: 2px solid transparent; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gr); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.why-card:hover { background: var(--white); border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--sh-m); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 64px; margin-bottom: 20px; display: block; }
.why-card h3 { font-size: 24px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.why-desc { font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.why-link { font-size: 15px; color: var(--tq); font-weight: 700; padding-top: 16px; border-top: 1px solid var(--lg); }
.why-conclusion { font-size: 17px; line-height: 2; padding: 32px; background: linear-gradient(135deg, var(--cream) 0%, var(--tq-light) 100%); border-radius: var(--rl); text-align: center; max-width: 800px; margin: 0 auto; border-left: 6px solid var(--tq); }
.why-conclusion strong { color: var(--red); font-size: 19px; }

/* PROBLEM */
.problem { background: var(--bg); }
.problem .container { text-align: center; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 56px 0; }
.problem-card { background: var(--white); padding: 32px 24px; border-radius: var(--r); text-align: center; box-shadow: var(--sh-s); transition: all .3s; position: relative; overflow: hidden; }
.problem-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gr); transform: scaleX(0); transition: transform .3s; }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-card-highlight { background: linear-gradient(135deg, #FFF8EA 0%, #FFE8EC 100%); border: 2px solid var(--gold); }
.problem-card-highlight::before { background: var(--gg); transform: scaleX(1); }
.problem-icon { font-size: 44px; display: block; margin-bottom: 12px; }
.problem-card p { font-size: 17px; font-weight: 500; line-height: 1.6; }
.problem-conclusion { font-size: 17px; line-height: 2; padding: 36px 32px; background: var(--white); border-radius: var(--rl); border-left: 6px solid var(--tq); box-shadow: var(--sh-m); text-align: center; max-width: 800px; margin: 0 auto; }
.problem-conclusion strong { color: var(--tq); }

/* ABOUT ACHIEVEMENTS（実績リスト） */
.about-achievements { background: linear-gradient(135deg, var(--cream) 0%, var(--red-light) 100%); padding: 28px 28px; border-radius: var(--rl); margin: 24px 0 32px; border-left: 6px solid var(--gold); box-shadow: var(--sh-s); }
.about-achievements-label { font-size: 16px; font-weight: 700; color: var(--gold-dark); margin-bottom: 14px; letter-spacing: .05em; }
.about-achievements-list { padding-left: 0; }
.about-achievements-list li { font-size: 15px; line-height: 1.9; padding: 8px 0 8px 4px; color: var(--dark); border-bottom: 1px dashed rgba(184,155,94,.3); }
.about-achievements-list li:last-child { border-bottom: none; }
.about-achievements-list li strong { color: var(--red); font-weight: 700; }
.about-achievements-art { background: linear-gradient(135deg, var(--tq-light) 0%, var(--cream) 100%); border-left-color: var(--tq); margin-top: 16px; }
.about-achievements-art .about-achievements-label { color: var(--tq-dark); }

/* WHY BRAND STICKERS（なぜ今、自社ブランドスタンプなのか） */
.why-stamp { background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%); }
.why-stamp .container { text-align: center; }
.why-stamp .section-title { line-height: 1.3; }
.why-stamp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin: 56px 0 40px; align-items: stretch; }
.why-stamp-card { background: var(--white); border: 2px solid var(--lg); border-radius: var(--rl); padding: 40px 28px; position: relative; transition: all .4s; text-align: left; display: flex; flex-direction: column; }
.why-stamp-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); border-color: var(--gold); }
.why-stamp-featured { border-color: var(--red); background: linear-gradient(180deg, rgba(200,16,46,.04) 0%, var(--white) 100%); transform: scale(1.03); box-shadow: var(--sh-r); }
.why-stamp-featured:hover { transform: scale(1.03) translateY(-6px); border-color: var(--red); box-shadow: 0 16px 48px rgba(200,16,46,.25); }
.why-stamp-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--gr); color: var(--white); padding: 8px 22px; border-radius: 18px; font-size: 12px; font-weight: 700; letter-spacing: .15em; box-shadow: var(--sh-r); white-space: nowrap; }
.why-stamp-num { display: inline-block; font-size: 16px; font-weight: 800; color: var(--white); background: var(--gt); padding: 8px 16px; border-radius: 8px; margin-bottom: 12px; letter-spacing: .1em; }
.why-stamp-card-featured .why-stamp-num,
.why-stamp-featured .why-stamp-num { background: var(--gr); }
.why-stamp-icon { font-size: 56px; text-align: center; margin: 8px 0 16px; }
.why-stamp-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 20px; line-height: 1.5; }
.why-stamp-stat { background: linear-gradient(135deg, var(--cream) 0%, var(--red-light) 100%); padding: 20px 16px; border-radius: var(--r); text-align: center; margin-bottom: 20px; box-shadow: var(--sh-s); }
.stat-num { display: block; font-size: 46px; font-weight: 800; background: var(--gr); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-num small { font-size: 24px; }
.stat-label { display: block; margin-top: 6px; font-size: 14px; color: var(--gray); font-weight: 600; }
.why-stamp-points { padding-left: 0; flex: 1; margin-bottom: 16px; }
.why-stamp-points li { padding: 8px 0 8px 24px; font-size: 15px; line-height: 1.7; position: relative; color: var(--dark); border-bottom: 1px solid #F5F5F5; }
.why-stamp-points li:last-child { border-bottom: none; }
.why-stamp-points li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; background: var(--tq); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.why-stamp-featured .why-stamp-points li::before { background: var(--red); }
.why-stamp-points li strong { color: var(--red); font-weight: 700; }
.why-stamp-foot { font-size: 14px; color: var(--tq-dark); font-weight: 600; text-align: center; padding-top: 16px; border-top: 1px dashed var(--lg); margin-top: auto; }
.why-stamp-featured .why-stamp-foot { color: var(--red); }
.why-now-banner { background: linear-gradient(135deg, #2d3142 0%, #4f5d75 100%); color: var(--white); padding: 48px 36px; border-radius: var(--rl); margin: 56px auto 0; max-width: 900px; box-shadow: var(--sh-l); position: relative; overflow: hidden; border: 1px solid rgba(184,155,94,.2); }
.why-now-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,16,46,.15) 0%, transparent 70%); }
.why-now-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.why-now-tag { display: inline-block; padding: 6px 18px; background: rgba(255,255,255,.15); color: var(--cream); border-radius: 24px; font-size: 12px; font-weight: 700; letter-spacing: .15em; margin-bottom: 16px; backdrop-filter: blur(10px); }
.why-now-banner h3 { font-size: 30px; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.why-now-banner p { font-size: 17px; line-height: 2; color: #DDD; }
.why-now-banner strong { color: var(--cream); font-weight: 700; }
.why-now-emphasis { display: inline-block; margin-top: 16px; padding: 12px 28px; background: var(--gr); color: var(--white); border-radius: 32px; font-size: 18px; font-weight: 700; box-shadow: var(--sh-r); }

/* SAMPLES */
.samples { background: var(--white); }
.samples .container { text-align: center; }
.sample-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin: 32px 0 24px; }
.sample-grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 36px; max-width: 900px; margin-left: auto; margin-right: auto; }
.sample-card { background: var(--cream); border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh-m); transition: all .4s; border: 2px solid var(--gold); position: relative; }
.sample-card:hover { transform: translateY(-8px); box-shadow: var(--sh-l); }
.sample-implemented { border-color: var(--red); background: linear-gradient(180deg, var(--red-light) 0%, var(--white) 100%); box-shadow: var(--sh-r); }
.sample-implemented:hover { border-color: var(--red); box-shadow: 0 16px 48px rgba(200,16,46,.25); }
.sample-section-title { text-align: center; margin: 56px 0 16px; }
.sample-section-title:first-of-type { margin-top: 32px; }
.sample-section-tag { display: inline-block; padding: 6px 18px; background: var(--gr); color: var(--white); border-radius: 24px; font-size: 12px; font-weight: 700; letter-spacing: .15em; margin-bottom: 12px; box-shadow: var(--sh-r); }
.sample-section-title h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 0; }
.sample-badge-red { background: var(--gr) !important; box-shadow: var(--sh-r) !important; }
.sample-featured { border-color: var(--red); background: linear-gradient(180deg, #FFE8EC 0%, var(--cream) 100%); }
.sample-badge { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 6px 14px; background: var(--gr); color: var(--white); border-radius: 24px; font-size: 12px; font-weight: 700; letter-spacing: .1em; box-shadow: var(--sh-r); }
.sample-image { width: 100%; aspect-ratio: 1; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sample-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.sample-card:hover .sample-image img { transform: scale(1.05); }
.sample-image-custom { background: linear-gradient(135deg, var(--cream) 0%, #FFE8D6 100%); }
.custom-illustration { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.custom-emoji { font-size: 80px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.custom-text { font-size: 19px; font-weight: 700; color: var(--gold-dark); text-align: center; line-height: 1.5; }
.sample-info { padding: 24px; text-align: left; }
.sample-card h3 { font-size: 28px; font-weight: 700; color: var(--red); text-align: center; margin-bottom: 8px; }
.sample-business { text-align: center; font-size: 15px; color: var(--gold); font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px dashed var(--gold); }
.sample-desc { font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.sample-style { text-align: center; font-size: 14px; color: var(--gray); font-weight: 500; }

/* ABOUT */
.about { background: linear-gradient(135deg, var(--bg) 0%, #F0F4F0 100%); }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }
.about-photo { text-align: center; }
.about-photo-frame { width: 280px; height: 280px; margin: 0 auto 24px; background: var(--gw); border-radius: 50%; box-shadow: var(--sh-l); border: 8px solid var(--white); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; border-radius: 50%; }
.about-photo-fallback { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--gw); }
.about-photo-emoji { font-size: 80px; margin-bottom: 12px; }
.about-photo-fallback p { font-size: 36px; font-weight: 800; color: var(--red); }
.about-photo-sub { font-size: 14px !important; color: var(--gray) !important; font-weight: 500 !important; }
.about-roles { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.role-tag { padding: 6px 14px; background: var(--white); border-radius: 20px; font-size: 14px; font-weight: 600; border: 1px solid var(--gold); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-stat { background: var(--white); padding: 16px 12px; border-radius: var(--r); text-align: center; border-top: 3px solid var(--red); }
.about-stat-num { font-size: 26px; font-weight: 800; background: var(--gr); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; display: block; }
.about-stat-num small { font-size: 14px; font-weight: 600; }
.about-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; display: block; }
.about-text { position: relative; }
.about-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; margin-bottom: 32px; line-height: 1.4; }
.about-accent { color: var(--red); }
.about-bio { font-size: 18px; line-height: 2; margin-bottom: 20px; }
.about-bio strong { color: var(--red); font-weight: 700; }
.about-quote { margin: 32px 0; padding: 28px 32px; background: var(--white); border-left: 4px solid var(--tq); border-radius: var(--r); box-shadow: var(--sh-s); position: relative; }
.about-quote p { font-size: 18px; font-weight: 600; line-height: 1.9; }
.about-quote strong { color: var(--tq); }
.about-meta { font-size: 15px; color: var(--gray); line-height: 1.9; padding-top: 24px; border-top: 1px dashed var(--lg); margin-top: 24px; }

/* INDUSTRY INSIGHTS */
.industry { background: var(--white); }
.industry .container { text-align: center; }
.industry .section-title { line-height: 1.4; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin: 48px 0 40px; align-items: stretch; }
.industry-card { background: var(--bg); border: 2px solid var(--lg); border-radius: var(--rl); padding: 32px 28px; text-align: left; transition: all .4s; position: relative; display: flex; flex-direction: column; }
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); border-color: var(--gold); background: var(--white); }
.industry-card-featured { border-color: var(--red); background: linear-gradient(180deg, var(--red-light) 0%, var(--white) 100%); transform: scale(1.02); box-shadow: var(--sh-r); }
.industry-card-featured:hover { transform: scale(1.02) translateY(-6px); border-color: var(--red); }
.industry-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gr); color: var(--white); padding: 6px 18px; border-radius: 16px; font-size: 12px; font-weight: 700; letter-spacing: .1em; box-shadow: var(--sh-r); white-space: nowrap; }
.industry-icon { font-size: 56px; text-align: center; margin-bottom: 12px; }
.industry-name { font-size: 24px; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 6px; }
.industry-tag { font-size: 14px; color: var(--gray); text-align: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px dashed var(--lg); }
.industry-finding { background: var(--white); border-left: 4px solid var(--tq); padding: 14px 18px; border-radius: var(--r); margin-bottom: 18px; }
.industry-card-featured .industry-finding { border-left-color: var(--red); }
.industry-finding-label { font-size: 12px; font-weight: 700; color: var(--tq-dark); letter-spacing: .15em; margin-bottom: 6px; }
.industry-card-featured .industry-finding-label { color: var(--red); }
.industry-finding-text { font-size: 17px; line-height: 1.6; color: var(--dark); }
.industry-finding-text strong { color: var(--red); font-weight: 700; }
.industry-evidence { padding-left: 0; flex: 1; }
.industry-evidence li { font-size: 15px; line-height: 1.7; padding: 6px 0 6px 22px; position: relative; color: var(--gray); }
.industry-evidence li::before { content: '◆'; position: absolute; left: 0; top: 6px; color: var(--gold); font-size: 12px; }
.industry-evidence li strong { color: var(--dark); font-weight: 700; }
.industry-rules { background: linear-gradient(135deg, var(--cream) 0%, var(--red-light) 100%); padding: 32px 28px; border-radius: var(--rl); margin: 32px 0; box-shadow: var(--sh-m); }
.industry-rules-label { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 20px; text-align: center; }
.industry-rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.industry-rule { background: var(--white); padding: 20px 16px; border-radius: var(--r); display: flex; align-items: center; gap: 14px; box-shadow: var(--sh-s); }
.rule-num { flex-shrink: 0; width: 36px; height: 36px; background: var(--gr); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
.industry-rule p { font-size: 15px; line-height: 1.5; flex: 1; }
.industry-rule strong { color: var(--red); font-weight: 700; }
.industry-conclusion { font-size: 18px; line-height: 1.9; padding: 24px; background: var(--bg); border-radius: var(--r); border-left: 4px solid var(--gold); max-width: 800px; margin: 0 auto; }
.industry-conclusion strong { color: var(--red); font-size: 19px; }

/* RESEARCH */
.research { background: var(--bg); }
.research .container { text-align: center; }
.research-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin: 48px 0 32px; }
.research-card { background: var(--white); padding: 32px 28px; border-radius: var(--rl); box-shadow: var(--sh-s); transition: all .3s; text-align: left; border: 1px solid var(--lg); }
.research-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); border-color: var(--tq); }
.research-card-num { display: inline-block; font-size: 16px; font-weight: 800; color: var(--white); background: var(--gt); padding: 8px 14px; border-radius: 8px; margin-bottom: 16px; }
.research-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.research-card-desc { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.research-list { background: var(--bg); padding: 16px 20px; border-radius: var(--r); }
.research-list li { padding: 8px 0 8px 24px; font-size: 15px; position: relative; line-height: 1.6; }
.research-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; background: var(--tq); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.research-mockup { background: var(--bg); padding: 32px 24px; border-radius: var(--r); margin-bottom: 16px; }
.mockup-axis { position: relative; width: 100%; height: 200px; border-bottom: 2px solid var(--gray-l); border-left: 2px solid var(--gray-l); }
.axis-y-top, .axis-y-bot, .axis-x-left, .axis-x-right { position: absolute; font-size: 12px; color: var(--gray); font-weight: 600; }
.axis-y-top { top: -16px; left: -8px; }
.axis-y-bot { bottom: -8px; left: -8px; transform: translateX(-100%); }
.axis-x-left { bottom: -16px; left: 0; }
.axis-x-right { bottom: -16px; right: 0; }
.mockup-dot { position: absolute; background: var(--white); border: 2px solid var(--gray-l); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--gray); text-align: center; line-height: 1.2; }
.dot-a { top: 20%; left: 20%; }
.dot-b { top: 30%; left: 60%; }
.dot-c { top: 60%; left: 30%; }
.dot-you { top: 50%; right: 10%; background: var(--gr); color: var(--white); border-color: var(--red); box-shadow: var(--sh-r); animation: pulse 2s infinite; font-size: 12px; }
.research-card-foot { font-size: 14px; color: var(--tq); font-weight: 600; text-align: center; padding-top: 8px; }
.strength-list { display: flex; flex-direction: column; gap: 12px; }
.strength-item { display: flex; gap: 16px; align-items: center; padding: 16px; background: var(--bg); border-radius: var(--r); }
.strength-icon { font-size: 36px; flex-shrink: 0; }
.strength-item p { font-size: 15px; line-height: 1.6; }
.strength-item p strong { color: var(--red); font-weight: 700; }
.copy-list { display: flex; flex-direction: column; gap: 8px; }
.copy-item { background: var(--bg); padding: 12px 16px; border-radius: var(--r); font-size: 16px; display: flex; gap: 12px; align-items: center; }
.copy-num { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--white); background: var(--red); padding: 4px 10px; border-radius: 12px; }
.research-cta { background: var(--white); padding: 32px; border-radius: var(--rl); text-align: center; margin-top: 32px; box-shadow: var(--sh-m); max-width: 800px; margin-left: auto; margin-right: auto; }
.research-cta-lead { font-size: 16px; color: var(--gray); line-height: 1.9; margin-bottom: 16px; }
.research-cta-lead strong { color: var(--dark); font-size: 17px; }
.research-cta-value { font-size: 18px; line-height: 1.9; }
.research-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px auto 0; max-width: 800px; }
.research-meta-tag { display: inline-flex; align-items: center; padding: 8px 16px; background: var(--white); border: 1px solid var(--tq); color: var(--tq-dark); border-radius: 24px; font-size: 14px; font-weight: 600; box-shadow: var(--sh-s); }
.research-note { background: linear-gradient(135deg, var(--tq-light) 0%, var(--cream) 100%); border-left: 4px solid var(--tq); padding: 24px 28px; border-radius: var(--r); margin: 32px auto 0; max-width: 800px; text-align: left; }
.research-note p { font-size: 16px; line-height: 1.9; color: var(--dark); }
.research-note strong { color: var(--tq-dark); }
.research-meta-note { text-align: center; font-size: 14px; color: var(--gray); margin: 12px auto 0; max-width: 800px; line-height: 1.7; }
.research-meta-note strong { color: var(--red); }

/* RESEARCH CONNECTION（リサーチ→キャラ橋渡し） */
.research-connection { background: linear-gradient(135deg, #FFF7E6 0%, #FFFBF0 100%); border: 2px solid var(--gold); border-radius: var(--rl); padding: 40px 32px; margin: 48px auto 0; max-width: 1000px; box-shadow: var(--sh-m); }
.research-connection-title { text-align: center; font-size: 22px; line-height: 1.6; color: var(--dark); margin-bottom: 32px; }
.research-connection-title strong { color: var(--red); }
.research-connection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.research-connection-item { background: var(--white); border-radius: var(--r); padding: 24px 16px; text-align: center; box-shadow: var(--sh-s); }
.connection-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.connection-from { font-size: 15px; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.connection-arrow { font-size: 20px; color: var(--gold); font-weight: 700; margin: 4px 0; }
.connection-to { font-size: 15px; color: var(--dark); line-height: 1.5; }
.connection-to strong { color: var(--red); }

/* RESEARCH LOVELETTER（両方向の買い手へ） */
.research-loveletter { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; margin: 40px auto 0; max-width: 1000px; }
.loveletter-item { background: var(--white); border-radius: var(--rl); padding: 32px 28px; text-align: center; box-shadow: var(--sh-m); border: 1px solid var(--lg); display: flex; flex-direction: column; justify-content: center; }
.loveletter-tag { font-size: 14px; font-weight: 700; color: var(--tq-dark); margin-bottom: 16px; letter-spacing: 0.05em; }
.loveletter-text { font-size: 16px; line-height: 1.8; color: var(--dark); }
.loveletter-text strong { color: var(--red); font-size: 17px; }
.loveletter-divider { display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: var(--gold); }
.research-conclusion { text-align: center; font-size: 20px; line-height: 1.8; color: var(--dark); margin: 32px auto 0; max-width: 800px; }
.research-conclusion strong { color: var(--red); font-size: 22px; }

/* COMPARISON */
.comparison { background: var(--white); }
.comparison .container { text-align: center; }
.comparison-table { background: var(--white); border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh-l); margin: 48px 0 32px; border: 1px solid var(--lg); }
.comparison table { width: 100%; border-collapse: collapse; }
.comparison th { background: var(--dark); color: var(--white); padding: 18px 16px; text-align: left; font-weight: 600; font-size: 16px; }
.comparison th:nth-child(2), .comparison th:nth-child(3) { text-align: center; }
.comparison td { padding: 18px 16px; border-bottom: 1px solid var(--lg); font-size: 16px; }
.comparison tbody tr:hover:not(.total-row) { background: var(--bg); }
.comparison td:nth-child(2) { text-align: center; color: var(--gray); }
.comparison td:nth-child(3) { text-align: center; }
.comparison .included { color: var(--tq); font-weight: 700; }
.comparison .total-row { background: linear-gradient(90deg, var(--cream), #FFE8EC); }
.comparison .total-row td { font-weight: 700; font-size: 18px; border-bottom: none; padding: 24px 16px; }
.comparison .big-price { color: var(--red); font-size: 24px !important; font-weight: 800; }
.comparison .big-price small { display: block; font-size: 15px; font-weight: 700; color: var(--gold); margin-top: 4px; }
.comparison-conclusion { font-size: 19px; font-weight: 600; text-align: center; padding: 24px; background: var(--bg); border-radius: var(--r); border-left: 4px solid var(--red); max-width: 700px; margin: 0 auto; }
.comparison-conclusion strong { color: var(--red); font-size: 24px; }

/* PLANS */
.plans { background: var(--bg); }
.plans .container { text-align: center; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: stretch; margin: 48px 0; }
.plan-card { background: var(--white); border: 2px solid var(--lg); border-radius: var(--rl); padding: 40px 28px; position: relative; transition: all .4s; text-align: left; display: flex; flex-direction: column; }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); border-color: var(--gold); }
.plan-recommended { border-color: var(--tq); background: linear-gradient(180deg, rgba(0,183,183,.04) 0%, var(--white) 100%); transform: scale(1.04); box-shadow: var(--sh-t); }
.plan-recommended:hover { transform: scale(1.04) translateY(-6px); border-color: var(--tq); }
.recommended-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--gt); color: var(--white); padding: 8px 24px; border-radius: 20px; font-size: 15px; font-weight: 700; box-shadow: var(--sh-t); white-space: nowrap; }
.plan-header { text-align: center; padding-bottom: 16px; border-bottom: 1px dashed var(--lg); margin-bottom: 24px; }
.plan-name { font-size: 30px; font-weight: 700; margin-bottom: 6px; }
.plan-target { font-size: 15px; color: var(--gray); }
.plan-price { text-align: center; margin-bottom: 28px; }
.price-original { font-size: 24px; color: var(--gray-l); text-decoration: line-through; margin-bottom: 8px; }
.price-original small { font-size: 12px; }
.price-sale { font-size: 46px; font-weight: 800; background: var(--gr); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.price-note { margin-top: 8px; font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: .1em; }
.plan-features { flex: 1; margin-bottom: 24px; list-style: none; padding: 0; }
.plan-features li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 16px; line-height: 1.6; border-bottom: 1px solid #F5F5F5; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li > span:last-child { flex: 1; }
.check { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; background: var(--tq); color: var(--white); border-radius: 50%; font-size: 14px; font-weight: 700; margin-top: 2px; }
.check-strong { background: var(--red); }
.plan-features li strong { color: var(--dark); font-weight: 700; }
.plan-period { text-align: center; font-size: 15px; color: var(--gold); font-weight: 600; padding-top: 16px; border-top: 1px dashed var(--lg); margin-top: auto; }
.plans-note { text-align: center; font-size: 14px; color: var(--gray); line-height: 1.9; padding: 16px 24px; background: var(--white); border-radius: var(--r); max-width: 700px; margin: 24px auto; box-shadow: var(--sh-s); }
.release-banner { background: var(--gr); color: var(--white); padding: 40px 32px; border-radius: var(--rl); margin-top: 48px; box-shadow: var(--sh-r); position: relative; overflow: hidden; }
.release-banner-content { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: left; }
.release-banner-icon { font-size: 64px; }
.release-banner h3 { font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.release-banner p { font-size: 19px; }
.release-banner strong { color: var(--cream); font-size: 26px; font-weight: 800; }

/* FLOW */
.flow { background: var(--white); }
.flow .container { text-align: center; }
.flow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 56px; }
.flow-step { background: var(--bg); padding: 32px 20px; border-radius: var(--rl); text-align: center; transition: all .3s; border: 2px solid transparent; }
.flow-step:hover { transform: translateY(-6px); box-shadow: var(--sh-m); background: var(--white); border-color: var(--gold); }
.step-num { display: block; font-size: 56px; font-weight: 800; background: var(--gr); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; line-height: 1; }
.flow-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.flow-step p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* FAQ */
.faq { background: var(--bg); }
.faq .container { text-align: center; max-width: 900px; }
.faq-list { margin-top: 48px; text-align: left; }
.faq-item { background: var(--white); border-radius: var(--r); margin-bottom: 16px; overflow: hidden; border: 1px solid var(--lg); transition: all .3s; }

/* FAQ（continued） */
.faq-item:hover { box-shadow: var(--sh-m); border-color: var(--gold); }
.faq-item summary { padding: 24px 60px 24px 28px; font-weight: 700; cursor: pointer; list-style: none; position: relative; font-size: 17px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 28px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: var(--red-light); color: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 300; transition: all .3s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--red); color: var(--white); }
.faq-content { padding: 0 28px 28px; line-height: 1.9; font-size: 17px; }
.faq-content p { margin-bottom: 12px; }
.faq-content p:last-child { margin-bottom: 0; }
.faq-content p strong { color: var(--red); }
.faq-ul { margin: 12px 0; padding-left: 20px; list-style: none; }
.faq-ul li { padding: 6px 0 6px 24px; position: relative; font-size: 17px; }
.faq-ul li::before { content: '●'; position: absolute; left: 0; top: 6px; color: var(--red); font-size: 11px; }

/* VOICES（お客様の声） */
.voices { background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%); }
.voices .container { text-align: center; }
.voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin: 56px 0 32px; }
.voice-card { background: var(--white); padding: 36px 32px; border-radius: var(--rl); text-align: left; transition: all .4s; border: 2px solid var(--lg); position: relative; box-shadow: var(--sh-s); }
.voice-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); border-color: var(--gold); }
.voice-card-featured { border-color: var(--red); background: linear-gradient(180deg, rgba(200,16,46,.04) 0%, var(--white) 100%); transform: scale(1.02); box-shadow: var(--sh-r); }
.voice-card-featured:hover { transform: scale(1.02) translateY(-6px); border-color: var(--red); }
.voice-badge { position: absolute; top: -16px; left: 24px; background: var(--gr); color: var(--white); padding: 8px 18px; border-radius: 16px; font-size: 13px; font-weight: 700; letter-spacing: .15em; box-shadow: var(--sh-r); }
.voice-rating { font-size: 24px; color: #FFB800; letter-spacing: 2px; margin-bottom: 16px; }
.voice-quote { font-size: 17px; line-height: 1.9; color: var(--dark); margin-bottom: 24px; font-weight: 500; padding-left: 20px; border-left: 4px solid var(--gold); }
.voice-card-featured .voice-quote { border-left-color: var(--red); }
.voice-author { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px dashed var(--lg); }
.voice-author-info { flex: 1; }
.voice-name { font-size: 18px; font-weight: 700; color: var(--dark); }
.voice-business { font-size: 15px; color: var(--gray); line-height: 1.6; margin-top: 4px; }
.voice-tag { margin-top: 16px; padding: 8px 16px; background: var(--bg); border-radius: 20px; font-size: 15px; color: var(--gray); display: inline-block; }
.voices-note { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 900px; margin: 32px auto 0; padding: 16px 24px; background: var(--bg); border-radius: var(--r); }

/* GUARANTEE（3つの保証） */
.guarantee { background: var(--white); }
.guarantee .container { text-align: center; }
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin: 56px 0 0; align-items: stretch; }
.guarantee-card { background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%); padding: 40px 32px; border-radius: var(--rl); text-align: center; transition: all .4s; border: 2px solid var(--gold); position: relative; box-shadow: var(--sh-m); display: flex; flex-direction: column; }
.guarantee-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); }
.guarantee-card-featured { border-color: var(--red); background: linear-gradient(135deg, var(--red-light) 0%, var(--white) 100%); transform: scale(1.04); box-shadow: var(--sh-r); }
.guarantee-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.guarantee-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--gr); color: var(--white); padding: 8px 22px; border-radius: 18px; font-size: 13px; font-weight: 700; letter-spacing: .15em; box-shadow: var(--sh-r); white-space: nowrap; }
.guarantee-icon { font-size: 64px; margin-bottom: 20px; }
.guarantee-card h3 { font-size: 22px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.guarantee-desc { font-size: 16px; line-height: 1.9; color: var(--dark); flex: 0 0 auto; text-align: left; }
.guarantee-desc strong { color: var(--red); font-weight: 700; }
.guarantee-list { padding-left: 0; margin-top: 16px; flex: 1; text-align: left; }
.guarantee-list li { font-size: 15px; line-height: 1.8; padding: 12px 0 12px 28px; border-bottom: 1px dashed rgba(0,0,0,.08); color: var(--dark); position: relative; }
.guarantee-list li::before { content: '✓'; position: absolute; left: 4px; top: 14px; color: var(--tq); font-weight: 700; font-size: 16px; }
.guarantee-list li:last-child { border-bottom: none; }
.guarantee-list li strong { color: var(--red); font-weight: 700; }

/* 著作権譲渡 業界比較 */
.copyright-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 24px; text-align: left; }
@media (max-width: 900px) {
  .copyright-compare { grid-template-columns: 1fr !important; }
  .copyright-meaning-grid { grid-template-columns: 1fr !important; }
}
.copyright-compare-col { background: var(--white); border-radius: var(--r); padding: 16px 14px; border: 1px solid var(--lg); }
.copyright-compare-ours { background: linear-gradient(135deg, #FFF7E6 0%, #FFFBF0 100%); border-color: var(--gold); box-shadow: var(--sh-s); }
.cc-label { font-size: 13px; font-weight: 700; text-align: center; padding: 6px 0; border-radius: 16px; margin-bottom: 12px; letter-spacing: 0.03em; }
.cc-label-other { background: #F0F0F0; color: var(--gray); }
.cc-label-ours { background: var(--red); color: var(--white); }
.cc-list { list-style: none; padding: 0; margin: 0; }
.cc-list li { font-size: 13px; line-height: 1.6; padding: 8px 0 8px 22px; border-bottom: 1px dashed rgba(0,0,0,.06); color: var(--dark); position: relative; }
.cc-list li:last-child { border-bottom: none; }
.cc-list li strong { color: var(--dark); font-weight: 700; }
.copyright-compare-ours .cc-list li strong { color: var(--red); }
.cc-x { position: absolute; left: 0; top: 8px; color: #999; font-weight: 700; font-size: 14px; line-height: 1.6; }
.cc-o { position: absolute; left: 0; top: 8px; color: var(--tq-dark); font-weight: 700; font-size: 14px; line-height: 1.6; }
.copyright-conclusion { font-size: 15px; line-height: 1.8; color: var(--dark); text-align: center; padding: 16px; background: var(--cream); border-radius: var(--r); border-left: 3px solid var(--red); }
.copyright-conclusion strong { color: var(--red); }
.price-tax-note { font-size: 11px; color: var(--gray); margin-top: 4px; margin-bottom: 6px; line-height: 1.4; display: block; }

.price-original small { display: block; font-size: 11px; margin-top: 2px; color: var(--gray); }

/* TESTIMONIALS（お客様の声） */
.testimonials { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); padding: 80px 0; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.testimonial-card { background: var(--white); border-radius: var(--rl); padding: 36px 32px 28px; box-shadow: var(--sh-m); border: 1px solid var(--lg); position: relative; display: flex; flex-direction: column; transition: all .4s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-l); }
.testimonial-quote-mark { position: absolute; top: 8px; left: 20px; font-size: 80px; line-height: 1; color: var(--gold); font-family: serif; opacity: 0.4; }
.testimonial-body { flex: 1; margin-top: 24px; }
.testimonial-body p { font-size: 15px; line-height: 1.9; color: var(--dark); margin-bottom: 14px; }
.testimonial-body p:last-child { margin-bottom: 0; }
.testimonial-body strong { color: var(--red); font-weight: 700; }
.testimonial-footer { display: flex; gap: 14px; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px dashed rgba(0,0,0,.1); }
.testimonial-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--cream) 0%, var(--tq-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.testimonial-info { flex: 1; }
.testimonial-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.testimonial-meta { font-size: 12px; color: var(--gray); line-height: 1.5; }
.testimonial-coming { background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%); border: 2px dashed #DDD; opacity: 0.85; }
.testimonial-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 140px; padding: 12px; }
.placeholder-text { font-size: 17px; line-height: 1.8; color: var(--dark); }
.placeholder-emoji { font-size: 40px; opacity: 0.6; }
.placeholder-sub { font-size: 13px; color: var(--gray); line-height: 1.7; margin-top: 16px; }

/* グッズ制作バナー */
.goods-banner { background: linear-gradient(135deg, var(--tq-light) 0%, #FFFBF0 100%); border: 1px dashed var(--tq); border-radius: var(--rl); padding: 20px 18px; margin-top: 20px; text-align: center; }
.goods-banner-icon { font-size: 36px; margin-bottom: 8px; }
.goods-banner-title { font-size: 16px; color: var(--dark); margin-bottom: 10px; }
.goods-banner-title strong { color: var(--tq-dark); }
.goods-banner-text { font-size: 13px; line-height: 1.7; color: var(--dark); margin-bottom: 8px; }
.goods-banner-note { font-size: 12px; color: var(--gray); }

/* 著作権譲渡の意味（商用利用 vs 譲渡） */
.copyright-meaning { background: var(--white); border-radius: var(--rl); padding: 20px 16px; margin-bottom: 20px; border: 1px dashed var(--gold); }
.copyright-meaning-title { text-align: center; font-size: 16px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.copyright-meaning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.meaning-item { padding: 16px 14px; border-radius: var(--r); text-align: left; }
.meaning-item-limited { background: #FFF5F5; border: 1px solid #FFD4D4; }
.meaning-item-full { background: #F0FFFA; border: 2px solid var(--tq); box-shadow: var(--sh-s); }
.meaning-label { font-size: 14px; font-weight: 700; margin-bottom: 10px; text-align: center; padding: 6px 8px; border-radius: 12px; }
.meaning-item-limited .meaning-label { background: #FFE0E0; color: #B33; }
.meaning-item-full .meaning-label { background: var(--tq-dark); color: var(--white); }
.meaning-text { font-size: 13px; line-height: 1.6; margin-bottom: 10px; color: var(--dark); }
.meaning-text strong { color: var(--red); }
.meaning-item-full .meaning-text strong { color: var(--tq-dark); }
.meaning-list { list-style: none; padding: 0; margin: 0; }
.meaning-list li { font-size: 12.5px; line-height: 1.5; padding: 4px 0; color: var(--dark); }

/* MID CTA（プラン後の申込み導線） */
.mid-cta { background: var(--white); padding: 80px 0; }
.mid-cta-box { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: center; background: linear-gradient(135deg, #06C755 0%, #00B900 100%); color: var(--white); padding: 56px 48px; border-radius: var(--rx); box-shadow: 0 20px 60px rgba(6,199,85,.3); position: relative; overflow: hidden; max-width: 1080px; margin: 0 auto; }
.mid-cta-box::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%); pointer-events: none; }
.mid-cta-content { position: relative; z-index: 1; }
.mid-cta-tag { display: inline-block; padding: 6px 18px; background: rgba(255,255,255,.2); color: var(--white); border-radius: 24px; font-size: 15px; font-weight: 700; letter-spacing: .15em; margin-bottom: 16px; backdrop-filter: blur(10px); }
.mid-cta-content h2 { font-size: 34px; font-weight: 800; line-height: 1.4; margin-bottom: 20px; color: var(--white); }
.mid-cta-highlight { display: inline-block; padding: 4px 16px; background: var(--white); color: #06C755; border-radius: 12px; }
.mid-cta-lead { font-size: 17px; line-height: 1.9; margin-bottom: 24px; color: rgba(255,255,255,.95); }
.mid-cta-lead strong { color: var(--white); font-weight: 700; }
.mid-cta-points { padding-left: 0; }
.mid-cta-points li { font-size: 15px; line-height: 2; color: var(--white); font-weight: 600; }
.mid-cta-qr { position: relative; z-index: 1; background: var(--white); padding: 24px; border-radius: var(--rl); text-align: center; box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.mid-cta-qr img { width: 100%; max-width: 240px; height: auto; margin: 0 auto 12px; display: block; }
.mid-cta-qr-label { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.mid-cta-qr-label strong { color: #06C755; font-size: 16px; font-weight: 700; }
.mid-cta-btn { width: 100%; background: var(--dark) !important; }
.mid-cta-btn:hover { background: var(--gray) !important; }

/* QR画像（CONTACTセクション） */
.qr-real { width: 200px; height: 200px; margin: 0 auto 12px; border: 4px solid var(--white); border-radius: var(--r); box-shadow: var(--sh-m); overflow: hidden; padding: 12px; background: var(--white); }
.qr-real img { width: 100%; height: 100%; object-fit: contain; display: block; }
.contact-card-line { border: 3px solid #06C755; }

/* CONTACT */
.contact { background: linear-gradient(135deg, var(--cream) 0%, #FFE8D6 50%, #FFE8EC 100%); }
.contact .container { text-align: center; }
.contact-lead { font-size: 19px; line-height: 2; margin-bottom: 48px; }
.contact-emphasis { display: inline-block; margin-top: 16px; padding: 10px 28px; background: var(--gt); color: var(--white); border-radius: 24px; font-size: 15px; font-weight: 700; box-shadow: var(--sh-t); }
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 700px; margin: 0 auto 48px; }
.contact-card { background: var(--white); padding: 40px 32px; border-radius: var(--rl); text-align: center; box-shadow: var(--sh-m); transition: all .4s; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--sh-l); }
.contact-icon { font-size: 56px; display: block; margin-bottom: 16px; }
.contact-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.qr-placeholder { width: 160px; height: 160px; background: var(--bg); border: 3px dashed var(--gray-l); border-radius: var(--r); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 14px; text-align: center; line-height: 1.4; }
.contact-detail { margin: 16px 0; font-size: 17px; }
.contact-detail a { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.contact-note { font-size: 15px; color: var(--gray); }
.urgent-banner { background: var(--white); border: 3px solid var(--red); padding: 40px 32px; border-radius: var(--rl); text-align: center; margin-top: 48px; box-shadow: var(--sh-l); max-width: 700px; margin-left: auto; margin-right: auto; }
.urgent-title { font-size: 19px; font-weight: 700; color: var(--red); margin-bottom: 12px; }
.urgent-detail { font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.urgent-detail strong { color: var(--red); }

/* FOOTER */
.site-footer { background: var(--bg-d); color: var(--white); padding: 56px 0 28px; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #444; }
.footer-logo { font-size: 30px; font-weight: 700; margin-bottom: 16px; color: var(--cream); }
.footer-detail { font-size: 16px; line-height: 2; color: #BBB; }
.footer-services-title { font-weight: 700; margin-bottom: 16px; color: var(--cream); }
.footer-services ul { list-style: none; padding: 0; }
.footer-services ul li { font-size: 16px; line-height: 2; color: #BBB; }
.copyright { text-align: center; font-size: 14px; color: #888; }

/* RESPONSIVE */
@media (max-width: 768px) {
  section:not(.hero) { padding: 64px 0; }
  .nav { gap: 12px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 18px; font-size: 14px; }
  .hero { padding: 64px 0 56px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
  .plan-recommended { transform: none; }
  .plan-recommended:hover { transform: translateY(-6px); }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  /* 比較表 スマホ：3列を画面内に収める */
  .comparison-table { overflow-x: auto; }
  .comparison table { table-layout: fixed; width: 100%; }
  .comparison th, .comparison td { padding: 8px 4px !important; font-size: 11px !important; word-break: keep-all; overflow-wrap: anywhere; white-space: normal; line-height: 1.5; }
  .comparison td:first-child { min-width: 0 !important; width: 36% !important; }
  .comparison th:nth-child(2), .comparison td:nth-child(2) { width: 32% !important; }
  .comparison th:nth-child(3), .comparison td:nth-child(3) { width: 32% !important; }
  .comparison th { font-size: 10px !important; }
  .comparison .big-price { font-size: 15px !important; }
  .comparison .big-price small { font-size: 9.5px !important; }
  .comparison .total-row td { padding: 14px 4px !important; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about-photo-frame { width: 200px; height: 200px; border-width: 6px; }
  .release-banner-content { flex-direction: column; text-align: center; }
  .mid-cta-box { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .mid-cta-content h2 { font-size: 28px; }
  .mid-cta-qr img { max-width: 200px; }
  .why-stamp-featured { transform: none; }
  .why-stamp-featured:hover { transform: translateY(-6px); }
  .industry-card-featured { transform: none; }
  .industry-card-featured:hover { transform: translateY(-6px); }
  .voice-card-featured { transform: none; }
  .voice-card-featured:hover { transform: translateY(-6px); }
  .guarantee-card-featured { transform: none; }
  .guarantee-card-featured:hover { transform: translateY(-6px); }
}
        

/* ===== 🎨 V25 装飾追加（水彩・キラキラ・上品） ===== */

/* セクションタイトルに装飾を追加 */
.section-title::before {
  content: '✦';
  display: block;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: .6;
}

/* ヒーローに装飾要素追加（キラキラパターン） */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(184,155,94,.3) 2px, transparent 2px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(200,16,46,.2) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

/* ヒーロータイトルにキラキラエフェクト */
.hero-title::after {
  content: '✨';
  position: absolute;
  right: -20px;
  top: -10px;
  font-size: 32px;
  animation: sparkle 2.5s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: .3; transform: scale(.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(15deg); }
}
.hero-title { position: relative; display: inline-block; }

/* セクション間の装飾的区切り（波形ライン） */
/* 短すぎる装飾線は削除 - 既存のsection-title::afterに統合済み */

/* リスト項目の🌸装飾は削除（スマホで邪魔） */

/* 各カードのホバー時に微細なキラキラ */
.why-card::after,
.industry-card::after,
.why-stamp-card::after {
  content: '✦';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  color: var(--gold);
  opacity: 0;
  transition: all .4s;
  pointer-events: none;
}
.why-card:hover::after,
.industry-card:hover::after,
.why-stamp-card:hover::after {
  opacity: 1;
  transform: rotate(180deg);
}

/* problem-card に小さな装飾 */
.problem-card { position: relative; }
.problem-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: .2;
  border-radius: 50%;
}

/* sample-card にも装飾 */
.sample-card { position: relative; }
.sample-implemented::after {
  content: '🏆';
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 18px;
  opacity: .6;
}

/* about-quote を装飾的に */
.about-quote {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--tq-light) 100%) !important;
}
.about-quote::before {
  content: '“';
  position: absolute;
  top: -15px;
  left: 12px;
  font-size: 80px;
  color: var(--gold);
  opacity: .3;
  font-family: serif;
  line-height: 1;
}
.about-quote::after {
  content: '”';
  position: absolute;
  bottom: -50px;
  right: 12px;
  font-size: 80px;
  color: var(--gold);
  opacity: .3;
  font-family: serif;
  line-height: 1;
}

/* CTA ボタンに光るアニメーション */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .8s;
}
.btn-primary:hover::before {
  left: 100%;
}

/* セクション背景に淡い水彩パターン（odd セクションだけ） */
.why-stamp,
.research,
.guarantee {
  position: relative;
}
.why-stamp::after,
.research::after,
.guarantee::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(184,155,94,.04) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(200,16,46,.04) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}
.why-stamp .container,
.research .container,
.guarantee .container {
  position: relative;
  z-index: 1;
}

/* リリースバナーに更にキラキラ */
.release-banner::before,
.release-banner::after {
  content: '✨';
  position: absolute;
  font-size: 24px;
  opacity: .6;
  animation: sparkle 2s ease-in-out infinite;
}

/* === V41 スマホ強化（強制1列化） === */
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr !important; }
  .research-connection-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .research-loveletter { grid-template-columns: 1fr !important; }
  .loveletter-divider { font-size: 24px !important; padding: 4px 0 !important; }
  .copyright-compare { grid-template-columns: 1fr !important; }
  .copyright-meaning-grid { grid-template-columns: 1fr !important; }
  .comparison .big-price small { line-height: 1.3 !important; margin-top: 2px !important; }
  /* 価格表示の重なり防止 */
  .price-original small { display: block !important; font-size: 11px !important; margin-top: 2px !important; }
  .price-tax-note { margin-top: 6px !important; }
}


/* ============================================
   ===== V42 ADDITIONS (2026-05-11) ============
   ============================================ */

/* --- Hero badge: remaining count --- */
.badge-remaining {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; margin-left: 6px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff; border-radius: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(238, 90, 82, 0.35);
  vertical-align: middle;
}
.badge-remaining b { font-size: 16px; padding: 0 2px; font-weight: 800; }
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse-anim 1.6s infinite;
}
@keyframes pulse-anim {
  0% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  60% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* --- About lead bio (highlighted summary) --- */
.about-bio-lead {
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin-bottom: 14px;
}

/* --- About details: folded long bio --- */
.about-details {
  margin: 24px 0 28px;
  border: 2px solid rgba(184, 155, 94, 0.3);
  border-radius: var(--rl);
  background: var(--cream);
  overflow: hidden;
  transition: box-shadow 0.3s, background 0.3s;
}
.about-details[open] { background: #fff; box-shadow: var(--sh-s); }
.about-details-summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; color: var(--gold-dark);
  user-select: none;
  transition: background 0.2s;
}
.about-details-summary::-webkit-details-marker { display: none; }
.about-details-summary::marker { display: none; content: ''; }
.about-details-summary:hover { background: rgba(184, 155, 94, 0.08); }
.about-details-label { font-size: 15px; letter-spacing: 0.04em; }
.about-details-arrow {
  font-size: 13px; color: var(--gold);
  transition: transform 0.3s ease;
}
.about-details[open] .about-details-arrow { transform: rotate(180deg); }
.about-details-body {
  padding: 4px 22px 24px;
  animation: details-fade 0.4s ease;
}
@keyframes details-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Price 1-line clean (V42) --- */
.plan-price .price-note {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--red-light);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}
.price-main {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 4px; row-gap: 0;
  margin: 6px 0 8px;
  line-height: 1;
}
.price-yen {
  font-size: 26px; font-weight: 800; color: var(--red);
  background: var(--gr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-num {
  font-size: 52px; font-weight: 800;
  background: var(--gr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-tax-inline {
  font-size: 13px; color: var(--gray);
  font-weight: 600;
  margin-left: 4px;
}
.price-strike {
  font-size: 13px; color: var(--gray-l);
  margin-top: 6px;
  line-height: 1.4;
}
.price-strike s {
  color: var(--gray-l);
  text-decoration: line-through;
  margin: 0 4px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Price: center wrap for mobile */
  .price-main {
    justify-content: center;
    row-gap: 2px;
  }
  .price-num { font-size: 42px; }
  .price-yen { font-size: 22px; }
  .price-tax-inline {
    font-size: 12px;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .price-strike { font-size: 12px; }
  /* Hero badge: prevent overflow at narrow widths */
  .hero-badge {
    padding: 12px 16px;
    gap: 10px;
    font-size: 14px;
  }
  .hero-badge .badge-icon { font-size: 22px; }
  .hero-badge .badge-text span { font-size: 13px; line-height: 1.6; }
  .hero-badge .badge-text strong { font-size: 14px; }
  .badge-remaining {
    font-size: 12px;
    padding: 3px 8px;
    margin-left: 0;
    margin-top: 4px;
  }
  .badge-remaining b { font-size: 14px; }
  .about-bio-lead { font-size: 16px; }
  .about-details-summary { padding: 14px 18px; }
  .about-details-body { padding: 4px 18px 20px; }
}


/* ============================================
   ===== V43 ADDITIONS (2026-05-11) ============
   ============================================ */

/* --- Site notice banner (top) --- */
.site-notice {
  background: linear-gradient(135deg, #fff4d6 0%, #ffe8b8 100%);
  border-bottom: 2px solid #f0c050;
  color: #6b4a00;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  z-index: 100;
}
.site-notice-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  position: relative;
}
.site-notice-icon { font-size: 18px; flex-shrink: 0; }
.site-notice-text {
  margin: 0;
  flex: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.site-notice-text strong {
  color: var(--red);
  font-weight: 800;
}
.site-notice-close {
  border: none;
  background: rgba(0,0,0,0.06);
  color: #6b4a00;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.site-notice-close:hover { background: rgba(0,0,0,0.12); }

@media (max-width: 768px) {
  .site-notice-inner { padding: 9px 14px; gap: 8px; }
  .site-notice-text { font-size: 12px; line-height: 1.5; }
  .site-notice-icon { font-size: 16px; }
  .site-notice-close { width: 24px; height: 24px; font-size: 16px; }
}

/* --- Copyright credit note --- */
.copyright-credit-note {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--tq-light) 0%, var(--cream) 100%);
  border-left: 5px solid var(--tq);
  border-radius: var(--rl);
  box-shadow: var(--sh-s);
}
.copyright-credit-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--tq-dark);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.copyright-credit-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.85;
  margin: 0;
}
.copyright-credit-text strong {
  color: var(--tq-dark);
  background: rgba(0, 183, 183, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.copyright-credit-text small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .copyright-credit-note { padding: 18px 18px; margin-top: 22px; }
  .copyright-credit-title { font-size: 15px; }
  .copyright-credit-text { font-size: 14px; line-height: 1.8; }
  .copyright-credit-text small { font-size: 12px; }
}


/* ===== V43 patches (sub-agent feedback) ===== */
/* HIGH②: Light plan li内テキストの折返し保証 */
.plan-features li span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}
.plan-features li small,
.plan-features li small b {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* MEDIUM③: copyright-credit-note を結論と階層差つける */
.copyright-credit-note {
  margin-top: 40px;
  border-left-width: 4px;
}

/* LOW④: FAQ本文 スマホ可読性 */
@media (max-width: 768px) {
  .faq-content {
    padding: 0 20px 22px !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
  }
  /* LOW⑤: site-notice テキストをスマホでさらに小さく */
  .site-notice-text { font-size: 11.5px; line-height: 1.55; }
}

/* HIGH①: site-notice を sticky にしてheaderの上に積む */
.site-notice {
  position: sticky;
  top: 0;
  z-index: 101;
}
/* site-header が sticky の場合、noticeの下に */
.site-header { z-index: 100; }


/* ============================================
   ===== V43.1 QR LINK ENHANCEMENT =============
   ============================================ */

.qr-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.qr-link img {
  display: block;
  transition: transform 0.2s ease;
}
.qr-link:hover {
  transform: translateY(-2px);
}
.qr-link:hover img {
  filter: brightness(1.04);
}
.qr-link:active img {
  transform: scale(0.98);
}

/* "タップで友だち追加" ヒントバッジ */
.qr-tap-hint {
  display: block;
  margin-top: 10px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #06C755 0%, #04a847 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(6, 199, 85, 0.35);
  letter-spacing: 0.03em;
  animation: tap-hint-pulse 2s ease-in-out infinite;
}
.qr-tap-hint-large {
  font-size: 14px;
  padding: 10px 18px;
  margin-top: 12px;
}
@keyframes tap-hint-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 3px 10px rgba(6,199,85,0.35); }
  50% { transform: scale(1.04); box-shadow: 0 5px 14px rgba(6,199,85,0.5); }
}

/* デスクトップではホバーで強調 */
@media (hover: hover) {
  .qr-link:hover .qr-tap-hint { background: linear-gradient(135deg, #04a847 0%, #06C755 100%); }
}

/* スマホ調整 */
@media (max-width: 768px) {
  .qr-tap-hint { font-size: 12px; padding: 7px 12px; margin-top: 8px; }
  .qr-tap-hint-large { font-size: 13px; padding: 9px 14px; }
}


/* ============================================
   ===== V44 BRAND UNIFY (2026-05-12) =========
   ===== Header & Hero: Champagne aesthetics ==
   ============================================ */

/* ヘッダー：白半透明 → シャンパンベージュ半透明 */
.site-header {
  background: rgba(240, 232, 212, 0.88) !important;
  border-bottom: 1px solid rgba(184, 155, 94, 0.4) !important;
}

/* ヒーロー：クリームピーチグラデ → シャンパンベージュグラデ */
.hero {
  background: linear-gradient(135deg,
    #F0E8D4 0%,
    #FFF4ED 45%,
    #FFF8EC 100%) !important;
  border-top: 4px solid #B89B5E;
  border-bottom: 4px solid #B89B5E;
  position: relative;
}

/* ヒーロー内 hero-badge-top（ロゴバッジ）の背景もシャンパン寄りに */
.hero-badge-top {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(184, 155, 94, 0.3);
}

/* ヒーロー内 hero-badge（モニター枠バッジ）はゴールド枠で統一感 */
.hero-badge {
  background: rgba(255, 255, 255, 0.92) !important;
  /* 既存 border: 2px solid var(--gold); はそのまま */
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .hero {
    border-top-width: 3px;
    border-bottom-width: 3px;
  }
}

/* ===== V47 ADDITIONS: Hero 2列レイアウト ===== */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: left;
  }
  .hero-content .hero-cta {
    justify-content: flex-start;
  }
  .hero-content .hero-badge {
    margin-left: 0;
    margin-right: auto;
  }
  .hero-content .hero-badge-top {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
  .hero-image img {
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .hero-image img {
    max-width: 85%;
  }
}

/* ===== V50: Hero 縦並びレイアウト（画像はCTAの上に中央配置） ===== */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
  .hero-image img {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .hero-image img {
    max-width: 92%;
  }
}

/* ===== V51: 余白圧縮（hero全体のスカスカ感を解消） ===== */
.hero {
  padding-top: 28px;
  padding-bottom: 32px;
}

.hero .hero-badge-top {
  margin-bottom: 16px;
}

.hero .hero-subtitle {
  margin-bottom: 8px;
}

.hero .hero-title {
  margin-bottom: 16px;
}

.hero .hero-tagline {
  margin-bottom: 16px;
}

.hero-image {
  margin: 12px auto;
}

.hero .hero-cta {
  margin-bottom: 16px;
}

.hero .hero-badge {
  margin-top: 4px;
}

/* ===== V52: heroをさらにコンパクト＋ロゴ修正反映 ===== */
.hero {
  padding-top: 16px !important;
  padding-bottom: 24px !important;
}

.hero .hero-badge-top {
  margin-bottom: 12px !important;
}

.hero .hero-subtitle {
  margin-bottom: 4px !important;
}

.hero .hero-title {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.hero .hero-tagline {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

.hero-image {
  margin: 0 auto !important;
}

.hero-image img {
  margin: 0 !important;
}

.hero .hero-cta {
  margin-top: 8px !important;
  margin-bottom: 12px !important;
}

.hero .hero-badge {
  margin-top: 0 !important;
}

/* ===== V53: FV未来ビジョン版（売れるLP化・脱ブランドLP） ===== */

/* オファーバッジ（赤系で目立たせる・緊急性） */
.hero-badge-top-offer {
  background: linear-gradient(135deg, #C8102E 0%, #E63946 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3) !important;
  padding: 10px 20px !important;
}

.hero-badge-top-offer .badge-dot {
  background: #FFD700 !important;
}

.hero-badge-top-offer span:not(.badge-dot) {
  color: #FFFFFF !important;
}

/* 未来ビジョンチェックリスト */
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 20px auto 16px;
  max-width: 580px;
  text-align: left;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2c2825;
  font-weight: 500;
}

.hero-benefits-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8102E 0%, #E63946 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .hero-benefits {
    max-width: 640px;
  }
  .hero-benefits li {
    font-size: 1.12rem;
  }
}

@media (max-width: 767px) {
  .hero-benefits {
    max-width: 92%;
  }
  .hero-benefits li {
    font-size: 0.96rem;
  }
}

/* ===== V54: 解決提示文 ===== */
.hero-solution {
  font-size: 1.0rem;
  line-height: 1.7;
  color: #5a4f47;
  max-width: 620px;
  margin: 8px auto 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid #C8102E;
  border-radius: 6px;
  text-align: left;
}

.hero-solution strong {
  color: #C8102E;
  font-weight: 700;
  font-size: 1.1em;
}

@media (max-width: 767px) {
  .hero-solution {
    font-size: 0.92rem;
    max-width: 92%;
    padding: 12px 16px;
  }
}

/* ===== V56: 診断で見えること5項目 ===== */
.contact-benefits {
  max-width: 680px;
  margin: 24px auto 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #F5EBD9 0%, #FFFFFF 100%);
  border-radius: 12px;
  border-left: 4px solid #C8102E;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-benefits-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #C8102E;
  margin: 0 0 16px;
  text-align: center;
}

.contact-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c2825;
}

.cb-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8102E 0%, #E63946 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .contact-benefits {
    padding: 18px 16px;
    margin: 16px auto 24px;
  }
  .contact-benefits-title {
    font-size: 1rem;
  }
  .contact-benefits-list li {
    font-size: 0.92rem;
  }
}

/* ===== V57: contact レイアウト改善（LINEメイン・メールミニマル） ===== */
@media (min-width: 768px) {
  .contact-methods {
    display: flex !important;
    flex-direction: column !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    gap: 16px !important;
  }

  .contact-card-line {
    padding: 32px 24px !important;
  }

  /* メールカードをコンパクトに（縦長解消） */
  .contact-card:not(.contact-card-line) {
    padding: 20px 24px !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 16px !important;
    align-items: center !important;
    text-align: left !important;
  }

  .contact-card:not(.contact-card-line) .contact-icon {
    grid-row: 1 / 3 !important;
    font-size: 1.8rem !important;
    margin-bottom: 0 !important;
  }

  .contact-card:not(.contact-card-line) h3 {
    margin: 0 !important;
    font-size: 1rem !important;
  }

  .contact-card:not(.contact-card-line) .contact-detail {
    margin: 0 !important;
    grid-column: 2 !important;
  }

  .contact-card:not(.contact-card-line) .contact-note {
    grid-column: 1 / 3 !important;
    margin: 8px 0 0 !important;
    font-size: 0.85rem !important;
  }
}

/* ===== V59: RESEARCH SAMPLE T工務店様向け明示 ===== */
.research-case-notice {
  max-width: 720px;
  margin: 16px auto 24px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  border-left: 4px solid #C9A227;
  border-radius: 8px;
  text-align: left;
}

.research-case-notice-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c2825;
  margin: 0 0 8px;
}

.research-case-notice-title strong {
  color: #C8102E;
  font-size: 1.1em;
}

.research-case-notice-sub {
  font-size: 0.9rem;
  color: #5a4f47;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .research-case-notice {
    padding: 14px 18px;
  }
  .research-case-notice-title {
    font-size: 0.95rem;
  }
  .research-case-notice-sub {
    font-size: 0.85rem;
  }
}

/* ===== Plan Bonus Section (HP分析レポート特典) ===== */
.plan-bonus {
  margin: 0 0 20px 0;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #FFF8EA 0%, #FFEFD6 100%);
  border: 2px dashed var(--gold);
  border-radius: var(--r);
  position: relative;
  flex-shrink: 0;
}
.plan-bonus-premium {
  background: linear-gradient(135deg, #FFF8EA 0%, #FFE8D6 60%, #FFE8EC 100%);
  border-color: var(--red);
}
.plan-bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.plan-bonus-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gg);
  color: var(--white);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(184,155,94,0.3);
}
.plan-bonus-premium .plan-bonus-badge {
  background: var(--gr);
  box-shadow: 0 2px 6px rgba(200,16,46,0.25);
}
.plan-bonus-value {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.plan-bonus-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.plan-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.plan-bonus-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  padding: 2px 0;
  position: relative;
  padding-left: 20px;
}
.plan-bonus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.plan-bonus-premium .plan-bonus-list li::before {
  color: var(--red);
}
.plan-bonus-list li strong {
  color: var(--dark);
  font-weight: 700;
}
.plan-bonus-note {
  font-size: 12px;
  color: var(--gray-l);
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(184,155,94,0.35);
  line-height: 1.6;
}
.plan-bonus-premium .plan-bonus-note {
  border-top-color: rgba(200,16,46,0.25);
}
.plan-bonus-note strong {
  color: var(--red);
  font-weight: 700;
}
@media (max-width: 767px) {
  .plan-bonus { padding: 16px 14px; }
  .plan-bonus-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .plan-bonus-title { font-size: 16px; }
  .plan-bonus-list li { font-size: 13.5px; }
}

/* ===== Price Notice Banner（運用お試し価格のお知らせ） ===== */
.price-notice {
  margin: 32px auto 48px;
  max-width: 760px;
  padding: 22px 28px;
  background: linear-gradient(135deg, #FFF8EA 0%, #FFEFD6 100%);
  border-left: 5px solid var(--gold);
  border-radius: var(--r);
  box-shadow: var(--sh-s);
}
.price-notice-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.price-notice-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px 0;
  line-height: 1.6;
}
.price-notice-title strong {
  color: var(--red);
}
.price-notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-notice-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.price-notice-list li:last-child {
  margin-bottom: 0;
}
.price-notice-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.price-notice-list li strong {
  color: var(--dark);
  font-weight: 700;
}
@media (max-width: 767px) {
  .price-notice { padding: 18px 20px; margin: 24px auto 32px; }
  .price-notice-title { font-size: 16px; }
  .price-notice-list li { font-size: 14px; }
}

/* ===== Guarantee Layout Fix（著作権完全譲渡を全幅・最上段に） ===== */
.guarantee-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.guarantee-card-featured {
  grid-column: 1 / -1;
  order: -1;
  transform: none;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.guarantee-card-featured:hover {
  transform: translateY(-6px);
}
@media (min-width: 768px) {
  .guarantee-card-featured {
    padding: 48px 56px;
  }
  /* 著作権完全譲渡内部の比較ボックスを横並びで広く展開 */
  .copyright-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
  }
  .copyright-compare-col {
    padding: 18px 20px;
  }
  .copyright-compare-col ul li,
  .copyright-compare-col p {
    font-size: 14px;
    line-height: 1.7;
  }
}
@media (max-width: 767px) {
  .guarantee-card-featured {
    padding: 40px 24px;
  }
}

/* ===== Guarantee Layout Fix v2（下段2枚を均等配置） ===== */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 56px auto 0;
  max-width: 920px;
  align-items: stretch;
}
.guarantee-card-featured {
  grid-column: 1 / -1;
  order: -1;
  transform: none;
  max-width: none;
  margin: 0;
  width: auto;
}
.guarantee-card-featured:hover {
  transform: translateY(-6px);
}
@media (max-width: 767px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ===== Plan Cards Layout Fix（カード幅広げ＆読みやすさ向上） ===== */
.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 48px auto 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}
.plan-card {
  padding: 36px 26px;
}
.plan-features li {
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.65;
}
.plan-features li small {
  font-size: 0.78em !important;
  line-height: 1.55 !important;
}
/* 特典ブロックを少し詰めて読みやすく */
.plan-bonus {
  padding: 16px 16px 14px;
}
.plan-bonus-header {
  margin-bottom: 10px;
}
.plan-bonus-title {
  font-size: 16px;
  margin-bottom: 8px;
}
.plan-bonus-list li {
  font-size: 13.5px;
  line-height: 1.55;
  padding: 2px 0 2px 18px;
}
.plan-bonus-note {
  font-size: 11.5px;
  line-height: 1.65;
  padding-top: 8px;
}
@media (max-width: 767px) {
  .plan-bonus-title { font-size: 15px; }
  .plan-bonus-list li { font-size: 13px; }
}


/* ============================================
   TRACK RECORD（これまでの仕事）V89追加
   ============================================ */
.hub-track {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF7 60%, #FFF8EA 100%);
  position: relative;
  overflow: hidden;
}
.hub-track::before {
  content: '';
  position: absolute;
  top: 60px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(184,155,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hub-track .section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin: 16px auto 56px;
  max-width: 640px;
}
.hub-track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.hub-track-card {
  background: var(--white);
  border: 1px solid var(--lg);
  border-radius: var(--rl);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hub-track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.hub-track-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
  border-color: var(--gold);
}
.hub-track-card:hover::before { transform: scaleY(1); }
.hub-track-card[data-cat="photo"]::before { background: var(--red); }
.hub-track-card[data-cat="lecture"]::before { background: var(--tq); }
.hub-track-card[data-cat="media"]::before { background: var(--gold); }
.hub-track-card[data-cat="study"]::before { background: #555; }

.hub-track-deco {
  position: absolute;
  top: -18px; right: -12px;
  font-size: 96px;
  font-weight: 900;
  color: var(--lg);
  opacity: 0.18;
  pointer-events: none;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: right;
}
.hub-track-year {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.hub-track-year .year-range {
  font-size: 22px;
  margin-left: 2px;
  opacity: 0.75;
}
.hub-track-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hub-track-tag.tag-photo {
  background: var(--red-light);
  color: var(--red);
}
.hub-track-tag.tag-lecture {
  background: var(--tq-light);
  color: var(--tq-dark);
}
.hub-track-tag.tag-media {
  background: #FFF4E0;
  color: var(--gold-dark);
}
.hub-track-tag.tag-study {
  background: #F1EFEC;
  color: #555;
}
.hub-track-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}
.hub-track-desc {
  font-size: 13.5px;
  color: var(--gray);
  margin: 0;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.hub-track-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-l);
  line-height: 1.85;
  margin: 48px auto 0;
  max-width: 720px;
}
.about-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 20px;
}
.about-hub-link-sub {
  color: var(--gray) !important;
}
@media (max-width: 1024px) {
  .hub-track-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .hub-track { padding: 70px 0; }
  .hub-track-grid { grid-template-columns: 1fr; gap: 16px; }
  .hub-track-card { padding: 28px 22px 24px; }
  .hub-track-year { font-size: 30px; }
  .hub-track-deco { font-size: 72px; }
  .hub-track-title { font-size: 16px; }
}
