:root {
  --orange: #f47a00;
  --orange-dark: #d85d00;
  --ink: #151515;
  --muted: #686868;
  --paper: #f5f4f1;
  --line: #d8d6d1;
  --white: #fff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif; line-height: 1.8; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.topbar { padding: 7px 5vw; color: #fff; background: var(--ink); font-size: 11px; letter-spacing: .12em; text-align: center; }
.site-header { height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(5vw, calc((100vw - var(--max))/2)); background: #fff; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #eee; }
.brand { display: flex; align-items: center; gap: 15px; }
.logo-box { display: inline-flex; align-items: center; padding: 5px 16px 8px; background: var(--orange); color: #fff; font-family: Arial Black, Arial, sans-serif; font-size: 25px; font-style: italic; font-weight: 900; line-height: 1; letter-spacing: -.07em; transform: skew(-3deg); box-shadow: 4px 4px 0 #1b1b1b; }
.logo-box.large { font-size: 52px; padding: 10px 27px 14px; box-shadow: 8px 8px 0 #1b1b1b; }
.brand-name { font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.global-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.global-nav li { list-style: none; }
.global-nav a:not(.nav-contact) { position: relative; }
.global-nav a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--orange); transition: .2s; }
.global-nav a:hover::after { width: 100%; }
.nav-contact { background: var(--orange); color: #fff; padding: 13px 20px; }
.menu-button { display: none; }

.hero { min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); position: relative; background: var(--paper); overflow: hidden; }
.hero::before { content: ""; width: 250px; height: 250px; border: 70px solid rgba(244,122,0,.08); border-radius: 50%; position: absolute; left: -120px; top: 45px; }
.hero-copy { padding: 105px max(6vw, calc((100vw - var(--max))/2)) 90px; padding-right: 6vw; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .22em; }
.hero h1 { margin: 0; font-size: clamp(44px, 5vw, 76px); line-height: 1.24; letter-spacing: -.04em; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 650px; margin: 30px 0; color: #4c4c4c; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-width: 205px; justify-content: center; align-items: center; min-height: 58px; padding: 12px 24px; border: 2px solid var(--ink); font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 rgba(0,0,0,.18); }
.button.primary { color: #fff; background: var(--orange); border-color: var(--orange); }
.button.secondary { background: #fff; }
.microcopy { margin: 12px 0 0; color: #777; font-size: 11px; }
.photo-slot { background-color: #d4d2cc; background-image: linear-gradient(125deg, rgba(19,19,19,.15), transparent 42%), repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,.09) 19px, rgba(255,255,255,.09) 20px); position: relative; overflow: hidden; }
.photo-slot.has-photo { background-position: center; background-size: cover; background-repeat: no-repeat; }
.photo-slot.has-photo::before { display: none; }
.hero-visual { margin: 46px 0 46px 10px; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.hero-visual::before { content: ""; position: absolute; width: 230px; height: 115%; left: 8%; top: -7%; background: rgba(244,122,0,.82); transform: rotate(13deg); }
.photo-label { position: absolute; left: 50%; top: 50%; transform: translate(-42%, -50%); z-index: 2; text-align: center; color: #222; white-space: nowrap; }
.photo-label strong { display: block; font-size: 18px; letter-spacing: .12em; }
.photo-label span { display: block; margin-top: 4px; font-size: 12px; }
.vertical-type { position: absolute; right: 17px; bottom: 35px; color: #fff; font-size: 10px; letter-spacing: .3em; writing-mode: vertical-rl; }
.hero-index { position: absolute; right: 48%; bottom: 10px; z-index: 3; color: rgba(0,0,0,.12); font-size: 110px; font-weight: 900; line-height: 1; }

.quick-links { width: min(94%, var(--max)); margin: -18px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 3; box-shadow: 0 14px 35px rgba(0,0,0,.10); }
.quick-links a { display: flex; align-items: center; gap: 14px; min-height: 86px; padding: 20px; background: #fff; border-right: 1px solid #eee; font-size: 13px; font-weight: 800; }
.quick-links a:hover { background: var(--orange); color: #fff; }
.quick-links span { color: var(--orange); font-size: 11px; }
.quick-links a:hover span { color: #fff; }

.section { width: min(90%, var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading h2 { margin: 0; font-size: clamp(36px, 4vw, 60px); line-height: 1.3; letter-spacing: -.04em; }
.intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.intro-body { max-width: 680px; }
.intro-body .lead { margin: 0 0 25px; color: #222; font-size: 22px; font-weight: 700; line-height: 1.7; }
.intro-body p:last-child { color: var(--muted); }
.row-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 52px; }
.row-heading > p { width: 420px; margin: 0; color: var(--muted); font-size: 14px; }

.services { padding-top: 40px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 305px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; background: #fff; transition: transform .25s, box-shadow .25s; }
.service-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.service-card.dark { color: #fff; background: var(--ink); }
.service-card.orange { color: #fff; background: var(--orange); }
.service-no { position: absolute; right: 25px; top: 23px; font-size: 11px; font-weight: 800; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 18px 0 50px; border: 2px solid currentColor; border-radius: 50%; font-size: 9px; font-weight: 900; letter-spacing: .06em; }
.service-card h3 { margin: 0 0 11px; font-size: 21px; }
.service-card p { margin: 0; color: #6f6f6f; font-size: 13px; }
.service-card.dark p, .service-card.orange p { color: rgba(255,255,255,.75); }

.rope-section { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; background: var(--ink); color: #fff; }
.rope-photo { margin: 70px 0; clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%); background-color: #454545; }
.rope-photo::before { content: ""; position: absolute; inset: auto 8% -30% auto; width: 420px; height: 620px; border: 2px solid rgba(244,122,0,.75); transform: rotate(-18deg); }
.photo-label.light { color: #fff; }
.rope-copy { padding: 105px max(6vw, calc((100vw - var(--max))/2)) 100px 6vw; }
.rope-copy h2 { margin: 0 0 30px; font-size: clamp(35px, 4vw, 58px); line-height: 1.35; }
.rope-copy > p:not(.eyebrow) { color: #bdbdbd; font-size: 14px; }
.check-list { margin: 35px 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.check-list li { border-top: 1px solid #454545; padding: 14px 0 0 22px; position: relative; font-size: 13px; }
.check-list li::before { content: "+"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.text-link { display: inline-flex; gap: 25px; align-items: center; margin-top: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--orange); font-weight: 800; font-size: 13px; }
.text-link span { color: var(--orange); font-size: 20px; }

.audience { display: grid; grid-template-columns: 1fr 1fr; width: 100%; padding: 0; }
.audience-card { min-height: 570px; padding: 85px max(6vw, calc((100vw - var(--max))/2)); }
.audience-card.business { padding-left: max(6vw, calc((100vw - var(--max))/2)); padding-right: 8vw; background: var(--orange); color: #fff; }
.audience-card.personal { padding-left: 8vw; padding-right: max(6vw, calc((100vw - var(--max))/2)); background: var(--paper); }
.audience-tag { font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.audience-card h2 { margin: 30px 0 20px; font-size: clamp(32px, 3.5vw, 48px); line-height: 1.4; }
.audience-card > p:not(.audience-tag) { font-size: 14px; opacity: .8; }
.audience-card ul { margin: 30px 0; padding: 0; list-style: none; }
.audience-card li { padding: 10px 0; border-bottom: 1px solid rgba(128,128,128,.28); font-size: 13px; }
.audience-card > a { display: inline-flex; gap: 35px; padding-bottom: 5px; border-bottom: 2px solid currentColor; font-size: 13px; font-weight: 900; }

.works { padding-bottom: 135px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card.offset { margin-top: 55px; }
.work-photo { aspect-ratio: 1 / .72; display: grid; place-items: center; text-align: center; color: #555; font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.work-photo small { font-weight: 400; letter-spacing: 0; }
.work-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; color: var(--orange); font-size: 10px; font-weight: 800; }
.work-card h3 { margin: 8px 0 0; font-size: 17px; }
.center { text-align: center; margin-top: 55px; }

.strengths { padding: 110px max(5vw, calc((100vw - var(--max))/2)); display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; color: #fff; background: #1a1a1a; }
.light-heading .eyebrow { color: var(--orange); }
.light-heading h2 { font-size: clamp(36px, 4vw, 58px); }
.strength-list article { display: grid; grid-template-columns: 45px .7fr 1.3fr; gap: 20px; padding: 30px 0; border-top: 1px solid #444; align-items: start; }
.strength-list article:last-child { border-bottom: 1px solid #444; }
.strength-list span { color: var(--orange); font-size: 11px; font-weight: 900; }
.strength-list h3, .strength-list p { margin: 0; }
.strength-list h3 { font-size: 18px; }
.strength-list p { color: #aaa; font-size: 13px; }

.company-layout { margin-top: 55px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.company-message p { margin-top: 42px; color: var(--muted); }
.company-table { margin: 0; border-top: 2px solid var(--ink); }
.company-table div { display: grid; grid-template-columns: 140px 1fr; padding: 19px 8px; border-bottom: 1px solid var(--line); font-size: 13px; }
.company-table dt { font-weight: 800; }
.company-table dd { margin: 0; color: #555; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding: 110px max(5vw, calc((100vw - var(--max))/2)); background: var(--paper); }
.contact-intro h2 { margin: 0 0 30px; font-size: clamp(34px, 4vw, 55px); line-height: 1.4; }
.contact-intro > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.contact-note { margin-top: 35px; padding: 18px; border-left: 4px solid var(--orange); background: #fff; font-size: 12px; font-weight: 700; }
.contact-form { padding: 38px; background: #fff; box-shadow: 0 15px 45px rgba(0,0,0,.07); }
.contact-form label { display: block; margin-bottom: 20px; font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid #ccc; border-radius: 0; background: #fafafa; }
.contact-form textarea { resize: vertical; }
.contact-form .submit { width: 100%; border: 0; }
.form-status { margin: 12px 0 0; color: var(--orange-dark); font-size: 12px; text-align: center; }
.required { margin-left: 5px; color: var(--orange-dark); font-size: 10px; }
.hp-field { position: absolute !important; left: -9999px !important; }
.contact-phone { display: block; margin-top: 28px; color: var(--orange); font-family: Arial, sans-serif; font-size: clamp(30px, 4vw, 48px); font-weight: 900; line-height: 1; }
.custom-logo-link { display: inline-flex; }
.custom-logo { width: auto; max-width: 170px; max-height: 54px; }
.work-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-work h1, .archive h1, .page h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.3; }
.single-work-image { margin: 45px 0; }
.single-work-image img { width: 100%; height: auto; display: block; }
.entry-content { max-width: 850px; font-size: 16px; }
.entry-content img { max-width: 100%; height: auto; }
.pagination { margin-top: 50px; }
.pagination .nav-links { display: flex; gap: 10px; }
.pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--line); }
.admin-bar .site-header { top: 32px; }

.footer { padding: 62px max(5vw, calc((100vw - var(--max))/2)) 30px; color: #fff; background: #0d0d0d; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; margin: 42px 0 60px; color: #bbb; font-size: 12px; }
.footer small { color: #777; font-size: 9px; letter-spacing: .15em; }
.mobile-cta { display: none; }

@media (max-width: 920px) {
  .site-header { height: 72px; padding: 0 5vw; }
  .brand-name { display: none; }
  .logo-box { font-size: 21px; }
  .menu-button { width: 44px; height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 0; background: transparent; }
  .menu-button span { width: 25px; height: 2px; background: var(--ink); }
  .menu-button b { font-size: 7px; letter-spacing: .1em; }
  .global-nav { display: none; position: absolute; left: 0; right: 0; top: 72px; padding: 25px 5vw; background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,.12); flex-direction: column; align-items: stretch; gap: 0; }
  .global-nav.open { display: flex; }
  .global-nav a { padding: 13px 0; border-bottom: 1px solid #eee; }
  .nav-contact { padding: 13px !important; margin-top: 10px; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 6vw 55px; }
  .hero h1 { font-size: clamp(39px, 10vw, 62px); }
  .hero-visual { min-height: 420px; margin: 0; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
  .hero-index { display: none; }
  .quick-links { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .intro, .company-layout, .strengths, .contact { grid-template-columns: 1fr; }
  .section { padding: 85px 0; }
  .intro { gap: 42px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .rope-section { grid-template-columns: 1fr; }
  .rope-photo { min-height: 470px; margin: 0; clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%); order: 2; }
  .rope-copy { padding: 85px 6vw 65px; }
  .audience-card { padding: 70px 6vw; }
  .strengths { padding: 85px 6vw; gap: 45px; }
  .contact { padding: 85px 6vw; }
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 620px) {
  body { padding-bottom: 58px; }
  .topbar { font-size: 9px; }
  .hero-copy { padding-top: 55px; }
  .hero-lead { font-size: 14px; }
  .button { width: 100%; }
  .quick-links a { min-height: 72px; padding: 15px 11px; font-size: 11px; }
  .quick-links span { display: none; }
  .row-heading { display: block; }
  .row-heading > p { width: auto; margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .service-icon { margin-bottom: 30px; }
  .check-list { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .audience-card { min-height: 510px; }
  .works-grid { grid-template-columns: 1fr; gap: 42px; }
  .work-card.offset { margin-top: 0; }
  .strength-list article { grid-template-columns: 35px 1fr; }
  .strength-list p { grid-column: 2; }
  .company-layout { gap: 60px; }
  .logo-box.large { font-size: 38px; }
  .company-table div { grid-template-columns: 100px 1fr; }
  .contact-form { padding: 25px 18px; }
  .footer { padding: 55px 6vw 25px; }
  .mobile-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--orange); color: #fff; text-align: center; font-size: 13px; font-weight: 900; }
  .mobile-cta a { display: block; padding: 16px; }
}
