/*
Theme Name: GZG
Theme URI: https://gzg.example.com/
Author: G-Zinnia Group
Description: ジージニアグループ株式会社のコーポレートサイトテーマ。Figmaデザイン準拠（上部固定ヘッダー + フルスクリーンオーバーレイメニュー）。
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gzg
*/

/* ============================
   Tokens
   ============================ */
:root {
    --color-bg: #ffffff;
    --color-fg: #101010;
    --color-fg-muted: #292e3a;
    --color-accent: #8aa867;          /* CTA green (お問い合わせ) */
    --color-accent-dark: #708a52;
    --color-line: #d9d9d9;
    --color-line-muted: #cececf;
    --color-required: #ff0000;
    --color-footer-bg: #000000;
    --color-footer-text: #ffffff;
    --color-placeholder: #cbcbcb;
    --color-meta: #a7a7a7;

    --font-mincho: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-display: "Zen Antique", "Shippori Mincho", serif;
    --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

    --header-h: 115px;
    --content-max: 920px;
}

/* ============================
   Reset
   ============================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--font-mincho);
    color: var(--color-fg);
    background: var(--color-bg);
    line-height: 1.8;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-h);
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .7; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.4; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }

body.is-menu-open { overflow: hidden; }

/* SP-only line break utility (PC では非表示) */
.sp-br { display: none; }

/* ============================
   Top fixed header (Figma 1331:135)
   ============================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: transparent;
    z-index: 100;
}
/* TOP（MVあり）はヘッダー分の余白を取らない＝動画にかぶる */
body.home { padding-top: 0; }
.site-header__inner {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px clamp(16px, 3vw, 40px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}
.site-header__brand {
    display: inline-flex;
    align-items: flex-start;
    line-height: 1;
    min-width: 0;
    flex: 0 1 auto;
}
.site-header__logo {
    height: 75px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* Hamburger button (3 lines, ~35×29) */
.site-header__menu-btn {
    background: transparent;
    border: 0;
    width: 35px;
    height: 29px;
    padding: 0;
    margin-top: 4px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 110;
}
.site-header__menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-fg);
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
}

/* ============================
   Overlay menu (fullscreen)
   ============================ */
.overlay-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.overlay-menu[hidden] { display: none; }
body.is-menu-open .overlay-menu {
    opacity: 1;
    visibility: visible;
}
.overlay-menu__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    text-align: center;
}
.overlay-menu__brand img {
    width: 96px;
    margin: 0 auto 64px;
}
.overlay-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 56px;
    margin-bottom: 56px;
}
.overlay-menu__list a {
    font-family: var(--font-mincho);
    font-size: 18px;
    letter-spacing: .14em;
    color: var(--color-fg);
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.overlay-menu__list a:hover {
    border-bottom-color: var(--color-fg);
    opacity: 1;
}
.overlay-menu__cta {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-fg);
    border: 0;
    border-radius: 999px;
    padding: 18px 96px;
    font-family: var(--font-mincho);
    font-size: 16px;
    letter-spacing: .2em;
    transition: background .2s ease;
}
.overlay-menu__cta:hover {
    background: var(--color-accent-dark);
    opacity: 1;
}
.overlay-menu__close {
    position: absolute;
    top: 22px;
    right: 32px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    padding: 0;
    z-index: 1;
}
.overlay-menu__close::before,
.overlay-menu__close::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--color-fg);
    transform-origin: center;
}
.overlay-menu__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.overlay-menu__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Hide hamburger button while overlay is open (close X is its own button) */
body.is-menu-open .site-header__menu-btn { visibility: hidden; }

/* ============================
   Layout container
   ============================ */
.l-main {
    background: var(--color-bg);
    min-width: 0;
}
.l-container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   Sections
   ============================ */
.section {
    padding: 100px 0;
    position: relative;
}
.section__label {
    font-family: var(--font-display);
    font-size: clamp(64px, 9vw, 128px);
    color: var(--color-line-muted);
    letter-spacing: .08em;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: -.2em;
    user-select: none;
    pointer-events: none;
    text-align: center;
}
.section__title {
    font-family: var(--font-mincho);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .12em;
    margin-bottom: 48px;
    text-align: center;
}

/* ============================
   MV (full-width looping video / PC+SP)
   ============================ */
.mv {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}
.mv__video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* PC: 横長動画を表示、SP用は隠す */
.mv__video--pc { display: block; }
.mv__video--sp { display: none; }
@media (max-width: 768px) {
    .mv__video--pc { display: none; }
    .mv__video--sp { display: block; }
}

/* ============================
   Statement (Figma 891:830)
   ============================ */
.statement {
    position: relative;
    text-align: center;
    padding: 100px 24px 120px;
}

/* Top: STATEMENT background + catch overlay */
.statement__head {
    position: relative;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}
.statement__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(36px, 11vw, 128px);
    color: rgba(206, 206, 207, 0.30);
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}
.statement__catch {
    position: relative;
    z-index: 1;
    font-family: var(--font-mincho);
    font-size: clamp(24px, 2.6vw, 32px);
    letter-spacing: .04em;
    color: var(--color-fg-muted);
    margin: 0;
    margin-top: 10px;
}

/* Body: 7 stanzas, generous line-height */
.statement__body {
    max-width: 920px;
    margin: 0 auto 80px;
}
.statement__body p {
    font-family: var(--font-mincho);
    font-size: 20px;
    line-height: 3.25;
    letter-spacing: .04em;
    color: var(--color-fg);
    margin: 0;
}

.statement__closing {
    font-family: var(--font-mincho);
    font-size: clamp(22px, 2.4vw, 32px);
    color: var(--color-fg);
    letter-spacing: .04em;
    margin: 0;
}

/* ============================
   Service
   ============================ */
.service {
    padding: 50px 0 100px;
}
.service-head {
    max-width: 1131px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.service-head__top {
    position: relative;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.service-head__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(36px, 11vw, 128px);
    color: rgba(206, 206, 207, 0.30);
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.service-head__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-mincho);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 500;
    letter-spacing: .03em;
    color: #000;
    margin: 0;
    margin-top: 10px;
}
.service-head__lead {
    font-family: var(--font-mincho);
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.5;
    letter-spacing: .03em;
    color: #000;
    margin: 0 0 80px;
}

.service-list {
    max-width: 1131px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 45px;
}
.service-item {
    display: grid;
    grid-template-columns: 561fr 480fr;
    gap: 90px;
    align-items: flex-start;
    border-top: 1px solid #000000;
    padding-top: 45px;
}
.service-item:last-child {
    border-bottom: 1px solid #000000;
    padding-bottom: 45px;
}
.service-item__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 480 / 319;
    object-fit: cover;
    display: block;
}
.service-item__title {
    font-family: var(--font-mincho);
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 40px;
    color: #000;
    letter-spacing: 0;
}
.service-item__sub {
    font-family: var(--font-mincho);
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin: 0 0 24px;
    letter-spacing: 0;
}
.service-item__text {
    font-family: var(--font-mincho);
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    letter-spacing: 0;
}
.service-item__text > p { margin: 0 0 1em; }
.service-item__text > p:last-child { margin-bottom: 0; }

/* ============================
   Message (代表メッセージ)
   ============================ */
.message {
    position: relative;
    background: center/cover no-repeat url(assets/images/bg_message.png);
    color: #fff;
    padding: 0;
    overflow: hidden;
}
.message::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}
.message__inner {
    position: relative;
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 200px 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(80px, 12vw, 240px);
    align-items: start;
}
.message__text {
    color: #fff;
    font-family: var(--font-mincho);
    font-size: 16px;
    line-height: 1.14;
    letter-spacing: 0;
}
.message__text p {
    margin: 0 0 18px;
}
.message__text p:last-child {
    margin-bottom: 0;
}
.message__name {
    margin: 144px 0 0;
    color: #fff;
    font-family: var(--font-mincho);
    font-size: 20px;
    line-height: 1.14;
    letter-spacing: 0;
    white-space: nowrap;
}

/* ============================
   Company (Figma 891:1115)
   ============================ */
.company {
    padding: 50px 0 120px;
}
.company-head {
    max-width: 1124px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.company-head__top {
    position: relative;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.company-head__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(36px, 11vw, 128px);
    color: rgba(206, 206, 207, 0.30);
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.company-head__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-mincho);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 500;
    letter-spacing: .03em;
    color: #000;
    margin: 0;
    margin-top: 10px;
}
.company-body {
    max-width: 1124px;
    margin: 0 auto;
    padding: 0 82px;
    box-sizing: border-box;
}
.company-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-mincho);
    font-size: 16px;
}
.company-table tr {
    border-bottom: 1px solid var(--color-line);
}
.company-table th,
.company-table td {
    padding: 24px 0;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
    letter-spacing: 0;
}
.company-table th {
    width: 240px;
    padding-left: 24px;
    padding-right: 96px;
    white-space: nowrap;
}
.company-table td {
    padding-right: 24px;
}

/* ============================
   Contact (Figma 1170:1360)
   ============================ */
.contact {
    padding: 50px 0 120px;
}
.contact-head {
    max-width: 1124px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.contact-head__top {
    position: relative;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.contact-head__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(36px, 11vw, 128px);
    color: rgba(206, 206, 207, 0.30);
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.contact-head__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-mincho);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    letter-spacing: .04em;
    color: #000;
    margin: 0;
    margin-top: 10px;
}
.contact-body {
    max-width: 1124px;
    margin: 0 auto;
    padding: 0 82px;
    box-sizing: border-box;
}

/* Contact form */
.form {
    width: 100%;
    margin: 0 auto;
}
.form__lead {
    text-align: center;
    font-family: 'Shippori Mincho', var(--font-mincho);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 48px;
}
.form__row { margin-bottom: 32px; }
.form__label {
    font-family: var(--font-mincho);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: block;
    color: #000;
}
.form__required {
    color: var(--color-required);
    font-family: 'Shippori Mincho', var(--font-mincho);
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: top;
}
.form__input,
.form__textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    padding: 0 24px;
    height: 50px;
    font: inherit;
    font-family: var(--font-mincho);
    font-size: 14px;
    background: #fff;
    color: var(--color-fg);
    box-sizing: border-box;
}
.form__textarea {
    border-radius: 4px;
    height: 160px;
    padding: 16px 24px;
    resize: vertical;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--color-placeholder); }
.form__check {
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: var(--font-mincho);
    font-size: 12px;
    font-weight: 800;
    margin: 32px 0;
    justify-content: center;
    color: #000;
    text-align: center;
}
.form__check input[type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: #d9d9d9;
    margin: 0;
    flex-shrink: 0;
}
.form__check a { text-decoration: underline; }
.form__submit {
    display: block;
    margin: 16px auto 0;
    background: var(--color-accent);
    color: var(--color-fg);
    border: 0;
    border-radius: 24px;
    width: 296px;
    height: 48px;
    padding: 0;
    font-family: var(--font-mincho);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    transition: background .2s ease, opacity .2s ease;
}
.form__submit:hover {
    background: var(--color-accent-dark);
    opacity: 1;
}
.form__feedback { margin-top: 24px; padding: 16px; border-radius: 8px; }
.form__feedback--ok { background: #e6f7e6; color: #1a6e1a; }
.form__feedback--err { background: #fdecea; color: #a51c1c; }

/* Contact Form 7 overrides */
.wpcf7 form,
.wpcf7-form { width: 100%; }
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form .form__row p { margin: 0; }
.wpcf7-not-valid-tip {
    color: var(--color-required);
    font-size: 12px;
    margin-top: 6px;
    display: block;
}
.wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 16px;
    border-radius: 8px;
    border: 0;
    text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output { background: #e6f7e6; color: #1a6e1a; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output { background: #fdecea; color: #a51c1c; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output { background: #fff7e6; color: #8a5a00; }
.wpcf7-spinner { display: inline-block; vertical-align: middle; margin-left: 12px; }
.wpcf7-acceptance .wpcf7-list-item { margin: 0; display: inline; }
.wpcf7-acceptance .wpcf7-list-item-label { font-size: inherit; }

/* ============================
   Footer (Figma 902:435)
   ============================ */
.site-footer {
    background: #ffffff;
    color: var(--color-fg);
    padding: 40px 0 25px;
    text-align: center;
}
.site-footer__brand {
    margin-bottom: 50px;
}
.site-footer__brand img {
    width: 80px;
    height: auto;
    margin: 0 auto;
    display: block;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 0 auto 50px;
    padding: 0 24px;
    max-width: 1200px;
}
.footer-nav a {
    font-family: var(--font-mincho);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-fg);
    letter-spacing: 0;
    border: 0;
    padding: 0;
    display: inline-block;
}
.site-footer__copy {
    font-family: 'Shippori Mincho', var(--font-mincho);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-fg);
    letter-spacing: 0;
    margin: 0;
}

/* ============================
   Page header (sub pages)
   ============================ */
.page-header {
    text-align: center;
    padding: 100px 0 60px;
}
.page-header__title {
    font-family: var(--font-mincho);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: .2em;
}
.page-body { padding: 0 0 120px; }

/* ============================
   Privacy Policy (Figma 1369:86)
   ============================ */
.privacy {
    padding: 50px 0 120px;
}
.privacy-head {
    max-width: 1303px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.privacy-head__top {
    position: relative;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.privacy-head__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(36px, 11vw, 128px);
    color: rgba(206, 206, 207, 0.30);
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.privacy-head__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-mincho);
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--color-fg-muted);
    margin: 0;
    margin-top: 10px;
}
.privacy-body {
    max-width: 1005px;
    margin: 0 auto;
    padding: 30px 24px 0;
    font-family: var(--font-mincho);
    font-size: 20px;
    line-height: 3.25;
    color: var(--color-fg);
    letter-spacing: 0;
}
.privacy-body p,
.privacy-body ul,
.privacy-body ol { margin: 0 0 32px; }
.privacy-body h2,
.privacy-body h3,
.privacy-body h4 {
    font-family: var(--font-mincho);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    margin: 32px 0 8px;
}
.privacy-body ul,
.privacy-body ol {
    padding-left: 1.4em;
}
.privacy-body li {
    list-style: none;
    position: relative;
    padding-left: 1em;
}
.privacy-body ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}
.privacy-body ol { counter-reset: gzg-list; }
.privacy-body ol li { counter-increment: gzg-list; }
.privacy-body ol li::before {
    content: counter(gzg-list) ".";
    position: absolute;
    left: 0;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
    :root { --header-h: 72px; }
    .site-header__inner { padding: 12px 16px; gap: 12px; }
    .site-header__logo { height: 44px; }
    .site-header__menu-btn { width: 26px; height: 22px; margin-top: 8px; }

    .overlay-menu__inner { padding: 80px 24px 48px; }
    .overlay-menu__brand img { width: 72px; margin-bottom: 40px; }
    .overlay-menu__list {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    .overlay-menu__list a { font-size: 16px; }
    .overlay-menu__cta { padding: 16px 64px; font-size: 15px; }
    .overlay-menu__close { top: 14px; right: 20px; }

    .sp-br { display: inline; }

    .service { padding: 32px 0 64px; }
    .service-head__top { height: 80px; margin-bottom: 24px; }
    .service-head__lead { font-size: 14px; margin-bottom: 48px; }
    .service-list { gap: 40px; }
    .service-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-item__title { font-size: 22px; margin: 0 0 20px; }
    .service-item__sub { font-size: 14px; margin: 0 0 16px; }
    .service-item__text { font-size: 14px; }

    .message__inner {
        width: auto;
        max-width: none;
        padding: 50px 24px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .message__text {
        font-size: 12px;
        line-height: 1.6;
    }
    .message__text p { margin: 0 0 12px; }
    .message__name {
        margin: 0;
        font-size: 14px;
        line-height: 1.14;
        text-align: left;
    }

    .privacy { padding: 32px 0 64px; }
    .privacy-head__top { height: 80px; margin-bottom: 24px; }
    .privacy-body { padding: 16px 20px 0; font-size: 14px; line-height: 2.4; }
    .privacy-body p, .privacy-body ul, .privacy-body ol { margin: 0 0 20px; }
    .privacy-body h2, .privacy-body h3, .privacy-body h4 { font-size: 15px; margin: 20px 0 4px; }

    .contact { padding: 32px 0 64px; }
    .contact-head__top { height: 80px; margin-bottom: 24px; }
    .contact-body { padding: 0 24px; }
    .form__lead { font-size: 12px; margin-bottom: 32px; }
    .form__check { font-size: 11px; }
    .form__submit { width: 240px; }

    .company { padding: 32px 0 64px; }
    .company-head__top { height: 80px; margin-bottom: 24px; }
    .company-body { padding: 0 24px; }
    .company-table { font-size: 14px; }
    .company-table th,
    .company-table td { padding: 16px 0; }
    .company-table th {
        width: 110px;
        padding-left: 0;
        padding-right: 16px;
    }
    .company-table td { padding-right: 0; }

    .section { padding: 64px 0; }
    .statement { padding: 0 16px 64px;}
    .statement__head { height: 80px; margin-bottom: 48px; }
    .statement__catch { font-size: 18px; white-space: nowrap;}
    .statement__body { margin-bottom: 56px; }
    /* SP: 最長行（26字「独創的な意匠性に、ついシャッターを切る瞬間にも憧れる。」）が
       1行に収まるよう viewport 幅から逆算して可変（PCより少し小さめ） */
    .statement__body p {
        font-size: clamp(12px, calc((100vw - 40px) / 32), 14px);
        line-height: 3.5;
    }
    .statement__closing { font-size: 20px; }
    .section__title { font-size: 24px; margin-bottom: 32px; }
    .site-footer { padding: 32px 0 24px; }
    .site-footer__brand { margin-bottom: 32px; }
    .site-footer__brand img { width: 64px; }
    .footer-nav { gap: 16px 24px; margin-bottom: 32px; padding: 0 20px; }
    .footer-nav a { font-size: 13px; }
    .site-footer__copy { font-size: 12px; }
    .page-header { padding: 56px 0 32px; }
    .page-header__title { font-size: 28px; }
}

/* ============================
   reCAPTCHA バッジ非表示 + 法令対応の注記
   ============================ */
.grecaptcha-badge {
    visibility: hidden !important;
}
.recaptcha-notice {
    display: block;
    max-width: 720px;
    margin: 0 auto 16px;
    padding: 0 24px;
    font-size: 11px;
    line-height: 1.6;
    color: var(--color-meta);
}
.recaptcha-notice a { text-decoration: underline; }
