@charset "utf-8";

/* Base */
:root {
  --ink: #111827;
  --text: #344054;
  --muted: #667085;
  --line: #d8e0ea;
  --white: #fff;
  --bg: #f5f8fb;
  --navy: #081f35;
  --navy-2: #0d2d4b;
  --blue: #0067b1;
  --cyan: #16b7d7;
  --accent: #f2b84b;
  --accent-2: #d99518;
  --shadow: 0 20px 50px rgba(8, 31, 53, 0.14);
  --font: "Noto Sans JP", sans-serif;
  --en: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.pc{display: block; }
.sp{display: none; }
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.material-symbols-outlined {
  font-size: 21px;
  line-height: 1;
  vertical-align: middle;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.bg-light {
  background: var(--bg);
}

.bg-steel {
  background:
    linear-gradient(135deg, rgba(8, 31, 53, 0.96), rgba(13, 45, 75, 0.92)),
    radial-gradient(circle at top right, rgba(22, 183, 215, 0.28), transparent 34%);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin-bottom: 44px;
  text-align: center;
}

.section-title .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.section-title h2,
.lead-copy h1,
.support-copy h2,
.message-box h2,
.company-copy h2,
.entry-copy h2 {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.38;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.section-title h2 {
  font-size: clamp(28px, 4.2vw, 44px);
}

.section-title p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-weight: 500;
}

.section-title.light h2,
.section-title.light p,
.bg-steel .section-title h2,
.bg-steel .section-title p {
  color: var(--white);
}

.bg-steel .eyebrow,
.section-title.light .eyebrow {
  color: var(--accent);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sp {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: none;
}

.header-nav,
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.header-nav {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 31, 53, 0.78);
  box-shadow: 0 12px 30px rgba(8, 31, 53, 0.22);
  backdrop-filter: blur(14px);
}

.header-nav a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.header-tel {
  background: var(--white);
  color: var(--navy);
}

.header-entry {
  background: var(--accent);
  color: var(--navy);
}

.menu-toggle,
.mobile-menu,
.menu-overlay {
  display: none;
}

/* First view */
.fv {
  background: var(--navy);
}

.fv picture,
.fv img {
  display: block;
  width: 100%;
}

/* Lead */
.lead-section {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}

.lead-section::before {
  position: absolute;
  top: -70px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 103, 177, 0.16);
  border-radius: 50%;
  content: "";
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: center;
}

.lead-copy h1 {
  margin-top: 16px;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0.02em;
}

.lead-copy p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
}

.lead-panel {
  position: relative;
  padding: 34px;
  border-top: 5px solid var(--cyan);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--accent);
  font-family: var(--en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lead-panel strong {
  display: block;
  margin-top: 12px;
  font-family: var(--en);
  font-size: 54px;
  line-height: 1;
}

.lead-panel > span {
  display: block;
  margin-top: 12px;
  font-weight: 800;
}

.lead-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.lead-panel li {
  position: relative;
  padding-left: 24px;
}

.lead-panel li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  content: "";
  clip-path: polygon(14% 46%, 0 60%, 38% 100%, 100% 16%, 84% 0, 36% 66%);
}

.manga {
  width: 100%;
  margin-top: 46px;
}

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

/* CTA */
.cta-band {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: var(--white);
}

.cta-white {
  background: var(--white);
  color: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0;
}

.cta-inner p {
  color: inherit;
  font-size: clamp(18px, 2.6vw, 25px);
  font-weight: 900;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.4;
}

.btn-accent {
  background: var(--accent);
  color: var(--navy);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn-outline.dark {
  border-color: var(--navy);
  color: var(--navy);
}

/* Points */
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.point-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.point-card span {
  color: var(--accent);
  font-family: var(--en);
  font-size: 22px;
  font-weight: 700;
}

.point-card h3 {
  margin-top: 24px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.4;
}

.point-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* Work */
.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.work-text h3 {
  color: var(--navy);
  font-size: clamp(25px, 3.8vw, 38px);
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.work-text p {
  margin-top: 20px;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  content: "✓";
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.work-swiper {
  width: 100%;
  padding-bottom: 36px;
}

.work-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-card div {
  padding: 26px;
}

.work-card span {
  color: var(--blue);
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work-card h3 {
  margin-top: 6px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.4;
}

.work-card p {
  margin-top: 10px;
  font-weight: 500;
}

.swiper-pagination-bullet-active {
  background: var(--blue);
}

/* Numbers */
.numbers-section {
  background:
    linear-gradient(rgba(8, 31, 53, 0.9), rgba(8, 31, 53, 0.9)),
    url("../img/data-bg.webp") center / cover no-repeat;
  color: var(--white);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.number-card {
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
  backdrop-filter: blur(8px);
}

.number-card span {
  display: block;
  color: var(--accent);
  font-weight: 900;
}

.number-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--en);
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
}

.number-card small {
  font-family: var(--font);
  font-size: 0.34em;
}

.number-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 54px;
  align-items: center;
}

.support-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.support-copy h2,
.message-box h2,
.company-copy h2,
.entry-copy h2 {
  margin-top: 14px;
  font-size: clamp(28px, 4vw, 44px);
}

.support-copy p,
.message-box p,
.company-copy p,
.entry-copy p {
  margin-top: 20px;
  font-weight: 500;
}

.support-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.support-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-left: 4px solid var(--cyan);
  background: var(--bg);
  color: var(--navy);
}

.support-list .material-symbols-outlined {
  color: var(--blue);
  font-size: 28px;
}

/* Message */
.message-section {
  padding-top: 0;
}

.message-box {
  position: relative;
  padding: 56px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.message-label {
  color: var(--accent);
  font-family: var(--en);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.message-box h2 {
  color: var(--white);
}

.message-box p {
  color: rgba(255, 255, 255, 0.82);
}

.message-name {
  color: var(--white) !important;
  font-weight: 900 !important;
  text-align: right;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--blue);
  content: "+";
  font-family: var(--en);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 24px 22px;
  font-weight: 500;
}

/* Tables */
.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-table,
.confirm-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td,
.confirm-table th,
.confirm-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td,
.confirm-table tr:last-child th,
.confirm-table tr:last-child td {
  border-bottom: 0;
}

.info-table th,
.confirm-table th {
  width: 210px;
  background: #eef4f9;
  color: var(--navy);
  font-weight: 900;
}

.info-table td,
.confirm-table td {
  font-weight: 500;
}

.info-table.small th {
  width: 180px;
}

.info-table.small td {
  word-break: keep-all;
  overflow-wrap: normal;
}

/* Company */
.company-section {
  background: var(--bg);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: start;
}

.company-map {
  width: 100%;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-map iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* Entry */
.entry-section {
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at bottom left, rgba(22, 183, 215, 0.18), transparent 34%);
}

.entry-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.entry-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 16px 22px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.entry-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-errors {
  padding: 14px 16px;
  border: 1px solid #f4b5b5;
  background: #fff3f3;
  color: #b42318;
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--navy);
  font-weight: 900;
}

.form-row label span {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  background: var(--accent);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.4;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcfe;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 103, 177, 0.12);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 60px;
  border: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 42px 0 106px;
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner strong {
  color: var(--white);
  font-size: 18px;
}

.footer-inner a {
  color: var(--accent);
  font-family: var(--en);
  font-size: 28px;
  font-weight: 700;
}

.site-footer small {
  display: block;
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.52);
}

.fixed-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: none;
  gap: 10px;
}

.fixed-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 150px;
  min-height: 54px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.fixed-cta a:first-child {
  background: var(--navy);
  color: var(--white);
}

/* Form pages */
.form-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(8, 31, 53, 0.92), rgba(0, 103, 177, 0.84)),
    url("../img/data-bg.webp") center / cover no-repeat;
}

.form-page-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 52px 0;
}

.confirm-box {
  max-width: 920px;
  padding: 44px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.confirm-box h1 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.3;
}

.confirm-lead {
  margin-top: 14px;
  font-weight: 500;
}

.confirm-table {
  margin-top: 28px;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  margin-top: 24px;
}

.edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.thanks-link {
  width: min(320px, 100%);
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .lead-grid,
  .work-layout,
  .support-grid,
  .company-grid,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .point-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-image {
    order: 2;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .inner {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .sp {
    display: block;
  }

  .site-header {
    top: 12px;
    right: 12px;
    left: auto;
    display: block;
    pointer-events: auto;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(8, 31, 53, 0.88);
    box-shadow: 0 14px 34px rgba(8, 31, 53, 0.24);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(12px);
  }

  .menu-toggle span {
    position: absolute;
    left: 17px;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 20px;
  }

  .menu-toggle span:nth-child(2) {
    top: 28px;
  }

  .menu-toggle span:nth-child(3) {
    top: 36px;
  }

  .is-menu-open .menu-toggle span:nth-child(1) {
    top: 25px;
    transform: rotate(38deg);
  }

  .is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .is-menu-open .menu-toggle span:nth-child(3) {
    top: 25px;
    transform: rotate(-38deg);
  }

  .mobile-menu {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    z-index: 1001;
    display: grid;
    width: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 31, 53, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(14px);
  }

  .is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--white);
    font-weight: 900;
    line-height: 1.4;
  }

  .mobile-menu a::after {
    color: var(--accent);
    content: ">";
    font-family: var(--en);
    font-size: 18px;
    line-height: 1;
  }

  .mobile-menu .mobile-menu-entry,
  .mobile-menu .mobile-menu-tel {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
    background: var(--accent);
    color: var(--navy);
    font-size: 15px;
  }

  .mobile-menu .mobile-menu-tel {
    margin-top: 8px;
    background: var(--white);
  }

  .mobile-menu .mobile-menu-entry::after,
  .mobile-menu .mobile-menu-tel::after {
    content: none;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .is-menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .lead-section {
    padding-top: 56px;
  }

  .lead-copy h1 {
    font-size: 31px;
    line-height: 1.45;
  }

  .lead-copy p {
    font-size: 16px;
  }

  .lead-panel {
    padding: 26px 22px;
  }

  .lead-panel strong {
    font-size: 44px;
  }

  .cta-inner {
    display: grid;
    gap: 18px;
    padding: 24px 0;
  }

  .cta-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .point-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .point-card {
    min-height: auto;
    padding: 24px;
  }

  .work-card div {
    padding: 22px;
  }

  .support-image img {
    aspect-ratio: 4 / 3;
  }

  .support-copy h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .message-box {
    padding: 34px 22px;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td,
  .confirm-table,
  .confirm-table tbody,
  .confirm-table tr,
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
  }

  .info-table th,
  .confirm-table th {
    width: 100%;
    padding: 14px 16px 8px;
    border-bottom: 0;
  }

  .info-table td,
  .confirm-table td {
    padding: 0 16px 16px;
  }

  .info-table.small td {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .entry-form,
  .confirm-box {
    padding: 24px 18px;
  }

  .company-map iframe {
    height: 320px;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .edit-btn {
    min-height: 54px;
  }

  .footer-inner {
    display: grid;
  }

  .fixed-cta {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .fixed-cta a {
    min-width: 0;
    border-radius: 0;
  }
.pc{display: none; }
.sp{display: block; }
}
