@charset "utf-8";

/* Base */
:root {
  --navy: #0a2848;
  --navy-deep: #061a30;
  --navy-soft: #eaf1f8;
  --orange: #f28a1a;
  --orange-deep: #dc6f00;
  --orange-soft: #fff3e4;
  --white: #fff;
  --ink: #142231;
  --text: #344152;
  --muted: #6b7888;
  --line: #d9e2ec;
  --bg: #f6f9fc;
  --shadow: 0 18px 44px rgba(10, 40, 72, 0.12);
  --font: "Noto Sans JP", 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;
}

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;
}

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

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

.section {
  padding: 88px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

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

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

.section-title h2 {
  color: var(--navy);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

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

.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);
}

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

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

.header-nav {
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(6, 26, 48, 0.72);
  backdrop-filter: blur(12px);
}

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

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

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

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

.entry-link {
  background: var(--orange);
  color: var(--white);
}

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

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

/* Lead */
.lead-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 40, 72, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 40, 72, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 44px 44px;
}

.lead-copy {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.lead-copy h1 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.lead-copy p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intro-points li {
  min-height: 142px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 40, 72, 0.08);
}

.intro-points strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.intro-points span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

/* CTA */
.cta-band {
  padding: 34px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-inner,
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner p {
  font-size: 20px;
  font-weight: 900;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 14px 26px rgba(242, 138, 26, 0.25);
}

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

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

.cta-panel {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--navy-soft), var(--white));
}

.cta-box {
  padding: 38px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(25px, 3.5vw, 38px);
  line-height: 1.38;
  overflow-wrap: anywhere;
}

/* Work */
.work-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.work-text {
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-text h3 {
  color: var(--navy);
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.work-text p {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 500;
}

.check-list {
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.check-list li::before {
  content: "check_circle";
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--orange);
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 1;
}

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

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

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

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

.work-card span {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.work-card strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.work-card p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
}

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

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10, 40, 72, 0.08);
}

.support-card .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 30px;
}

.support-card h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

.support-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Career */
.bg-navy {
  background:
    linear-gradient(135deg, rgba(242, 138, 26, 0.18), transparent 34%),
    var(--navy-deep);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.step-card span {
  color: #ffc47f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.42;
}

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

/* Requirements */
.requirements-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.requirements-card dl div,
.company-layout dl div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid var(--line);
}

.requirements-card dl div:first-child,
.company-layout dl div:first-child {
  border-top: 0;
}

.requirements-card dt,
.company-layout dt {
  padding: 20px 24px;
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 900;
}

.requirements-card dd,
.company-layout dd {
  padding: 20px 24px;
  font-weight: 500;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 40, 72, 0.06);
}

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

.faq-list summary::after {
  content: "expand_more";
  position: absolute;
  top: 21px;
  right: 22px;
  color: var(--orange);
  font-family: "Material Symbols Outlined";
}

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

.faq-list p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 500;
}

/* Entry */
.entry-section {
  background:
    linear-gradient(rgba(10, 40, 72, 0.86), rgba(10, 40, 72, 0.86)),
    url("../img/dummy-work02.webp") center / cover;
  color: var(--white);
}

.entry-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: center;
}

.entry-copy h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.entry-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 500;
}

.entry-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.entry-card a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 20px;
  border-radius: 6px;
}

.entry-card .material-symbols-outlined {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
}

.entry-main {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
}

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

.entry-card strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.entry-card small {
  opacity: 0.82;
  font-weight: 700;
}

.entry-form-wrap {
  margin-top: 42px;
  padding: 38px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.entry-form-heading {
  margin-bottom: 24px;
  text-align: center;
}

.entry-form-heading h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.35;
}

.entry-form-heading p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500;
}

.entry-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.entry-form label,
.form-full {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.entry-form label span {
  color: var(--navy);
}

.entry-form em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.entry-form input,
.entry-form select,
.entry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fdfefe;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.entry-form input,
.entry-form select {
  min-height: 54px;
  padding: 12px 14px;
}

.entry-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 14px;
}

.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 138, 26, 0.16);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(360px, 100%);
  min-height: 60px;
  margin: 8px auto 0;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(242, 138, 26, 0.25);
}

.form-message {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 6px;
  font-weight: 800;
}

.form-message p + p {
  margin-top: 4px;
}

.form-message.success {
  border: 1px solid #b9dfca;
  background: #eefaf3;
  color: #17613a;
}

.form-message.error {
  border: 1px solid #f0b7b7;
  background: #fff1f1;
  color: #a81717;
}

/* Confirm / Thanks */
.form-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(10, 40, 72, 0.9), rgba(10, 40, 72, 0.9)),
    url("../img/PC.webp") center / cover fixed;
}

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

.confirm-box {
  padding: 42px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.confirm-box h1 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
}

.confirm-lead {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.confirm-table {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
  border: 1px solid var(--line);
}

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

.confirm-table tr:first-child th,
.confirm-table tr:first-child td {
  border-top: 0;
}

.confirm-table th {
  width: 220px;
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 900;
}

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

.confirm-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 54px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 900;
}

.thanks-box {
  max-width: 820px;
  text-align: center;
}

.thanks-link {
  margin-top: 30px;
  text-decoration: none;
}

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

.company-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.company-layout h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.35;
}

.company-logo {
  display: block;
  width: 128px;
  height: auto;
  margin-bottom: 18px;
}

.company-layout p {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 500;
}

.company-layout dl {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-wrap {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(10, 40, 72, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 28px 20px 34px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.fixed-bottom-cta {
  display: none;
}
.pc{ display: block; }
.sp{ display: none; }
/* Responsive */
@media (max-width: 960px) {
	
.pc{ display:  none; }
.sp{ display:block; }
	
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .header-nav {
    display: none;
  }

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

  .support-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .support-card,
  .step-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

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

  .section {
    padding: 62px 0;
  }

  .site-header {
    display: none;
  }

  .lead-copy {
    text-align: left;
  }

  .lead-copy h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .lead-copy .eyebrow {
    font-size: 12px;
  }

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

  .intro-points {
    grid-template-columns: 1fr;
  }

  .intro-points li {
    min-height: 0;
    padding: 22px;
  }

  .cta-inner,
  .cta-box {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-inner p {
    font-size: 18px;
  }

  .cta-actions,
  .btn {
    width: 100%;
  }

  .work-text,
  .cta-box {
    padding: 24px;
  }

  .work-text h3 {
    font-size: 24px;
  }

  .requirements-card dl div,
  .company-layout dl div {
    grid-template-columns: 1fr;
  }

  .requirements-card dt,
  .company-layout dt {
    padding: 14px 18px 6px;
    background: var(--white);
    color: var(--orange-deep);
  }

  .requirements-card dd,
  .company-layout dd {
    padding: 0 18px 16px;
  }

  .entry-card {
    padding: 12px;
  }

  .entry-card a {
    padding: 18px;
  }

  .entry-form-wrap {
    margin-top: 28px;
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .entry-form input,
  .entry-form select {
    min-height: 52px;
  }

  .form-page-main {
    padding: 42px 0 96px;
  }

  .confirm-box {
    padding: 26px 18px;
  }

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

  .confirm-table th {
    padding: 14px 16px 6px;
    background: var(--white);
    color: var(--orange-deep);
  }

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

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 28px;
  }

  .map-wrap {
    margin-top: 24px;
  }

  .company-logo {
    width: 110px;
  }

  .map-wrap iframe {
    min-height: 300px;
  }

  .fixed-bottom-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 26px rgba(6, 26, 48, 0.18);
  }

  .fixed-bottom-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 64px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
  }

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

  .fixed-bottom-cta a:last-child {
    background: var(--orange);
  }
}
