/* ===== Tokens ===== */
:root {
    --c-bg: #FAF8F4;
    --c-ink: #1b1e24;
    --c-muted: #6c7280;
    --c-surface: #f5f8fb;
    --c-line: #AAAAAA;

    /* ブルー系トーン（スクショに合わせた近似） */
    --c-primary: #34A9EE;
    --c-primary-ink: #fff;
    --c-primary-soft: #dff6fd;

    --c-svc1: #FF7851;
    --c-svc2: #57C18D;
    --c-svc3: #F4B400;
    --c-svc4: #B58CD9;
    --c-svc5: #A67C52;

    --container: 1120px;
    --radius: 16px;
    --shadow: 0 6px 24px rgba(0, 0, 0, .06);

    --fz-hero: clamp(32px, 3.6vw, 48px);
    --fz-h2: clamp(30px, 2.2vw, 32px);
    --fz-h3: 20px;
    --fz-base: 16px;
    --lh: 1.8;

    /* Spacing scale */
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 40px;
    --space-7: 64px;
    --space-section: var(--space-7);
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--c-ink);
    background: var(--c-bg);
    line-height: var(--lh);
    letter-spacing: .02em;
}

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

/* ===== Global link style ===== */
a {
    text-decoration: none;
    transition: opacity 0.25s ease;
}

a:hover {
    opacity: 0.7;
}

/* ===== Layout ===== */
.container {
    max-width: calc(var(--container) + 40px);
    padding-inline: 20px;
    margin-inline: auto;
}

.section {
    padding-block: var(--space-section);
}

/* Company section: tighter vertical spacing */
/* Unified section spacing applies; custom company padding removed */

.section__title {
    font-size: var(--fz-h2);
    margin: 0 0 var(--space-5);
}

.section__lead {
    color: var(--c-ink);
    margin: 100px 0 0 0;
    font-weight: 500;
}

/* ===== Header ===== */
.site-header {
    z-index: 20;
    backdrop-filter: saturate(120%) blur(6px);
    padding-top: 12px;
    padding-bottom: 8px;
}

.hdr__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: unset;
    height: auto;
    padding-block: 14px;
}

.brand {
    display: inline-flex;
    align-items: center
}

.brand img {
    width: 420px;
    height: auto;
}

.nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    font-weight: 500;
}

.nav__list a {
    padding: 8px 14px;
}

.nav__list li+li {
    margin-left: 12px; /* match right-side padding for symmetric spacing */
    position: relative;
    padding-left: 12px; /* symmetric spacing: 12px left & right of separator */
}

.nav__list li+li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #333333;
}

/* Always show header nav; hamburger disabled */

.nav__list li a.btn::before {
    display: none !important;
}

.nav__list li a.btn {
    position: relative;
}

/* 追加部分 */
.nav__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__list a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 24px;
}

.nav__list a {
    display: inline-block;
    padding: 10px 8px
}

/* ニュースとボタン系の間の仕切り線を削除 */
.nav__list li:last-of-type::before,
.nav__list li:nth-last-of-type(2)::before {
    display: none;
}

/* Tighter spacing before phone/consultation buttons */
.nav__list li:nth-last-of-type(2),
.nav__list li:last-of-type {
    padding-left: 0;   /* no separator, so remove extra inset */
    margin-left: 8px;  /* bring items closer together */
}


.btn--sm {
    height: 36px;
    padding: 0 14px;
    border-radius: 999px
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--c-line);
    font-weight: 500;
    text-decoration: none;
    color: var(--c-ink);
}

.btn--primary {
    background: var(--c-primary);
    color: var(--c-primary-ink);
    border-color: transparent
}


/* ===== Hero ===== */

.hero {
    background: linear-gradient(180deg, var(--c-primary-soft), #fff);
    height: var(--hero-h, 60vh);
}

.hero__inner {
    display: block;
    padding: 0;
    max-width: 100%;
    height: 100%;
}


.hero__visual {
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

/* ===== Feature / Fleet ===== */
.feature__media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: left center;
}

.feature__media.right-bleed {
    border-radius: 18px 0 0 18px;
    margin-left: calc((100% - var(--container)) / 2);
    overflow: hidden;
}

.feature__media.left-bleed {
    border-radius: 0 18px 18px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc((100% - var(--container)) / 2);
    overflow: hidden;
}

.feature__text {
    margin-top: var(--space-3);
    margin-bottom: var(--space-5);
}

.h3 {
    font-size: var(--fz-h3);
    margin: 0 0 8px
}

/* ===== Cards (Services) ===== */
.cards {
    margin: var(--space-4) 0 var(--space-6);
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: start;
}

.card {
    border-radius: 16px;
    display: grid;
    gap: 10px;
    background: #FFF;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card__thumb {
  border-radius: 12px 12px 0 0;
    display: block;
    width: 100%;
    margin: 0;
}

.card__title {
    margin: 0;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.card__media img {
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.card__body {
  padding: 20px 32px 32px;
}

.cards .card:nth-child(1) .card__media {
    border-bottom: 4px solid var(--c-svc1);
}
.cards .card:nth-child(2) .card__media {
    border-bottom: 4px solid var(--c-svc2);
}
.cards .card:nth-child(3) .card__media {
    border-bottom: 4px solid var(--c-svc3);
}
.cards .card:nth-child(4) .card__media {
    border-bottom: 4px solid var(--c-svc4);
}
.cards .card:nth-child(5) .card__media {
    border-bottom: 4px solid var(--c-svc5);
}

/* Area page: remove bottom border under card media only on area.html */
.page-area .cards .card .card__media {
    border-bottom: 0;
}

.cards .card:nth-child(1) .card__title { color: var(--c-svc1); }
.cards .card:nth-child(2) .card__title { color: var(--c-svc2); }
.cards .card:nth-child(3) .card__title { color: var(--c-svc3); }
.cards .card:nth-child(4) .card__title { color: var(--c-svc4); }
.cards .card:nth-child(5) .card__title { color: var(--c-svc5); }

/* Override: force black title for specific card when marked */
.cards .card .card__title.card__title--black { color: var(--c-ink); }

.card__text {
    margin: 0;
    color: var(--c-ink)
}


/* ===== Company ===== */
.company {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 28px;
    align-items: start;
    margin: var(--space-3) 0
}

.company__photo img {
    border-radius: 14px
}

.company__table {
    margin: 0;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    border-top: 1px solid var(--c-line)
}

.company__table>div {
    display: contents
}

.company__table dt,
.company__table dd {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--c-line)
}

.company__table dt {
    color: var(--c-primary);
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company__table dd {
    margin: 0;
    padding: 14px 16px;
}

/* Company section title style — match feature h3 */
#company .section__title {
    color: #34A9EE;
    font-size: 28px;
    font-weight: 500;
    position: relative;
    display: block;
    text-align: center;
    line-height: 1.4;
    margin: 0 0 var(--space-5);
}

#company .section__title::before {
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    background: url('../img/icon-office.png') center/contain no-repeat;
}

/* underline removed per request */

/* ===== Map ===== */
.map__embed {
    border-radius: 0;
    overflow: hidden;
    border: none;
}

/* Make map section full width */
.map .container {
    max-width: none;
    padding-inline: 0;
}

.map__embed img {
    width: 100%;
    height: auto;
    display: block;
}

.map__link {
    text-align: right;
    margin-top: 8px;
}

/* ===== Flow (Steps) ===== */
.flow { padding-block: var(--space-section); }
.flow-step {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.flow-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.flow-step__bar {
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: var(--c-primary);
  flex: 0 0 auto;
}
.flow-step__kicker {
  color: var(--c-primary);
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap; /* keep "STEP 1" together */
  flex: 0 0 auto;      /* do not shrink below content width */
}
.flow-step__title {
  font-size: var(--fz-h2);
  font-weight: 500;
  margin: 0;
}
.flow-step__body p {
  margin: 0 0 16px;
  font-size: 18px;
  color: #3a3f49;
}
.flow-step__media { margin: 0; }
.flow-step__media img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 960px) {
  .flow-step { grid-template-columns: 1fr; gap: 24px; }
  .flow-step__media img { aspect-ratio: 16 / 10; }
}

/* ===== CTA Banner (Redesigned) ===== */
.cta {
    background: transparent;
    padding-block: var(--space-section);
}

.cta__bar {
    background: var(--c-primary);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 14px 16px;
    /* banner width */
    max-width: 740px;
    margin: 0 auto;
    border-radius: 0;
}

.cta__panel {
    text-align: center;
    padding: 20px 0 24px;
}

.cta__block { margin: 0 0 20px; }

.cta__num--big {
    margin: -24px 0 -24px;
    font-size: clamp(40px, 9vw, 72px);
    font-weight: 800;
    letter-spacing: .02em;
}

.cta__num--big a { color: inherit; text-decoration: none; }

.cta__note {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.cta__hours {
    margin: 6px 0 0;
    font-weight: 700;
    font-size: 28px;
}

/* CTA width constraint */
.cta .container {
    max-width: 740px;
    background: #fff;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--c-primary);
    color: var(--c-primary-ink);
}

.ftr__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 0
}

.ftr__logo {
    opacity: .95;
    width: 400px;
    height: auto;
}

.ftr__copy {
    opacity: .9
}

/* Footer nav overrides */
.site-footer .nav__list a { color: var(--c-primary-ink); }
.site-footer .nav__list li+li::before { background-color: rgba(255, 255, 255, 0.6); }
.site-footer .nav__list { gap: 0; }
/* Re-enable separators for the last two footer items */
.site-footer .nav__list li:last-of-type::before,
.site-footer .nav__list li:nth-last-of-type(2)::before {
    display: block;
}

/* ===== Back to Top button ===== */
.to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 68px;
    height: 68px;
    border-radius: 34px;
    background: #fff;
    color: #1fa6ff;
    border: 2px solid #1fa6ff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.to-top.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.to-top svg { color: currentColor; }

.to-top:hover { opacity: .95; }
.to-top:focus { outline: 2px solid #1fa6ff; outline-offset: 2px; }

/* ===== Floating contact banner ===== */


.floating-contact {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1100;
}

.floating-contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 72px;
    min-height: 156px;
    padding: 18px 12px;
    border-radius: 36px;
    background: #1fa6ff;
    color: #fff;
    border: 1px solid transparent;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-contact__item:hover,
.floating-contact__item:focus {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.floating-contact__item:focus { outline: 3px solid rgba(255,255,255,.75); outline-offset: 4px; }

.floating-contact__item--form { background: #FFA800; }

.floating-contact__item--tel {
    background: linear-gradient(150deg, #1fa6ff, #3bc7ff);
}
.floating-contact__label--desktop {
    display: inline;
    font-size: 18px;
    font-weight: 700;
}

.floating-contact__label--mobile,
.floating-contact__tel--mobile {
    display: none;
}

.floating-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    font-size: 16px;
}

.floating-contact__icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.floating-contact__body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: 600;
    letter-spacing: .12em;
}

.floating-contact__label { font-size: 16px; }

.floating-contact__body--tel {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: .08em;
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact__tel {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .12em;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.floating-contact__tel--mobile { display: none; }

.floating-contact__tel--desktop { display: inline; font-size: 16px !important; font-weight: 700; }

@media (max-width: 767px) {
    .floating-contact {
        top: auto;
        right: 50%;
        bottom: 18px;
        transform: translate(50%, 0);
        flex-direction: row;
        gap: 8px;
    }

    .floating-contact__item {
        flex-direction: column;
        width: auto;
        min-height: auto;
        padding: 10px 18px;
        border-radius: 999px;
        gap: 6px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
    }

    .floating-contact__body {
        writing-mode: horizontal-tb;
        letter-spacing: .02em;
        gap: 4px;
    }

    .floating-contact__label { font-size: 14px; }

    .floating-contact__body--tel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        letter-spacing: .02em;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .floating-contact__label--desktop { display: none; }

    .floating-contact__label--mobile,
    .floating-contact__tel--mobile {
        display: block;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .02em;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .site-footer .ftr__inner {
        padding-bottom: 80px;
    }

    .floating-contact__tel--desktop { display: none; }

    .floating-contact__icon { display: none; }

    .to-top { display: none; }

    body.has-floating-contact .to-top { bottom: 88px; }
}

/* 「ご相談」ボタン専用スタイル */
.nav__list a[href="#contact"],
.nav__list a[href="estimate.html"] {
    background: #FFAE00;
    color: #fff;
    border-color: transparent;
}

/* ===== Mobile hamburger ===== */
.site-header .nav .menu-close { display: none; }
.hamburger { display: none; }

  @media (max-width: 640px) {
  /* Align logo and hamburger on one row */
  .hdr__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-block: 8px;
    min-height: 56px;
  }
  .brand { display: inline-flex; align-items: center; }
  .brand img { height: 32px; width: auto; }
  /* Tighten right edge space only for header */
  .site-header .container { padding-right: 12px; }
  /* Hide inline nav; use hamburger */
  .site-header .nav { display: none; }
  .hamburger {
    position: relative; /* keep in flex row for vertical centering */
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: none;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1400; /* above overlay */
    margin-left: auto; /* push to right edge */
  }
  .hamburger__bar,
  .hamburger__bar::before,
  .hamburger__bar::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
    position: relative;
  }
  .hamburger__bar::before { position: absolute; transform: translateY(-7px); }
  .hamburger__bar::after { position: absolute; transform: translateY(7px); }

  /* Fullscreen menu when open */
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header .nav {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1300;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 12px;
    padding-top: calc(16px + env(safe-area-inset-top));
    padding-right: calc(12px + env(safe-area-inset-right));
    padding-left: calc(12px + env(safe-area-inset-left));
  }
  /* Unify close control: use hamburger (X) as close, hide separate button */
  .site-header .nav .menu-close { display: none !important; }
  /* When open, keep in flow so it stays centered with logo */
  body.menu-open .hamburger { position: relative; top: auto; right: auto; }
  body.menu-open .site-header .nav .nav__list {
    display: grid;
    gap: 8px; /* tighter vertical gap between items */
    background: #fff;
    padding: 44px 22px;
    border-radius: 14px;
    width: min(94vw, 400px);
    margin: 32px auto;
    /* 1列をパネル幅いっぱいにし、基本は中央寄せ */
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
    border: 1px solid rgba(0,0,0,.08);
    animation: menuIn .18s ease-out both;
  }
  /* Reset left offsets so all items align centered equally */
  body.menu-open .site-header .nav .nav__list li { margin: 0; padding: 0; }
  body.menu-open .site-header .nav .nav__list li+li { margin-left: 0; padding-left: 0; }
  body.menu-open .site-header .nav .nav__list li+li::before { display: none; }
  body.menu-open .site-header .nav .nav__list a {
    display: block;
    padding: 10px 12px; /* tighter vertical padding */
    min-height: 44px; /* slightly shorter rows */
    font-size: 18px;
    line-height: 1.25; /* tighter line-height */
    border-radius: 10px;
    text-align: center; /* center text for all items */
    width: auto; /* 非ボタンは内容幅のまま中央 */
  }
  /* 開状態ではボタンをオーバル（最大丸）に */
  body.menu-open .site-header .nav .nav__list a.btn {
    border-radius: 9999px;
    box-shadow: none;
    padding: 12px 20px; /* slightly tighter vertical padding for buttons */
    min-height: 48px;
  }
  /* 電話・ご相談は横幅いっぱい */
  body.menu-open .site-header .nav .nav__list a[href^="tel:"],
  body.menu-open .site-header .nav .nav__list a[href="estimate.html"] {
    justify-self: stretch;
    width: 100%;
  }
  body.menu-open .site-header .nav .nav__list a:hover {
    background: rgba(0,0,0,.04);
  }
  body.menu-open .site-header .nav .nav__list a:focus-visible {
    outline: 3px solid var(--c-primary);
    outline-offset: 2px;
  }

  /* Turn hamburger into X when open (centered) */
  body.menu-open .hamburger__bar { background: transparent; position: relative; }
  body.menu-open .hamburger__bar::before,
  body.menu-open .hamburger__bar::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    border-radius: 2px;
  }
  body.menu-open .hamburger__bar::before { transform: translate(-50%, -50%) rotate(45deg); }
  body.menu-open .hamburger__bar::after  { transform: translate(-50%, -50%) rotate(-45deg); }
}

/* Open menu animation */
@keyframes menuIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== CTA mobile adjustments ===== */
@media (max-width: 640px) {
  .cta__panel { padding: 16px 0 20px; }
  .cta__block { margin: 0 0 12px; }
  .cta__num--big { margin: 0; }
  .cta__num--big a {
    white-space: nowrap;      /* prevent number wrapping */
    display: inline-block;
  }
  .cta__note {
    font-size: 16px;
    line-height: 1.5;
    margin-top: -14px;
  }
  .cta__hours {
    font-size: 14px;
    margin-top: 8px;
  }
}

/* ===== About section ===== */
.about__inner {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
    gap: 40px;
}

.about__inner .vertical-title {
    /* Make top and bottom margins equal on desktop */
    margin: var(--space-5) auto;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #34A9EE;
    font-size: var(--fz-h2);
    line-height: 2;
    letter-spacing: 0.5em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root { --space-section: 48px; }
  .hdr__inner {
    gap: 10px;
    padding-block: 8px;
    min-height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .brand img { height: 38px; width: auto; max-width: none; }
  /* Fix header on mobile */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: var(--c-bg);
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.has-fixed-header { padding-top: var(--hdr-h, 56px); }
  /* Show header nav on mobile */
  .site-header .nav { display: block; }
  /* Show all items including 'ホーム' in mobile menu */
  /* Hide footer nav on mobile */
  .site-footer .nav { display: none; }

  /* Hero: show full image on mobile */
  .hero { height: auto; }
  .hero__inner { height: auto; }
  .hero__visual { height: auto; }
  .hero__visual img { height: auto; object-fit: contain; object-position: center top; }
  /* Remove side padding in hero container to avoid gutters */
  .hero .container.hero__inner { padding-inline: 0 !important; }

  /* About: equalize top/bottom spacing on mobile */
  .about__inner .vertical-title { margin: var(--space-3) auto; }
  .section__lead { margin: var(--space-3) 0 0 0; }

  .feature__media.right-bleed,
  .feature__media.left-bleed {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cards { grid-template-columns: 1fr; gap: 24px; }

  .company { grid-template-columns: 1fr; gap: 18px; }
  .company__photo img { width: 100%; height: auto; }
  .company__table { grid-template-columns: 120px 1fr; }

  .h3 { font-size: 18px; }

  .site-footer .nav__list { flex-wrap: wrap; justify-content: center; }
}

/* Removed intermediate breakpoint; hamburger takes over up to 1100px */

/* ===== Tablet/Laptop (769px–1100px): logo left, 2-row nav right ===== */
@media (min-width: 769px) and (max-width: 1279px) {
  .hdr__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .brand img { width: 360px; height: auto; }
  .hamburger { display: none; }
  .site-header .nav { display: block; }
  .site-header .nav .nav__list {
    display: flex;
    flex-wrap: wrap;            /* allow two rows */
    white-space: normal;        /* allow wrapping */
    overflow: visible;
    justify-content: flex-end;  /* align to right */
    column-gap: 12px;           /* a bit tighter */
    row-gap: 4px;               /* a bit tighter */
  }
  /* Make nav items slightly more compact on ~1024px */
  .site-header .nav .nav__list a {
    padding: 6px 10px;
    font-size: 14px;
  }
  .site-header .nav .nav__list a.btn {
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
  }
  .site-header .nav .nav__list li { margin: 0; padding: 0; }
  .site-header .nav .nav__list li+li { margin-left: 0; padding-left: 0; }
  .site-header .nav .nav__list li+li::before { display: none; }
}

/* ===== Profile card (About) ===== */
/* 大枠は既存の .svc-card を使用し、他ページへ影響しないように限定クラスで微調整 */
.svc-card--profile {
  border-radius: 28px;
}

/* このセクション内だけ左右パディングを32pxに */
.svc-guide--profile .container { padding-inline: 32px; }
@media (max-width: 768px) { .svc-guide--profile .container { padding-inline: 32px; } }
@media (max-width: 560px) { .svc-guide--profile .container { padding-inline: 32px; } }

/* 罫線を淡色にしてXDの雰囲気に寄せる */
.svc-card--profile .company__table { border-top: none; }
.svc-card--profile .company__table dt,
.svc-card--profile .company__table dd { border-bottom-color: rgba(0,0,0,.12); }

/* 左ラベルは左寄せに（他箇所は既存のまま） */
.svc-card--profile .company__table dt {
  text-align: left;
  display: block;            /* 既存のflex中央寄せを打ち消し */
  align-items: initial;
  justify-content: initial;
}

/* スマホ時：行ごとの内側カード化を抑止（親カード内の二重カード化防止） */
@media (max-width: 560px) {
  .svc-card--profile .company__table { border-top: none; }
  .svc-card--profile .company__table > div {
    background: transparent;
    box-shadow: none;
    padding: 12px 0;   /* 既存の余白を維持 */
  }
  .svc-card--profile .company__table dt,
  .svc-card--profile .company__table dd { border: none; }
  .svc-card--profile .company__table > div + div { border-top: 1px solid rgba(0,0,0,.12); }
}

/* 最終行の下罫線を削除（最下部のボーダーを消す） */
.svc-card--profile .company__table > div:last-child dt,
.svc-card--profile .company__table > div:last-child dd {
  border-bottom: none;
}

/* アクセシビリティ用（見た目非表示） */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ===== News (Archive) ===== */
.news-archive .news__container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.news__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.news__card a {
  display: block;
  background: #fff;
  color: inherit;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.news__thumb { margin: 0; }
.news__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.news__body { padding: var(--space-4) var(--space-5) var(--space-5); }
.news__date {
  display: block;
  color: var(--c-muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.news__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 18px;
  color: #27303d;
}
.news__excerpt {
  margin: 0;
  color: #3a3f49;
  font-size: 15px;
  line-height: 1.8;
}

/* Sidebar */
.news__aside {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  /* 上側を少しゆったり */
  padding: var(--space-4) 20px 20px;
}
.news__aside-title {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3; /* 位置合わせ用に明示 */
}
.news__aside-title:not(:first-child) { margin-top: var(--space-4); }
.news__aside-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;               /* 青線を上下中央に配置 */
  transform: translateY(-50%);
  width: 8px;
  height: 1.2em;          /* 見出しサイズに追従 */
  background: var(--c-primary);
  border-radius: 999px;
}
.news__archive {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news__archive li { border-top: 1px solid rgba(0,0,0,.1); }
.news__archive li:first-child { border-top: none; }
.news__archive a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  color: var(--c-ink);
}
.news__archive a::before {
  content: "";
  width: 8px; height: 8px;
  border: 2px solid var(--c-primary);
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(-45deg);
}

/* ===== News (Single) ===== */
.news-single .news__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}

.news-entry {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 48px);
}

.news-entry__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 14px;
}

.news-entry__date { color: var(--c-muted); }

.news-entry__cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--c-primary-soft, rgba(16,108,254,0.12));
  color: var(--c-primary);
  font-weight: 600;
  font-size: 13px;
}

.news-entry__title {
  margin: 0 0 20px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: #27303d;
  font-weight: 700;
}

.news-entry__thumb {
  margin: 0 0 28px;
  border-radius: 14px;
  overflow: hidden;
}

.news-entry__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.news-entry__content {
  color: #3a3f49;
  font-size: 16px;
  line-height: 1.9;
  display: grid;
  gap: 20px;
}

.news-entry__content h3 {
  margin: 16px 0 0;
  font-size: 20px;
  color: #27303d;
  font-weight: 700;
}

.news-entry__content ul {
  margin: 0 0 12px 1.2em;
  padding: 0;
  list-style: disc;
  display: grid;
  gap: 6px;
}

.news-entry__footer {
  margin-top: 36px;
  text-align: center;
}

.news-entry__back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.news-entry__back::before {
  content: "";
  width: 8px; height: 8px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .news-archive .news__container,
  .news-single .news__container {
    grid-template-columns: 1fr;
  }
  .news-entry__thumb { margin-bottom: 24px; }
}

/* Pagination (WP互換の .page-numbers を装飾) */
.news__pagination { margin-top: var(--space-5); }
.news__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news__pagination .page-numbers a,
.news__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  text-decoration: none;
  font-weight: 500;
}
.news__pagination .page-numbers .current {
  background: var(--c-primary);
  color: var(--c-primary-ink);
  border-color: transparent;
}
.news__pagination .page-numbers .prev,
.news__pagination .page-numbers .next {
  min-width: auto;
}

/* ===== Estimate form ===== */
.estimate .form-card { max-width: 860px; margin: 0 auto; }
.estimate-form .form__table {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-top: 1px solid rgba(0,0,0,.12);
}
.estimate-form .form__row { display: contents; }
.estimate-form .form__label,
.estimate-form .form__field { border-bottom: 1px solid rgba(0,0,0,.12); }
.estimate-form .form__label {
  color: var(--c-primary);
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
}
.estimate-form .form__field { padding: 12px 16px; }
.estimate-form .form__field--choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}
.estimate-form .form__choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  cursor: pointer;
}
.estimate-form .form__choice input[type="radio"] {
  width: 18px;
  height: 18px;
}
.estimate-form .form__control {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
}
.estimate-form textarea.form__control { min-height: 160px; resize: vertical; }
.estimate-form .req {
  display: inline-block;
  margin-left: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #E57547; /* 指定色 */
  font-size: 14px;
  line-height: 1;
}
.estimate-form .form__agree { margin: 18px 0 8px; }
.estimate-form .form__agree-note {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--c-muted);
}
.estimate-form .form__agree-note a { color: var(--c-primary); text-decoration: underline; }
.estimate-form .form__actions { text-align: center; margin-top: 10px; }
.form__actions--spaced { margin-top: 32px; }

@media (max-width: 560px) {
  .estimate-form .form__table { grid-template-columns: 1fr; border-top: none; }
  .estimate-form .form__label {
    text-align: left;
    justify-content: flex-start;
    padding: 12px 0 6px;
    border-bottom: none;
  }
  .estimate-form .form__field { padding: 0 0 16px; }
}

  @media (max-width: 560px) {
  /* Align menu-close with container padding on very small screens */
  /* Pin hamburger a bit closer on very small screens */
  body.menu-open .hamburger { right: 12px; }
  .container { padding-inline: 16px; }
  .company__table { grid-template-columns: 1fr; border-top: none; }
  /* Company table: card-like rows for clarity */
  .company__table > div { 
    display: block; 
    padding: 12px 14px; 
    background: #fff; 
    border: none; /* remove card border on mobile */
    border-radius: 12px; 
    box-shadow: var(--shadow); /* add subtle drop shadow */
  }
  .company__table > div + div { margin-top: 12px; }
  .company__table dt { 
    display: block; 
    text-align: left; 
    border: none; 
    padding: 0; 
    margin: 0 0 4px; 
    font-size: 14px; 
    color: var(--c-primary); 
  }
  .company__table dd { 
    border: none; 
    padding: 0; 
    margin: 0; 
    color: #27303d; 
    line-height: var(--lh); 
  }
  .cta__num--big { font-size: clamp(28px, 9.5vw, 72px); }
  .about__inner { grid-template-columns: 1fr; }
  .about__inner .vertical-title {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    letter-spacing: .08em;
    line-height: 1.3;
    text-align: center;
    margin: 8px auto; /* equal top/bottom spacing on small screens */
  }
}

/* --- */



#services .section__title {
    position: relative;
    padding-left: 20px;
    margin-top: 0;
}

#services .section__title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    background-color: #34A9EE;
    border-radius: 999px;
}

.text-center {
    text-align: center;
}

.text-center {
    text-align: center;
}

.feature__numbered {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.feature__num {
        display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #34A9EE;
    color: #fff;
    font-weight: 500;
    font-size: 40px;
        line-height: 58px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: -45px;
    position: relative;
    z-index: 2;
}

.feature__text .h3 {
    color: #34A9EE;
    font-size: 28px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    line-height: 1.4;
}

.feature__text .h3::after {
    content: "";
    display: block;
    width: 65px;
    height: 2px;
    background-color: #34A9EE;
    margin: 40px auto 0;
}

.feature__desc {
  max-width: 590px;
  margin: 0 auto;
  text-align: justify;
}

  .card__subtitle {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
  }

/* ===== Smartphone: hide header nav list (but show when open) ===== */
@media (max-width: 768px) {
  .site-header .nav .nav__list { display: none; }
  body.menu-open .site-header .nav .nav__list { display: grid !important; }
}

/* ===== Page Title Image (service top) ===== */
/* The very first right-bleed figure under main (service page title image) */
main#main > .feature__media.right-bleed:first-of-type {
  height: 279px;
  overflow: hidden;
  /* Adjust this to change left gap from the viewport */
  margin-left: 40px;
  position: relative; /* for overlay */
}

/* Make the title image fill the fixed-height figure */
main#main > .feature__media.right-bleed:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep small left gap on mobile, overriding the mobile reset above */
@media (max-width: 768px) {
  main#main > .feature__media.right-bleed:first-of-type {
    margin-left: 16px;
    margin-right: 0;
    border-radius: 18px 0 0 18px; /* keep same rounding as desktop on left */
  }
  main#main > .feature__media.right-bleed:first-of-type img {
    /* Center the image within the fixed-height figure on mobile */
    object-position: center center;
  }
}

/* Blur + blue tint overlay on the title image (XD spec) */
main#main > .feature__media.right-bleed:first-of-type::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 169, 238, 0.25); /* fill: #34A9EE @ 25% */
  backdrop-filter: blur(4px) brightness(1.25); /* blur:4, brightness:25% */
  -webkit-backdrop-filter: blur(4px) brightness(1.25);
  border-radius: inherit;
  pointer-events: none;
}

/* Fallback when backdrop-filter is unsupported: blur directly on image */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  main#main > .feature__media.right-bleed:first-of-type img {
    filter: blur(4px) brightness(0.25);
  }
}

/* ===== Common Page Title block ===== */
.page-title {
  position: relative;
  margin: -100px 0 var(--space-6);
}

/* ===== Services page intro (heading + lead) ===== */
.page-intro { padding-top: 24px; padding-bottom: 0; margin-bottom: var(--space-section); }
.page-intro .feature__numbered { margin-bottom: 0; }
.feature__numbered--no-num .feature__num { display: none; }
.page-intro__heading {
  color: var(--c-primary);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 80px;
  line-height: 1.6;
}
.page-intro__desc { max-width: 760px; margin: 0 auto; }
.page-intro__desc p { margin: 0; color: #27303d; text-align: left; font-weight: 600; }
@media (max-width: 768px) {
  .page-intro { padding-top: 8px; }
  .page-intro__heading {
    font-size: clamp(22px, 6vw, 30px);
    margin: 0 0 var(--space-5); /* tighten space above image on mobile */
  }
}

.page-title__panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-bg);
  border-radius: 24px; /* soft rounded corners like the mock */
  padding: 24px 28px;
  text-align: center;
}

.page-title__en {
  margin: 0;
  color: var(--c-primary);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: .08em;
}

.page-title__ja {
  margin: 6px 0 0;
  color: var(--c-ink);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-title { margin: -50px 0 28px; }
  .page-title__panel { border-radius: 20px; padding: 18px 20px; max-width: 300px; }
  .page-title__en { letter-spacing: .04em; }
}

/* ===== Service guide block ===== */
.svc-guide { padding-top: 16px; }
.svc-guide__lead {
  text-align: center;
  font-size: clamp(30px, 2.2vw, 22px);
  font-weight: 400;
  margin: 0 0 8px;
}
.svc-guide__lead .emph { color: var(--c-svc1); }
.svc-guide__toggle { margin: 4px auto 60px; }

.svc-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px 28px 32px;
  max-width: 860px;
  margin: 0 auto;
}
.svc-card__title {
  margin: 0 0 30px;
  text-align: center;
  color: var(--c-primary);
  font-size: clamp(30px, 2.2vw, 24px);
  font-weight: 400;
}
/* Add top margin only for duplicated Driver Dispatch title */
#svc-card-title-2b, #svc-card-title-4b { margin-top: var(--space-section); }
.svc-card__desc { max-width: 720px; margin: 0 auto 16px; }
.svc-card__row { margin: 22px 0 0; }
.svc-card__sub {
  position: relative;
  margin: 32px 0 16px;
  padding-left: 24px;
  font-size: 30px;
  font-weight: 400;
}
.svc-card__sub::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 8px; height: 30px;
  background: var(--c-primary);
  border-radius: 6px;
}
.svc-card__text { margin: 0; }
.svc-card__list { margin: 0; padding-left: 1.2em; list-style: none; }
.svc-card__list li { margin: 6px 0; position: relative; }
.svc-card__list li::before {
  content: "";
  position: absolute;
  left: -1.2em; /* align with list padding */
  top: 0.75em;
  width: 4px; height: 4px; /* thinner bullet */
  background: currentColor;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .svc-card { padding: 22px 18px 24px; border-radius: 20px; }
  /* Smartphone: bump key headings to 24px */
  .svc-guide__lead,
  .svc-card__title,
  .svc-card__sub { font-size: 24px; padding-left: 16px;}
  /* Smartphone: taller marker bar next to subhead */
  .svc-card__sub::before { height: 24px; }
}

/* ===== Utilities ===== */
/* Line break only on smartphones */
br.br--sp { display: none; }
@media (max-width: 768px) {
  br.br--sp { display: inline; }
}

/* Desktop/Laptop: wider left/right padding inside the white card */
@media (min-width: 769px) {
  .svc-card { padding: 60px 120px 60px; }
}

/* Area map image sizing */
.area-map {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto; /* center align */
}

/* Collapsible behavior for service guide */
.svc-card__fade { display: none; }
.svc-card__collapsible {
  position: relative;
  max-height: 220px;   /* show a teaser height on desktop */
  overflow: hidden;
}
.svc-card__collapsible::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 150px; /* taller to hint more content */
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 80%);
  pointer-events: none;
}
.svc-card.is-expanded .svc-card__collapsible { max-height: none; }
.svc-card.is-expanded .svc-card__collapsible::after { display: none; }

/* FAQ-only: remove fade and height when explicitly opted-in */
.svc-card.no-fade .svc-card__collapsible { max-height: none; }
.svc-card.no-fade .svc-card__collapsible::after { display: none; }
/* FAQ-only: narrower side padding */
.svc-card.no-fade { padding-left: 32px; padding-right: 32px; }
/* FAQ-only: align description text with heading (remove centered narrow width) */
.svc-card.no-fade .svc-card__desc { max-width: none; margin-left: 0; margin-right: 0; }


@media (max-width: 768px) {
  .svc-card__collapsible { max-height: 180px; }
}

@media (max-width: 768px) {
  /* Flow page: keep existing crop */
  main#main > .feature__media.right-bleed:first-of-type img[src$="title-flow.jpg"] {
    transform: scale(1.5);
    transform-origin: 80% 20%;
  }
  /* FAQ page: adjust crop without affecting flow */
  main#main > .feature__media.right-bleed:first-of-type img[src$="title-faq.jpg"] {
    transform: scale(1.4);
    transform-origin: 85% 20%;
  }
}

/* ===== FAQ (Q/A list) ===== */
/* Card already has .no-fade on FAQ page to remove gradient cap. */
.svc-card.no-fade .faq-item { padding: 24px 0; }
.svc-card.no-fade .faq-item + .faq-item { border-top: 1px solid rgba(0, 0, 0, 0.12); }

.svc-card.no-fade .faq-q {
  margin: 0 0 12px;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--c-ink);
  line-height: 1.6;
}

.svc-card.no-fade .faq-a {
  margin: 0;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* Keep "Qn." with following word to avoid odd wraps */
.faq-q__label { white-space: nowrap; }

/* Balance question heading lines on small screens (progressive enhancement) */
@media (max-width: 768px) {
  .svc-card.no-fade .faq-q {
    text-wrap: balance;            /* prefer well-balanced lines */
    word-break: auto-phrase;       /* avoid awkward CJK breaks where supported */
    line-break: strict;            /* better Japanese punctuation handling */
  }
}

/* Utility: prevent line breaks inside short terms (e.g., プラン) */
.nobr { white-space: nowrap; }

/* ===== About: enforce 32px side padding in section card ===== */
/* .svc-card にデスクトップ時 120px の左右パディング指定があるため、
   会社概要カードだけは常に左右32pxに固定する */
.svc-card--profile { padding-left: 32px; padding-right: 32px; }
@media (max-width: 768px) { .svc-card--profile { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 769px) { .svc-card--profile { padding-left: 32px; padding-right: 32px; } }
