:root {
  --cream: #fff8e8;
  --paper: #fffdf7;
  --navy: #16213e;
  --red: #e03131;
  --yellow: #ffd447;
  --blue: #6ed4e8;
  --pink: #ff8fa3;
  --white: #fff;
  --green: #20a76b;
  --ink: #111827;
  --shadow: 7px 7px 0 var(--navy);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: system-ui, -apple-system, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif; font-size: 16px; line-height: 1.8; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 4px solid var(--yellow); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 16px; background: var(--navy); color: var(--white); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.inner, .header-inner, .hero-inner, .footer-inner { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 104px 0; }
.narrow { max-width: 900px; }
.section-heading { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 950; letter-spacing: -.055em; line-height: 1.25; text-wrap: balance; word-break: auto; }
.section-heading > p:last-child { margin: 18px 0 0; font-weight: 650; }
.section-heading.light h2, .section-heading.light > p:last-child { color: var(--white); }
.eyebrow { display: inline-block; margin: 0 0 18px; padding: 6px 18px; border: 3px solid var(--navy); color: var(--navy); font-size: .8rem; font-weight: 900; letter-spacing: .12em; line-height: 1.3; transform: rotate(-1deg); box-shadow: 3px 3px 0 var(--navy); }
.eyebrow.red { background: var(--red); color: var(--white); }
.eyebrow.yellow { background: var(--yellow); }
.eyebrow.blue { background: var(--blue); }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 24px; border: 3px solid var(--navy); font-weight: 900; text-decoration: none; line-height: 1.4; box-shadow: 5px 5px 0 var(--navy); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--navy); }
.primary { background: var(--yellow); color: var(--navy); }
.secondary { background: var(--white); color: var(--navy); box-shadow: none; }
.text-link { display: inline-block; margin-top: auto; padding-top: 18px; color: var(--navy); font-weight: 900; text-underline-offset: 4px; }

.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255, 248, 232, .96); border-bottom: 3px solid var(--navy); backdrop-filter: blur(10px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; }
.brand-mark { position: relative; width: 47px; height: 47px; display: grid; place-items: center; padding: 0 4px 5px 0; border: 3px solid var(--navy); border-radius: 50%; background: var(--cream); color: var(--navy); font: 950 1.75rem/1 "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif; transform: rotate(-5deg); box-shadow: 3px 3px 0 var(--yellow); }
.brand-mark::before { content: ""; position: absolute; right: 5px; top: -5px; width: 12px; height: 7px; border: 2px solid var(--navy); border-radius: 100% 0 100% 0; background: var(--green); transform: rotate(-28deg); }
.brand-mark::after { content: ""; position: absolute; right: 4px; bottom: 5px; width: 9px; height: 9px; border: 2px solid var(--navy); border-radius: 50%; background: var(--pink); }
.brand-name { display: grid; grid-template-columns: auto auto; font-weight: 950; font-size: 1.25rem; line-height: 1; letter-spacing: -.04em; }
.brand-name span { color: var(--red); }
.brand-name small { grid-column: 1 / -1; margin-top: 5px; font: 800 .57rem/1 Arial, sans-serif; letter-spacing: .22em; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 27px); }
.site-nav > a { position: relative; font-size: .82rem; font-weight: 850; text-decoration: none; white-space: nowrap; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 3px; background: var(--red); transition: right .18s ease; }
.site-nav > a:hover::after { right: 0; }
.site-nav .nav-cta { padding: 11px 15px; border: 3px solid var(--navy); background: var(--navy); color: var(--white); box-shadow: 4px 4px 0 var(--red); }
.menu-button { display: none; }

.hero { position: relative; isolation: isolate; border-bottom: 4px solid var(--navy); background: var(--cream); overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0 0 74px 51%; background: var(--blue); border-left: 4px solid var(--navy); clip-path: polygon(14% 0,100% 0,100% 100%,0 100%); }
.hero-dots { position: absolute; z-index: -1; inset: 0; opacity: .15; background-image: radial-gradient(var(--navy) 1.5px, transparent 1.5px); background-size: 15px 15px; mask-image: linear-gradient(90deg, transparent, black 65%); }
.hero-inner { min-height: 690px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 40px; padding-block: 70px 58px; }
.comic-label { width: fit-content; margin: 0 0 22px; padding: 8px 14px; border: 3px solid var(--navy); background: var(--white); color: var(--navy); font-size: .9rem; font-weight: 900; line-height: 1.4; box-shadow: 4px 4px 0 var(--navy); transform: rotate(-1deg); }
.comic-label span { color: var(--red); margin-right: 8px; }
.hero h1 { margin: 0; color: var(--navy); font-size: clamp(2.75rem, 5vw, 5.4rem); font-weight: 950; letter-spacing: -.075em; line-height: 1.13; text-wrap: balance; }
.hero h1 em { position: relative; z-index: 0; color: var(--red); font-style: normal; text-shadow: 3px 3px 0 var(--white); }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: -2%; right: -3%; bottom: .06em; height: .28em; background: var(--yellow); transform: rotate(-1.5deg); }
.hero-lead { margin: 28px 0 0; color: var(--navy); font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 900; line-height: 1.65; }
.hero-description { max-width: 650px; margin: 17px 0 0; font-weight: 620; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 28px; }
.hero-note { margin: 17px 0 0; color: #374151; font-size: .86rem; font-weight: 700; }
.hero-visual { position: relative; min-height: 560px; align-self: center; display: grid; place-items: center; padding: 36px 28px 24px; }
.hero-comic { width: min(100%, 500px); display: grid; gap: 8px; }
.hero-comic-panel { --panel-accent: var(--red); position: relative; min-height: 136px; display: grid; grid-template-columns: 44px 90px 1fr; align-items: center; gap: 14px; padding: 17px 20px 17px 17px; border: 4px solid var(--navy); background: var(--paper); color: var(--navy); box-shadow: 7px 7px 0 var(--navy); overflow: hidden; }
.hero-comic-panel::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 10px; background: var(--panel-accent); }
.hero-comic-panel.panel-talk { transform: none; }
.hero-comic-panel.panel-make { --panel-accent: var(--yellow); margin-left: 14px; transform: none; }
.hero-comic-panel.panel-use { --panel-accent: var(--pink); transform: none; }
.panel-no { align-self: start; padding-top: 3px; color: var(--red); font: 950 1.05rem/1 Arial Black, sans-serif; }
.hero-comic-panel b { display: block; font-size: clamp(1.25rem, 2.3vw, 1.65rem); font-weight: 950; line-height: 1.3; }
.hero-comic-panel p { margin: 4px 0 0; font-size: .85rem; font-weight: 750; line-height: 1.5; }
.panel-scene { position: relative; width: 86px; height: 76px; display: grid; place-items: center; border: 3px solid var(--navy); background: var(--blue); }
.bubble-icon { min-width: 48px; min-height: 39px; display: grid; place-items: center; border: 3px solid var(--navy); border-radius: 50%; background: var(--white); color: var(--red); font: 950 1.4rem/1 Arial Black, sans-serif; transform: rotate(-8deg); }
.bubble-icon.small { position: absolute; right: -8px; top: -9px; min-width: 36px; min-height: 29px; background: var(--yellow); color: var(--navy); font-size: .9rem; transform: rotate(7deg); }
.screen-icon { display: flex; align-items: flex-end; justify-content: center; gap: 5px; padding: 15px; background: var(--yellow); }
.screen-icon::before { content: ""; position: absolute; inset: 9px; border: 3px solid var(--navy); background: var(--white); }
.screen-icon i { position: relative; z-index: 1; width: 13px; background: var(--red); border: 2px solid var(--navy); }
.screen-icon i:nth-child(1) { height: 20px; }.screen-icon i:nth-child(2) { height: 35px; background: var(--blue); }.screen-icon i:nth-child(3) { height: 27px; background: var(--pink); }
.cycle-icon { background: var(--pink); color: var(--navy); font: 950 3.6rem/1 Arial Black, sans-serif; }
.hero-comic-arrow { height: 15px; display: grid; place-items: center; color: var(--navy); font: 950 1.7rem/1 Arial Black, sans-serif; }
.burst { position: absolute; z-index: 5; right: 0; top: 4px; width: 91px; aspect-ratio: 1; display: grid; place-items: center; padding: 17px; clip-path: polygon(50% 0,61% 20%,80% 8%,82% 31%,100% 35%,86% 52%,98% 68%,76% 70%,72% 95%,53% 80%,38% 100%,31% 79%,9% 88%,17% 64%,0 55%,20% 43%,4% 25%,28% 27%); background: var(--yellow); color: var(--navy); text-align: center; font-size: .76rem; font-weight: 950; line-height: 1.15; transform: rotate(8deg); filter: drop-shadow(3px 4px 0 var(--navy)); }
.hero-strip { min-height: 74px; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 70px); padding: 14px 24px; border-top: 4px solid var(--navy); background: var(--navy); color: var(--white); }
.hero-strip span { font-weight: 850; }
.hero-strip span::before { content: "✓"; color: var(--yellow); margin-right: 9px; }

.worries { position: relative; background: var(--paper); }
.worries::before, .worries::after { content: ""; position: absolute; width: 80px; height: 80px; background: var(--yellow); clip-path: polygon(50% 0,61% 37%,100% 28%,69% 52%,94% 83%,57% 66%,37% 100%,38% 62%,0 64%,35% 46%,11% 14%,43% 36%); }
.worries::before { top: 55px; left: 4%; }.worries::after { right: 4%; bottom: 60px; background: var(--blue); transform: rotate(20deg); }
.worry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.worry-grid article { --card-color: var(--red); position: relative; min-height: 210px; padding: 30px 27px 27px; border: 3px solid var(--navy); background: var(--cream); box-shadow: 4px 4px 0 var(--navy); }
.worry-grid article::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 10px; background: var(--card-color); }
.worry-grid article b { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 17px; border: 3px solid var(--navy); border-radius: 50%; background: var(--card-color); color: var(--navy); font: 950 1.3rem/1 Arial Black, sans-serif; }
.worry-grid h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.1rem; font-weight: 900; line-height: 1.5; }
.worry-grid p { margin: 0; font-size: .92rem; font-weight: 600; line-height: 1.7; }
.worry-grid .blue-card { --card-color: var(--blue); }.worry-grid .yellow-card { --card-color: var(--yellow); }.worry-grid .pink-card { --card-color: var(--pink); }.worry-grid .navy-card { --card-color: var(--navy); }.worry-grid .navy-card b { color: var(--white); }.worry-grid .sky-card { --card-color: #a9ecf5; }
.comic-closing { width: fit-content; max-width: 930px; margin: 55px auto 0; padding: 19px 30px; border: 4px solid var(--navy); background: var(--red); color: var(--white); text-align: center; font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 950; line-height: 1.35; box-shadow: var(--shadow); transform: rotate(-1deg); }

.services { position: relative; background: var(--navy); color: var(--white); }
.services::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(var(--white) 1px, transparent 1px); background-size: 12px 12px; }
.services .inner { position: relative; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 29px; }
.service-card { --service-color: var(--red); position: relative; min-height: 450px; display: flex; flex-direction: column; padding: 35px; border: 4px solid var(--navy); background: var(--paper); color: var(--ink); text-decoration: none; box-shadow: 9px 9px 0 var(--service-color); transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translate(3px, 3px); box-shadow: 5px 5px 0 var(--service-color); }
.service-card.s-yellow { --service-color: var(--yellow); }.service-card.s-blue { --service-color: var(--blue); }.service-card.s-pink { --service-color: var(--pink); }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.service-top b { color: var(--service-color); -webkit-text-stroke: 1.5px var(--navy); font: 950 2.6rem/1 Arial Black, sans-serif; }
.service-top span { padding: 5px 11px; border: 2px solid var(--navy); background: var(--service-color); color: var(--navy); font-size: .75rem; font-weight: 900; transform: rotate(2deg); }
.service-card > i { width: 75px; height: 75px; display: grid; place-items: center; margin: 24px 0 18px; border: 4px solid var(--navy); border-radius: 50%; background: var(--service-color); color: var(--navy); font-size: 1rem; font-style: normal; font-weight: 950; box-shadow: 4px 4px 0 var(--navy); }
.service-card h3 { margin: 0 0 13px; color: var(--navy); font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 950; line-height: 1.4; }
.service-card > p { margin: 0; font-weight: 600; }
.service-card .service-price { width: fit-content; margin-top: 17px; padding: 7px 11px; border: 2px solid var(--navy); background: var(--yellow); color: var(--navy); font-size: .82rem; font-weight: 950; }
.service-card ul, .price-card ul, .profile-copy ul { margin: 21px 0 0; padding: 0; list-style: none; }
.service-card li, .price-card li, .profile-copy li { position: relative; margin: 7px 0; padding-left: 24px; font-weight: 720; }
.service-card li::before, .price-card li::before, .profile-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 950; }
.service-card small { display: block; margin-top: 18px; padding: 10px 12px; background: #f3f4f6; color: #4b5563; font-size: .78rem; font-weight: 650; line-height: 1.6; }
.service-more { display: block; margin-top: auto; padding-top: 21px; color: var(--navy); font-size: .88rem; font-weight: 950; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.detail-page { --detail-accent: var(--red); background: var(--paper); }
.detail-consult { --detail-accent: var(--red); }.detail-create { --detail-accent: var(--yellow); }.detail-code { --detail-accent: var(--blue); }.detail-workflow { --detail-accent: var(--pink); }
.detail-hero { position: relative; isolation: isolate; padding: 76px 0 82px; border-bottom: 5px solid var(--navy); background: var(--cream); overflow: hidden; }
.detail-hero::before { content: ""; position: absolute; z-index: -2; inset: 0 0 0 63%; border-left: 4px solid var(--navy); background: var(--detail-accent); clip-path: polygon(18% 0,100% 0,100% 100%,0 100%); }
.detail-hero::after { content: attr(data-number); position: absolute; z-index: -1; right: 2vw; bottom: -16%; color: var(--navy); opacity: .12; font: 950 clamp(14rem, 30vw, 31rem)/.8 Arial Black, sans-serif; letter-spacing: -.12em; }
.detail-hero-inner { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.detail-hero h1 { margin: 0; color: var(--navy); font-size: clamp(2.6rem, 5.4vw, 4.7rem); font-weight: 950; letter-spacing: -.07em; line-height: 1.16; text-wrap: balance; }
.detail-hero .detail-lead { max-width: 720px; margin: 25px 0 0; color: var(--navy); font-size: 1.12rem; font-weight: 750; }
.detail-price-card { padding: 29px; border: 4px solid var(--navy); background: var(--paper); color: var(--navy); box-shadow: 7px 7px 0 var(--navy); }
.detail-price-card > span { display: block; font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.detail-price-card strong { display: block; margin: 8px 0; color: var(--red); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 950; line-height: 1.25; }
.detail-price-card p { margin: 6px 0 0; font-size: .85rem; font-weight: 700; }
.detail-section { padding: 82px 0; }.detail-section[id] { scroll-margin-top: 92px; }.detail-section.alt { background: var(--cream); }
.detail-heading { max-width: 820px; margin-bottom: 42px; }.detail-heading h2 { margin: 0; color: var(--navy); font-size: clamp(1.9rem, 3.6vw, 2.85rem); font-weight: 950; letter-spacing: -.05em; line-height: 1.32; text-wrap: balance; }.detail-heading p { font-weight: 650; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.detail-grid > article, .detail-grid > div { position: relative; padding: 27px 24px; border: 3px solid var(--navy); border-top-width: 8px; border-top-color: var(--detail-accent); background: var(--white); box-shadow: 3px 3px 0 var(--navy); }
.detail-grid b { display: block; color: var(--red); font-size: .78rem; letter-spacing: .08em; }.detail-grid h3 { margin: 8px 0; color: var(--navy); font-size: 1.15rem; }.detail-grid p { margin: 0; font-weight: 600; }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 25px; margin: 0; padding: 0; list-style: none; }
.detail-list li { position: relative; padding: 18px 18px 18px 51px; border: 2px solid var(--navy); background: var(--white); font-weight: 750; }
.detail-list li::before { content: "✓"; position: absolute; left: 17px; color: var(--red); font-weight: 950; }
.detail-flow { counter-reset: flow; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.detail-flow li { counter-increment: flow; padding: 24px 20px; border: 3px solid var(--navy); background: var(--white); box-shadow: 3px 3px 0 var(--detail-accent); }
.detail-flow li::before { content: "STEP " counter(flow); display: block; color: var(--red); font: 950 .75rem/1 Arial, sans-serif; }.detail-flow b { display: block; margin: 12px 0 6px; color: var(--navy); font-size: 1.15rem; }.detail-flow p { margin: 0; font-size: .9rem; font-weight: 600; }
.detail-notice { margin-top: 28px; padding: 20px 23px; border-left: 8px solid var(--red); background: #eef4f8; font-weight: 700; }
.detail-back { margin-top: 35px; }
.detail-jump { border-bottom: 4px solid var(--navy); background: var(--navy); color: var(--white); }
.detail-jump .inner { min-height: 62px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 28px; padding-block: 10px; }
.detail-jump a { position: relative; padding: 5px 0 5px 17px; color: var(--white); font-size: .82rem; font-weight: 850; text-underline-offset: 4px; }
.detail-jump a::before { content: "↓"; position: absolute; left: 0; color: var(--yellow); font-weight: 950; }
.detail-option-card { scroll-margin-top: 105px; display: grid; grid-template-columns: 1.2fr .55fr 1fr; align-items: center; gap: 28px; margin-top: 38px; padding: 29px 30px; border: 4px solid var(--navy); background: var(--paper); box-shadow: 6px 6px 0 var(--blue); }
.detail-option-card .eyebrow { margin-bottom: 13px; }
.detail-option-card h3 { margin: 0; color: var(--navy); font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 950; line-height: 1.35; }
.detail-option-card div > p:last-child { margin: 10px 0 0; font-weight: 620; }
.option-price { margin: 0; padding: 16px 10px; border-block: 2px dashed var(--navy); text-align: center; }
.option-price strong, .option-price span { display: block; }.option-price strong { color: var(--red); font-size: 1.65rem; font-weight: 950; line-height: 1.2; }.option-price span { margin-top: 6px; font-size: .75rem; font-weight: 800; }
.detail-option-card ul { margin: 0; padding: 0; list-style: none; }.detail-option-card li { position: relative; margin: 5px 0; padding-left: 22px; font-size: .86rem; font-weight: 760; }.detail-option-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 950; }
.detail-option-card small { grid-column: 1 / -1; padding-top: 15px; border-top: 2px dashed var(--navy); color: #4b5563; font-weight: 700; }

.process { background: var(--cream); border-block: 4px solid var(--navy); }
.process ol { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.process ol::before { content: ""; position: absolute; top: 37px; left: 10%; right: 10%; height: 4px; background: var(--navy); }
.process li { position: relative; padding: 27px 24px; border: 4px solid var(--navy); background: var(--paper); box-shadow: 5px 5px 0 var(--navy); }
.process li > b { position: relative; z-index: 1; display: inline-block; margin-bottom: 24px; padding: 5px 10px; border: 3px solid var(--navy); background: var(--red); color: var(--white); font: 900 .77rem/1.3 Arial, sans-serif; letter-spacing: .08em; }
.process h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.3rem; font-weight: 950; }.process li p { margin: 0; font-size: .9rem; font-weight: 620; }

.reasons { position: relative; background: var(--paper); }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; border: 4px solid var(--navy); background: var(--navy); box-shadow: 10px 10px 0 var(--red); }
.reason-grid article { position: relative; min-height: 225px; padding: 34px 34px 30px 92px; background: var(--paper); color: var(--ink); }
.reason-grid article b { position: absolute; left: 27px; top: 32px; color: var(--red); font: 950 2.3rem/1 Arial Black, sans-serif; }
.reason-grid h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.25rem; font-weight: 950; line-height: 1.5; }.reason-grid p { margin: 0; font-weight: 600; }

.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px 24px; border: 4px solid var(--navy); background: var(--white); box-shadow: 6px 6px 0 var(--navy); }
.price-card.featured { background: #fff6f7; border-color: var(--red); transform: translateY(-10px); box-shadow: 7px 7px 0 var(--red); }.price-card.start-pack { background: #effcff; }
.price-label { margin: 0 0 9px; color: #4b5563; font-size: .75rem; font-weight: 850; }.card-tagline { margin: 9px 0 0; color: #4b5563; font-size: .78rem; font-weight: 800; }.price-card h3 { min-height: 3.2em; margin: 0; color: var(--navy); font-size: 1.25rem; font-weight: 950; line-height: 1.45; }
.price { margin: 24px 0 6px; padding-block: 20px; border-block: 2px dashed var(--navy); text-align: center; }.price strong { display: block; color: var(--red); font-size: clamp(1.55rem, 2.7vw, 2.2rem); line-height: 1.2; }.price span { display: block; margin-top: 7px; font-size: .76rem; font-weight: 700; }.price-sub { margin: 7px 0 0; color: #4b5563; font-size: .75rem; font-weight: 700; text-align: center; }
.price-card ul { margin-top: 20px; font-size: .86rem; }.price-note { margin-top: auto; padding-top: 15px; color: #4b5563; font-size: .75rem; font-weight: 700; }
.recommend, .new-label { position: absolute; top: -18px; right: 15px; padding: 5px 13px; border: 3px solid var(--navy); background: var(--yellow); color: var(--navy); font-size: .76rem; transform: rotate(3deg); box-shadow: 3px 3px 0 var(--navy); }.new-label { background: var(--blue); }
.estimate strong { font-size: 1.35rem; line-height: 1.45; }.center-action { margin-top: 58px; text-align: center; }

.examples { background: var(--cream); border-block: 4px solid var(--navy); }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.example-grid > div { min-height: 128px; display: flex; flex-direction: column; justify-content: space-between; padding: 21px; border: 3px solid var(--navy); background: var(--paper); box-shadow: 3px 3px 0 var(--blue); }
.example-grid > div:nth-child(3n+1) { transform: rotate(-.4deg); }.example-grid > div:nth-child(3n+2) { transform: rotate(.4deg); }
.example-grid b { color: var(--red); font: 950 1.5rem/1 Arial Black, sans-serif; letter-spacing: -.05em; }.example-grid p { margin: 18px 0 0; color: var(--navy); font-weight: 900; line-height: 1.5; }

.about-note { background: var(--paper); }
.about-note-inner { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(40px, 8vw, 100px); }
.about-note-copy h2 { margin: 0 0 25px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 950; letter-spacing: -.05em; line-height: 1.35; }
.about-note-copy > p { max-width: 720px; font-weight: 620; }
.about-note-copy .button { margin-top: 17px; }
.about-note-card { position: relative; padding: 33px 30px 28px; border: 5px solid var(--navy); background: var(--yellow); box-shadow: 10px 10px 0 var(--red); transform: rotate(1deg); }
.about-note-card::before { content: "CHECK"; position: absolute; right: 16px; top: -19px; padding: 4px 10px; border: 3px solid var(--navy); background: var(--blue); color: var(--navy); font: 950 .72rem/1.4 Arial, sans-serif; transform: rotate(4deg); }
.about-note-card > b { color: var(--navy); font-size: 1.3rem; font-weight: 950; }
.about-note-card ul { margin: 19px 0; padding: 0; list-style: none; }
.about-note-card li { position: relative; margin: 10px 0; padding-left: 28px; font-weight: 850; }
.about-note-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 950; }
.about-note-card p { margin: 20px 0 0; padding-top: 15px; border-top: 3px dashed var(--navy); font-size: .86rem; font-weight: 800; }

.subpage-main { background: var(--paper); }
.subpage-hero { position: relative; padding: 82px 0 76px; border-bottom: 5px solid var(--navy); background: var(--cream); overflow: hidden; }
.subpage-hero::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 38%; border-left: 4px solid var(--navy); background: var(--blue); clip-path: polygon(20% 0,100% 0,100% 100%,0 100%); }
.subpage-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 60px; }
.subpage-hero h1 { margin: 0; color: var(--navy); font-size: clamp(2.5rem, 5.4vw, 4.5rem); font-weight: 950; letter-spacing: -.07em; line-height: 1.16; text-wrap: balance; }
.subpage-hero h1 em { color: var(--red); font-style: normal; text-shadow: 3px 3px 0 var(--white); }
.subpage-hero p { margin: 25px 0 0; color: var(--navy); font-size: 1.08rem; font-weight: 750; }
.subpage-quote { position: relative; z-index: 1; padding: 32px; border: 4px solid var(--navy); background: var(--paper); color: var(--navy); font-size: 1.22rem; font-weight: 950; line-height: 1.7; box-shadow: 7px 7px 0 var(--red); }
.story-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.story-label { position: sticky; top: 112px; padding: 27px; border: 3px solid var(--navy); background: var(--yellow); color: var(--navy); box-shadow: 5px 5px 0 var(--navy); }
.story-label b { display: block; font-size: 2rem; font-weight: 950; line-height: 1.2; }
.story-copy h2 { margin: 0 0 28px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 950; letter-spacing: -.05em; line-height: 1.35; }
.story-copy h3 { margin: 35px 0 10px; color: var(--navy); font-size: 1.25rem; }
.story-copy p { font-weight: 600; }
.activity-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 35px; }
.activity-list div { padding: 24px 20px; border: 4px solid var(--navy); background: var(--white); box-shadow: 5px 5px 0 var(--navy); }
.activity-list b { display: block; color: var(--red); font-size: .78rem; letter-spacing: .08em; }
.activity-list p { margin: 9px 0 0; color: var(--navy); font-weight: 850; line-height: 1.55; }

.musubi { padding: 58px 0; border-block: 4px solid var(--navy); background: #e9eedb; }
.musubi-inner { display: grid; grid-template-columns: .65fr 1fr auto; align-items: center; gap: 38px; }.musubi-inner h2 { margin: 3px 0 0; color: #30452c; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 2rem; }.musubi-inner > div p { margin: 0; color: #5d714a; font-size: .76rem; font-weight: 850; letter-spacing: .12em; }.musubi-inner > p { margin: 0; color: #3f5038; font-weight: 600; }.musubi-button { border-color: #30452c; background: #30452c; color: var(--white); box-shadow: 5px 5px 0 #9aa978; }

.faq { background: var(--cream); }
.faq-list { display: grid; gap: 14px; }.faq details { border: 4px solid var(--navy); background: var(--white); box-shadow: 4px 4px 0 var(--navy); }.faq summary { position: relative; padding: 22px 62px 22px 68px; color: var(--navy); font-weight: 900; line-height: 1.5; cursor: pointer; list-style: none; }.faq summary::-webkit-details-marker { display: none; }.faq summary::before { content: "Q"; position: absolute; left: 20px; top: 16px; width: 35px; height: 35px; display: grid; place-items: center; border: 3px solid var(--navy); background: var(--yellow); font: 950 1rem/1 Arial Black, sans-serif; }.faq summary::after { content: "+"; position: absolute; right: 22px; top: 15px; font: 950 2rem/1 Arial, sans-serif; }.faq details[open] summary::after { content: "−"; }.faq details p { margin: 0; padding: 0 28px 24px 68px; font-weight: 580; }

.contact { position: relative; isolation: isolate; padding: 105px 0; border-top: 4px solid var(--navy); background: var(--navy); color: var(--white); overflow: hidden; }.contact::before, .contact::after { content: ""; position: absolute; z-index: -1; width: 320px; aspect-ratio: 1; background: var(--yellow); clip-path: polygon(50% 0,59% 38%,83% 8%,72% 43%,100% 38%,78% 57%,98% 77%,68% 69%,65% 100%,49% 73%,27% 100%,32% 67%,0 77%,25% 55%,0 37%,31% 42%,18% 9%,43% 38%); opacity: .18; }.contact::before { left: -120px; top: -110px; }.contact::after { right: -90px; bottom: -120px; transform: rotate(18deg); }
.contact-inner { text-align: center; }.contact-pop { display: inline-block; margin: 0 0 22px; padding: 7px 15px; border: 3px solid var(--navy); background: var(--yellow); color: var(--navy); font-weight: 900; box-shadow: 4px 4px 0 var(--red); transform: rotate(-2deg); }.contact h2 { max-width: 900px; margin: 0 auto; font-size: clamp(2.1rem, 5vw, 4.2rem); font-weight: 950; letter-spacing: -.055em; line-height: 1.3; }.contact-inner > p:not(.contact-pop,.contact-mail) { margin: 24px 0; font-weight: 700; }.contact-button { margin-top: 12px; padding-inline: 54px; border-color: var(--navy); background: var(--yellow); color: var(--navy); font-size: 1.15rem; box-shadow: 7px 7px 0 var(--red); }.contact-mail { margin: 26px 0 0; font-size: .88rem; font-weight: 650; }.contact-mail a { font-weight: 900; text-underline-offset: 4px; }

.site-footer { padding: 55px 0 28px; background: var(--navy); color: var(--white); }.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; }.footer-inner > div b { font-size: 1.45rem; }.footer-inner > div p { margin: 3px 0 0; color: #cdd6ec; font-size: .83rem; }.footer-inner nav { max-width: 620px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 13px 25px; }.footer-inner a { color: var(--white); font-size: .82rem; font-weight: 700; text-underline-offset: 4px; }.copyright { width: min(1180px, calc(100% - 48px)); margin: 35px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); color: #cdd6ec; font-size: .75rem; text-align: center; }.mobile-line { display: none; }

@media (max-width: 1080px) {
  .site-nav { gap: 12px; }.site-nav > a { font-size: .75rem; }.hero-inner { min-height: 640px; }.speech.left { left: -2%; }.pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }.price-card.featured { transform: none; }
}
@media (max-width: 820px) {
  body { padding-bottom: 70px; }.inner, .header-inner, .hero-inner, .footer-inner { width: min(100% - 32px, 680px); }.section { padding: 78px 0; }.site-header { position: sticky; }.header-inner { min-height: 70px; }.menu-button { display: flex; align-items: center; gap: 7px; border: 0; background: transparent; color: var(--navy); }.menu-button > span { width: 28px; display: grid; gap: 5px; }.menu-button i { display: block; height: 3px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }.menu-button b { font-size: .7rem; }.menu-button[aria-expanded="true"] i:nth-child(1) { transform: translateY(8px) rotate(45deg); }.menu-button[aria-expanded="true"] i:nth-child(2) { opacity: 0; }.menu-button[aria-expanded="true"] i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: 12px 16px 20px; border-bottom: 4px solid var(--navy); background: var(--cream); box-shadow: 0 10px 18px rgba(22,33,62,.16); }.site-nav.is-open { display: grid; }.site-nav > a { min-height: 46px; display: flex; align-items: center; padding: 8px 10px; border-bottom: 1px dashed #9aa4b7; font-size: .9rem; }.site-nav .nav-cta { justify-content: center; margin-top: 7px; border-bottom: 3px solid var(--navy); }
  .hero::before { inset: 48% 0 74px 0; border-top: 4px solid var(--navy); border-left: 0; clip-path: polygon(0 9%,100% 0,100% 100%,0 100%); }.hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 35px; padding-block: 55px 45px; }.hero-copy { text-align: center; }.comic-label { margin-inline: auto; }.hero-description { margin-inline: auto; }.hero-actions { justify-content: center; }.hero-visual { width: min(100%, 560px); min-height: 535px; margin-inline: auto; }.hero-comic { max-width: 500px; }.hero-strip { flex-direction: column; gap: 5px; padding-block: 16px; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); }.service-grid { grid-template-columns: 1fr; }.process ol { grid-template-columns: repeat(2, 1fr); }.process ol::before { display: none; }.reason-grid { grid-template-columns: 1fr; }.example-grid { grid-template-columns: repeat(2, 1fr); }.about-note-inner, .subpage-hero-inner, .story-grid { grid-template-columns: 1fr; }.about-note-card { transform: none; }.subpage-hero { padding-block: 68px; }.subpage-quote { max-width: 570px; }.story-label { position: static; }.activity-list { grid-template-columns: 1fr; }.musubi-inner { grid-template-columns: 1fr; text-align: center; }.musubi-button { margin-inline: auto; }.footer-inner { flex-direction: column; align-items: center; text-align: center; }.footer-inner nav { justify-content: center; }
  .mobile-line { position: fixed; z-index: 1200; left: 12px; right: 12px; bottom: 10px; min-height: 53px; display: flex; align-items: center; justify-content: center; border: 3px solid var(--navy); background: #25d366; color: var(--navy); font-weight: 950; text-decoration: none; box-shadow: 4px 4px 0 var(--navy); }
}
@media (max-width: 560px) {
  body { font-size: 15.5px; }.inner, .header-inner, .hero-inner, .footer-inner { width: min(100% - 24px, 520px); }.section { padding: 67px 0; }.section-heading { margin-bottom: 37px; }.section-heading h2 { font-size: clamp(1.85rem, 8.5vw, 2.4rem); }.brand-mark { width: 41px; height: 41px; padding-bottom: 4px; font-size: 1.45rem; }.brand-mark::before { width: 10px; height: 6px; }.brand-mark::after { width: 8px; height: 8px; }.brand-name { font-size: 1.1rem; }.hero-inner { padding-top: 42px; }.hero h1 { font-size: clamp(2.1rem, 10.5vw, 2.85rem); }.hero-lead { font-size: 1.08rem; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.hero-visual { min-height: 495px; padding: 28px 3px 6px; }.hero-comic { width: calc(100% - 12px); gap: 5px; transform: none; }.hero-comic-panel { min-height: 128px; grid-template-columns: 35px 73px 1fr; gap: 10px; padding: 15px 12px 15px 14px; border-width: 3px; box-shadow: 4px 4px 0 var(--navy); }.hero-comic-panel.panel-talk,.hero-comic-panel.panel-make,.hero-comic-panel.panel-use { margin-inline: 0; transform: none; }.hero-comic-panel b { font-size: clamp(1.02rem, 5.2vw, 1.35rem); }.hero-comic-panel p { font-size: .72rem; }.panel-no { font-size: .78rem; }.panel-scene { width: 70px; height: 62px; border-width: 2px; }.bubble-icon { min-width: 39px; min-height: 32px; border-width: 2px; font-size: 1.05rem; }.bubble-icon.small { min-width: 28px; min-height: 23px; right: -5px; border-width: 2px; }.screen-icon { padding: 10px; }.screen-icon::before { inset: 7px; border-width: 2px; }.screen-icon i { width: 9px; border-width: 1px; }.screen-icon i:nth-child(1) { height: 15px; }.screen-icon i:nth-child(2) { height: 27px; }.screen-icon i:nth-child(3) { height: 21px; }.cycle-icon { font-size: 2.8rem; }.hero-comic-arrow { height: 11px; font-size: 1.25rem; }.burst { width: 72px; right: -4px; top: -7px; padding: 14px; font-size: .65rem; }.worry-grid, .process ol, .pricing-grid, .example-grid { grid-template-columns: 1fr; }.worry-grid article { min-height: 0; }.comic-closing { padding: 15px 18px; box-shadow: 5px 5px 0 var(--navy); }.service-card { min-height: 0; padding: 27px 22px; }.reason-grid article { min-height: 0; padding: 28px 22px 25px 75px; }.reason-grid article b { left: 20px; top: 27px; font-size: 1.8rem; }.price-card { padding: 27px 22px; }.about-note-copy h2, .story-copy h2 { font-size: 2rem; }.about-note-card { padding: 29px 22px 24px; box-shadow: 7px 7px 0 var(--red); }.subpage-hero { padding-block: 52px 58px; }.subpage-hero h1 { font-size: clamp(2.5rem, 13vw, 3.6rem); }.subpage-quote { padding: 25px 22px; font-size: 1.08rem; box-shadow: 7px 7px 0 var(--red); }.story-label b { font-size: 1.65rem; }.faq summary { padding: 19px 49px 19px 57px; }.faq summary::before { left: 14px; top: 14px; width: 31px; height: 31px; }.faq summary::after { right: 15px; }.faq details p { padding: 0 20px 21px 57px; }.contact { padding: 80px 0; }.contact h2 { font-size: 2.25rem; }.contact-button { width: 100%; padding-inline: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* 仕事のAIパーソナルトレーニング */
.goal-section { background: var(--paper); }
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.goal-card { --goal: var(--blue); min-height: 370px; padding: 31px 27px; border: 3px solid var(--navy); background: var(--white); box-shadow: 4px 4px 0 var(--goal); }
.goal-card.goal-post { --goal: var(--pink); }.goal-card.goal-flow { --goal: var(--yellow); }
.goal-card > b { display: inline-block; padding: 8px 13px; border: 3px solid var(--navy); background: var(--goal); color: var(--navy); font: 950 .85rem/1 Arial Black,sans-serif; letter-spacing: .08em; transform: rotate(-2deg); }
.goal-card h3 { margin: 25px 0 12px; color: var(--navy); font-size: 1.55rem; font-weight: 950; line-height: 1.35; }
.goal-card p { margin: 0; font-weight: 620; }.goal-card ul { margin: 22px 0 0; padding: 18px 0 0; border-top: 3px dashed var(--navy); list-style: none; }
.goal-card li { position: relative; margin: 8px 0; padding-left: 23px; font-weight: 800; }.goal-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); }

.cases { background: var(--navy); color: var(--white); }
.case-feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.case-card { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 390px; border: 4px solid var(--navy); background: var(--paper); color: var(--ink); box-shadow: 8px 8px 0 var(--red); overflow: hidden; }.case-card:nth-child(2) { box-shadow-color: var(--blue); }
.case-image { min-height: 100%; background: #dbe5ef; overflow: hidden; }.case-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .25s ease; }.case-image:hover img { transform: scale(1.025); }
.case-copy { display: flex; flex-direction: column; padding: 28px 25px; }.case-tag { width: fit-content; margin: 0 0 16px; padding: 5px 10px; border: 2px solid var(--navy); background: var(--yellow); color: var(--navy); font-size: .75rem; font-weight: 950; }
.case-copy h3,.flyer-copy h3 { margin: 0 0 13px; color: var(--navy); font-size: 1.35rem; font-weight: 950; line-height: 1.45; }.case-copy > p:not(.case-tag) { margin: 0; font-size: .9rem; font-weight: 620; }.case-copy .text-link { margin-right: 8px; font-size: .8rem; }
.flyer-case { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 38px; margin-top: 34px; padding: 38px; border: 4px solid var(--navy); background: var(--blue); color: var(--navy); box-shadow: 8px 8px 0 var(--yellow); }
.flyer-copy > p:not(.case-tag,.past-note) { font-weight: 650; }.past-note { margin: 20px 0 0; padding: 11px 13px; border-left: 6px solid var(--red); background: var(--cream); font-size: .75rem; font-weight: 800; }
.flyer-stack { min-height: 330px; display: flex; align-items: center; justify-content: center; padding: 18px; overflow: hidden; }.flyer-stack img { width: 32%; max-height: 350px; border: 3px solid var(--navy); object-fit: cover; object-position: top; box-shadow: 5px 5px 0 var(--navy); }
.flyer-stack img:nth-child(1) { transform: rotate(-5deg) translateX(13px); }.flyer-stack img:nth-child(2) { z-index: 2; transform: translateY(-7px); }.flyer-stack img:nth-child(3) { transform: rotate(5deg) translateX(-13px); }
.mini-case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 30px; }.mini-case-grid article { padding: 28px; border: 3px solid var(--navy); background: var(--cream); color: var(--navy); box-shadow: 4px 4px 0 var(--pink); }.mini-case-grid b { color: var(--red); font: 950 .75rem/1 Arial,sans-serif; letter-spacing: .12em; }.mini-case-grid h3 { margin: 10px 0; }.mini-case-grid p { margin: 0; color: var(--ink); font-weight: 620; }
.cases-more { margin: 38px 0 0; text-align: center; }.cases-more .button { background: var(--yellow); color: var(--navy); }

.seminar-gap { background: var(--paper); border-block: 4px solid var(--navy); }.gap-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(45px,7vw,90px); }
.gap-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2.1rem,4.5vw,3.8rem); font-weight: 950; letter-spacing: -.055em; line-height: 1.3; }.gap-heading h2 em { color: var(--red); font-style: normal; text-decoration: underline; text-decoration-thickness: .18em; text-decoration-color: var(--yellow); text-underline-offset: -.08em; text-decoration-skip-ink: none; }.gap-heading > p:last-child { margin: 24px 0 0; font-weight: 680; }
.comparison-card { border: 5px solid var(--navy); background: var(--paper); box-shadow: 10px 10px 0 var(--red); transform: rotate(.6deg); }.comparison-head,.comparison-row { display: grid; grid-template-columns: 1fr 1fr; }.comparison-head { background: var(--navy); color: var(--white); font-size: .8rem; font-weight: 900; text-align: center; }.comparison-head span,.comparison-head strong,.comparison-row span,.comparison-row strong { padding: 16px 18px; }.comparison-head strong { background: var(--red); }.comparison-row { border-top: 2px solid var(--navy); font-size: .9rem; }.comparison-row span { color: #4b5563; }.comparison-row strong { border-left: 2px solid var(--navy); color: var(--navy); background: #fff4f4; }.comparison-card > p { margin: 0; padding: 13px 18px; border-top: 3px solid var(--navy); background: var(--blue); color: var(--navy); text-align: center; font-weight: 900; }

.training { background: var(--paper); }.training-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: start; }.fitness-chart { position: sticky; top: 105px; border: 5px solid var(--navy); background: var(--cream); box-shadow: 9px 9px 0 var(--blue); }
.chart-title { display: grid; gap: 6px; padding: 22px 25px; border-bottom: 4px solid var(--navy); background: var(--navy); color: var(--white); }.chart-title span { color: var(--yellow); font: 900 .75rem/1 Arial,sans-serif; letter-spacing: .16em; }.chart-title strong { font-size: 1.35rem; }
.fitness-chart ul { margin: 0; padding: 0; list-style: none; }.fitness-chart li { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; padding: 14px 22px; border-bottom: 2px dashed var(--navy); }.fitness-chart li > span { width: 40px; height: 40px; display: grid; place-items: center; border: 3px solid var(--navy); border-radius: 50%; background: var(--yellow); color: var(--navy); font: 950 .75rem/1 Arial,sans-serif; }.fitness-chart li b,.fitness-chart li small { display: block; }.fitness-chart li small { color: #4b5563; font-size: .75rem; }.fitness-chart > p { margin: 0; padding: 16px 22px; background: var(--blue); color: var(--navy); font-size: .75rem; font-weight: 900; text-align: center; }
.session-plan { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }.session-plan li { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 18px; min-height: 105px; padding: 18px 23px; border: 4px solid var(--navy); background: var(--white); box-shadow: 5px 5px 0 var(--navy); }.session-plan li > b { width: 55px; height: 55px; display: grid; place-items: center; border: 3px solid var(--navy); background: var(--red); color: var(--white); font: 950 1.4rem/1 Arial Black,sans-serif; }.session-plan li:nth-child(even) > b { background: var(--blue); color: var(--navy); }.session-plan span { color: var(--navy); font-size: 1.08rem; font-weight: 950; }.session-plan p { margin: 3px 0 0; font-size: .85rem; font-weight: 620; }
.new-pricing { grid-template-columns: .8fr .8fr 1.2fr; gap: 25px; }.full-button { width: 100%; margin-top: auto; font-size: .82rem; }.personal-card { padding-top: 38px; }.team-plan { display: grid; grid-template-columns: .85fr 1.25fr auto; align-items: center; gap: 30px; margin-top: 38px; padding: 27px 30px; border: 4px solid var(--navy); background: var(--blue); color: var(--navy); box-shadow: 6px 6px 0 var(--navy); }.team-plan h3,.team-plan p { margin: 3px 0 0; }.team-plan .text-link { margin-top: 0; white-space: nowrap; }

@media (max-width: 1080px) { .new-pricing { grid-template-columns: repeat(2,1fr); }.personal-card { grid-column: 1/-1; }.case-card { grid-template-columns: 1fr; }.case-image { height: 260px; }.team-plan { grid-template-columns: 1fr 1.2fr; }.team-plan .text-link { grid-column: 1/-1; } }
@media (max-width: 820px) { .goal-grid,.case-feature-grid,.gap-layout,.training-layout { grid-template-columns: 1fr; }.fitness-chart { position: static; } }
@media (max-width: 560px) { .goal-grid,.new-pricing,.mini-case-grid { grid-template-columns: 1fr; }.personal-card { grid-column: auto; }.goal-card { min-height: 0; padding: 27px 22px; }.case-card { grid-template-columns: 1fr; }.case-image { height: 260px; }.case-copy { padding: 24px 21px; }.flyer-case { grid-template-columns: 1fr; padding: 25px 18px; }.flyer-stack { min-height: 245px; padding: 8px 0; }.flyer-stack img { max-height: 260px; }.comparison-card { transform: none; box-shadow: 6px 6px 0 var(--red); }.comparison-head span,.comparison-head strong,.comparison-row span,.comparison-row strong { padding: 12px 9px; }.comparison-row { font-size: .77rem; }.session-plan li { grid-template-columns: 48px 1fr; gap: 12px; padding: 15px; }.session-plan li > b { width: 44px; height: 44px; }.team-plan { grid-template-columns: 1fr; padding: 23px 20px; }.team-plan .text-link { grid-column: auto; white-space: normal; } }

.detail-inline-price { color: var(--red); font-size: 1.15rem; font-weight: 950; }
.production-plan { background: var(--yellow); }
.production-plan small { display: inline-block; margin-top: 7px; color: var(--navy); font-weight: 850; }
.detail-home-link { color: var(--white); font-weight: 850; text-underline-offset: 4px; }
.two-choice { grid-template-columns: repeat(2,1fr); }
.case-detail-grid { grid-template-columns: repeat(2,1fr); }.case-detail-grid article { display: flex; flex-direction: column; }.case-detail-grid img { width: 100%; height: 270px; margin-bottom: 18px; border: 3px solid var(--navy); object-fit: cover; object-position: top; }
.six-flow { grid-template-columns: repeat(3,1fr); }
@media (max-width: 820px) { .two-choice,.case-detail-grid,.six-flow,.detail-hero-inner,.detail-grid,.detail-list,.flyer-case,.detail-option-card { grid-template-columns: 1fr; }.detail-flow { grid-template-columns: repeat(2, 1fr); }.detail-hero::before { inset: 55% 0 0; border-top: 4px solid var(--navy); border-left: 0; clip-path: polygon(0 14%,100% 0,100% 100%,0 100%); }.detail-hero .nav-cta { font-size: .8rem; }.detail-price-card { max-width: 430px; }.detail-option-card small { grid-column: auto; }.subpage-hero::after { width: 100%; top: 58%; border-top: 4px solid var(--navy); border-left: 0; clip-path: polygon(0 16%,100% 0,100% 100%,0 100%); } }
@media (max-width: 560px) { .detail-flow { grid-template-columns: 1fr; }.detail-jump .inner { justify-content: flex-start; gap: 3px 18px; }.detail-jump a { font-size: .75rem; }.detail-option-card { padding: 24px 20px; box-shadow: 4px 4px 0 var(--blue); } }

/* AI活用事例 */
.case-study-page { --detail-accent: var(--blue); }
.case-study-page .detail-hero::after { right: -1vw; bottom: 2%; font-size: clamp(6rem, 16vw, 14rem); letter-spacing: -.08em; }
.case-policy strong { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.case-showcase { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.case-showcase.reverse { grid-template-columns: 1.05fr .95fr; }
.case-showcase.reverse .case-showcase-visual { order: 2; }
.case-showcase-visual { border: 4px solid var(--navy); background: var(--white); box-shadow: 6px 6px 0 var(--red); overflow: hidden; }
.case-study-page .case-showcase-visual.portrait { position: static; z-index: auto; right: auto; bottom: auto; width: auto; aspect-ratio: auto; background: var(--white); transform: none; }
.case-showcase-visual.wide { box-shadow-color: var(--blue); }
.case-showcase-visual img { width: 100%; height: 100%; max-height: 580px; display: block; object-fit: cover; object-position: top; }
.case-showcase-visual.portrait img { aspect-ratio: 3 / 4; }
.case-showcase-copy h3 { margin: 24px 0 10px; color: var(--navy); font-size: 1.35rem; font-weight: 950; }
.case-showcase-copy h3:first-child { margin-top: 0; }
.case-showcase-copy p { font-weight: 620; }
.case-addon { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-top: clamp(32px, 5vw, 56px); padding: clamp(22px, 4vw, 36px); border: 3px solid var(--navy); background: var(--paper); box-shadow: 5px 5px 0 var(--pink); }
.case-addon h3 { margin: 0 0 12px; color: var(--navy); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 950; line-height: 1.45; }
.case-addon-copy > p:not(.case-tag) { margin: 0; font-weight: 650; }
.case-addon-copy .case-addon-note { margin-top: 14px; font-size: .82rem; }
.case-addon img { width: 100%; height: auto; display: block; align-self: center; border: 3px solid var(--navy); background: var(--white); object-fit: contain; }
.detail-list.compact { grid-template-columns: 1fr; gap: 9px; }
.detail-list.compact li { padding-block: 12px; }
.case-steps { margin: 0; padding-left: 1.4rem; font-weight: 700; }
.case-steps li { margin: 7px 0; padding-left: 5px; }
.flyer-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; align-items: start; }
.flyer-gallery figure { display: flex; flex-direction: column; margin: 0; padding: 16px; border: 3px solid var(--navy); background: var(--white); box-shadow: 4px 4px 0 var(--yellow); }
.flyer-gallery figure:nth-child(even) { box-shadow-color: var(--pink); }
.flyer-gallery img { width: 100%; height: auto; display: block; background: var(--cream); object-fit: contain; }
.flyer-gallery figcaption { padding: 14px 4px 2px; color: var(--navy); font-size: .9rem; font-weight: 850; text-align: center; }
.case-author { background: var(--cream); }
.case-author-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 45px; padding: 38px; border: 4px solid var(--navy); background: var(--white); box-shadow: 6px 6px 0 var(--red); }
.case-author-card h2 { margin: 0; color: var(--navy); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 950; }
.case-author-card p:not(.eyebrow) { margin-bottom: 0; font-weight: 620; }
@media (max-width: 820px) { .case-showcase,.case-showcase.reverse,.case-addon { grid-template-columns: 1fr; }.case-showcase.reverse .case-showcase-visual { order: 0; }.case-author-card { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .flyer-gallery { grid-template-columns: 1fr; gap: 24px; }.flyer-gallery figure { padding: 10px; border-width: 3px; box-shadow: 4px 4px 0 var(--yellow); }.flyer-gallery figcaption { font-size: .8rem; }.case-author-card { padding: 26px 20px; box-shadow: 6px 6px 0 var(--red); } }

/* 記事（ブログ） */
.article-body { width: min(760px, 100% - 48px); margin-inline: auto; padding: 60px 0 90px; }
.article-body > p { font-weight: 600; line-height: 2; }
.article-body h2 { margin: 54px 0 16px; padding: 3px 0 3px 15px; border-left: 9px solid var(--red); color: var(--navy); font-size: clamp(1.3rem, 3.4vw, 1.7rem); font-weight: 950; line-height: 1.5; }
.article-body h3 { margin: 34px 0 10px; color: var(--navy); font-size: 1.12rem; font-weight: 900; }
.article-body ul, .article-body ol { margin: 14px 0; padding-left: 26px; }
.article-body li { margin: 7px 0; font-weight: 620; line-height: 1.9; }
.article-lead { padding: 22px 24px; border: 4px solid var(--navy); background: var(--cream); box-shadow: 6px 6px 0 var(--yellow); font-weight: 750; }
.article-quote { margin: 20px 0; padding: 18px 22px; border-left: 8px solid var(--blue); background: var(--paper); font-weight: 700; }
.prompt-box { margin: 18px 0; padding: 22px 24px; border: 4px solid var(--navy); background: var(--navy); color: var(--white); box-shadow: 6px 6px 0 var(--blue); }
.prompt-box b { display: block; margin-bottom: 12px; color: var(--yellow); font-size: .8rem; letter-spacing: .1em; }
.prompt-box p { margin: 0; font-family: "Yu Gothic", sans-serif; font-size: .95rem; font-weight: 600; line-height: 1.95; white-space: pre-wrap; }
.check-list { margin: 20px 0; padding: 26px 28px; border: 4px solid var(--navy); background: var(--paper); box-shadow: 6px 6px 0 var(--pink); list-style: none; }
.check-list li { position: relative; padding-left: 30px; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 950; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 20px 0 0; font-size: .82rem; font-weight: 800; }
.article-meta span { padding: 5px 12px; border: 2px solid var(--navy); background: var(--yellow); color: var(--navy); }
.article-cta { margin-top: 56px; padding: 32px 30px; border: 5px solid var(--navy); background: var(--cream); box-shadow: 9px 9px 0 var(--red); text-align: center; }
.article-cta h2 { margin: 0 0 12px; padding: 0; border: 0; font-size: clamp(1.3rem, 3.6vw, 1.8rem); }
.article-cta p { margin: 0 0 20px; font-weight: 650; }
.article-source { margin-top: 40px; padding: 16px 20px; border: 3px dashed var(--navy); background: var(--paper); font-size: .86rem; font-weight: 700; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.blog-card { display: flex; flex-direction: column; padding: 30px 28px; border: 4px solid var(--navy); background: var(--paper); color: var(--ink); text-decoration: none; box-shadow: 7px 7px 0 var(--blue); transition: transform .18s ease, box-shadow .18s ease; }
.blog-card:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--blue); }
.blog-card b { color: var(--red); font: 950 .75rem/1 Arial, sans-serif; letter-spacing: .1em; }
.blog-card h2 { margin: 13px 0 10px; color: var(--navy); font-size: 1.2rem; font-weight: 950; line-height: 1.55; }
.blog-card p { margin: 0; font-size: .92rem; font-weight: 620; }
.blog-card span { margin-top: auto; padding-top: 18px; color: var(--navy); font-size: .85rem; font-weight: 950; text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 820px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .article-body { width: min(100% - 32px, 560px); padding: 44px 0 70px; }
  .prompt-box, .check-list { padding: 20px 18px; }
  .article-cta { padding: 26px 20px; box-shadow: 6px 6px 0 var(--red); }
}

/* 規約・404ページ（プライバシーポリシー・特定商取引法・Not Found） */
.legal-main { background: var(--paper); }
.legal-hero { padding: 72px 0 64px; border-bottom: 4px solid var(--navy); background: var(--blue); }
.legal-hero h1 { margin: 0; color: var(--navy); font-size: clamp(1.9rem, 4.5vw, 3.1rem); font-weight: 950; letter-spacing: -.05em; line-height: 1.3; }
.legal-date { margin: 16px 0 0; color: var(--navy); font-size: .85rem; font-weight: 800; }
.legal-body { width: min(860px, 100% - 48px); margin-inline: auto; padding: 64px 0 96px; }
.legal-body > p { font-weight: 600; }
.legal-body h2 { margin: 42px 0 12px; padding: 2px 0 2px 14px; border-left: 8px solid var(--red); color: var(--navy); font-size: 1.18rem; font-weight: 950; line-height: 1.5; }
.legal-body ul { margin: 8px 0; padding-left: 24px; }
.legal-body li { margin: 4px 0; font-weight: 600; }
.legal-table { width: 100%; margin-top: 34px; border-collapse: collapse; border: 4px solid var(--navy); background: var(--white); box-shadow: 7px 7px 0 var(--navy); }
.legal-table th, .legal-table td { padding: 16px 19px; border-bottom: 2px solid var(--navy); text-align: left; vertical-align: top; line-height: 1.75; }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }
.legal-table th { width: 31%; border-right: 2px dashed var(--navy); background: var(--cream); color: var(--navy); font-size: .92rem; font-weight: 900; }
.legal-table td { font-size: .95rem; font-weight: 600; }
.notfound { padding: 110px 0 120px; text-align: center; }
.notfound-code { margin: 0; color: var(--yellow); font: 950 clamp(6rem, 20vw, 10rem)/1 Arial Black, sans-serif; letter-spacing: -.02em; -webkit-text-stroke: 4px var(--navy); text-shadow: 6px 6px 0 var(--red); }
.notfound h1 { margin: 20px 0 0; color: var(--navy); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 950; }
.notfound p { margin: 18px 0 36px; font-weight: 650; }
@media (max-width: 600px) {
  .legal-body { width: min(100% - 32px, 520px); padding: 48px 0 76px; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border-right: 0; border-bottom: 0; padding-bottom: 6px; }
  .legal-table td { border-bottom: 2px solid var(--navy); padding-top: 6px; }
  .legal-table tr:last-child td { border-bottom: 0; }
}

/* 用語集 */
.term-legend { margin: 24px 0 8px; padding: 18px 22px; border: 3px dashed var(--navy); background: var(--cream); font-size: .9rem; font-weight: 750; line-height: 1.9; }
.term-legend b { color: var(--red); }
.term-nav { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 8px; padding: 0; list-style: none; }
.term-nav li a { display: inline-block; padding: 7px 13px; border: 3px solid var(--navy); background: var(--white); color: var(--navy); font-size: .85rem; font-weight: 900; text-decoration: none; box-shadow: 3px 3px 0 var(--blue); }
.term-nav li a:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--blue); }
.term { margin: 34px 0; padding: 26px 28px; border: 4px solid var(--navy); background: var(--paper); box-shadow: 7px 7px 0 var(--yellow); scroll-margin-top: 96px; }
.term:nth-of-type(even) { box-shadow: 7px 7px 0 var(--blue); }
.term h3 { margin: 0; padding: 0; color: var(--navy); font-size: 1.35rem; font-weight: 950; line-height: 1.4; }
.term h3 span { display: block; margin-top: 3px; color: #4b5563; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.term-level { margin: 12px 0 16px; padding: 6px 12px; display: inline-block; border: 2px solid var(--navy); background: var(--yellow); color: var(--navy); font-size: .78rem; font-weight: 900; }
.term p { margin: 12px 0 0; font-weight: 620; line-height: 1.95; }
.term p b { display: block; margin-bottom: 3px; color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .06em; }
.term-note { margin-top: 16px !important; padding: 14px 16px; background: var(--cream); border-left: 6px solid var(--red); font-size: .93rem; }
@media (max-width: 560px) {
  .term { padding: 20px 18px; box-shadow: 5px 5px 0 var(--yellow); }
  .term:nth-of-type(even) { box-shadow: 5px 5px 0 var(--blue); }
  .term h3 { font-size: 1.2rem; }
  .term-nav li a { font-size: .8rem; padding: 6px 10px; }
}

/* 比較表（列が多い表はスマホで横スクロール） */
.table-scroll { margin: 34px 0 0; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 4px solid var(--navy); box-shadow: 7px 7px 0 var(--navy); background: var(--white); }
.table-scroll .compare-table { width: 100%; min-width: 620px; margin: 0; border: 0; box-shadow: none; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 13px 14px; border-bottom: 2px solid var(--navy); border-right: 1px dashed #9aa4b7; text-align: left; vertical-align: top; font-size: .86rem; line-height: 1.7; }
.compare-table tr:first-child th { background: var(--navy); color: var(--white); font-weight: 900; }
.compare-table tr:first-child th:first-child { background: var(--navy); }
.compare-table tr:not(:first-child) th { width: 22%; background: var(--cream); color: var(--navy); font-weight: 900; white-space: nowrap; }
.compare-table td { font-weight: 650; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }
.table-hint { margin: 10px 0 0; color: #4b5563; font-size: .78rem; font-weight: 750; }
@media (max-width: 700px) { .table-hint::before { content: "→ "; } }
@media (min-width: 701px) { .table-hint { display: none; } }
