:root {
  --navy: #0b2545;
  --navy-deep: #06172c;
  --blue-gray: #eef4f8;
  --white: #ffffff;
  --orange: #f47c20;
  --orange-dark: #d96510;
  --text: #1f2b37;
  --muted: #667789;
  --line: #d9e3eb;
  --shadow: 0 18px 50px rgba(6, 23, 44, 0.12);
  --header-height: 61px;
}
.pc{ display: block; }
.sp{ display: none; }
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: rgba(6, 23, 44, 0.82);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 23, 44, 0.94);
  box-shadow: 0 12px 30px rgba(3, 16, 31, 0.2);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb35c);
  transform: scaleX(0);
  transform-origin: left;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding: 4px 0;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
  content: "";
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.fv {
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--navy-deep);
}

.fv img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02) translateY(var(--fv-shift, 0));
  transform-origin: top center;
  transition: transform 0.12s linear;
}

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

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 190px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(6, 23, 44, 0.22);
}

.fixed-cta__tel {
  background: var(--navy);
}

.fixed-cta__mail {
  background: var(--orange);
}

.section {
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.35;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.35;
  font-weight: 900;
}

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

.lead {
  background: linear-gradient(180deg, var(--white), #f6f9fb);
}

.lead-text {
  width: min(790px, 100%);
  margin-bottom: 34px;
  color: #3e4f61;
  font-size: 18px;
}

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

.feature-card,
.merit-card,
.step-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(6, 23, 44, 0.07);
}

.feature-card {
  padding: 30px;
}

.feature-card .material-icons {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  font-size: 30px;
  background: var(--navy);
  border-radius: 6px;
}

.feature-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.feature-card p,
.merit-card p,
.step-card p,
.section-head p,
.work-copy p {
  color: var(--muted);
}

.manga {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 46px 0 0;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 8px;
}

.manga img {
  grid-column: span 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.manga img:only-child {
  grid-column: 1 / -1;
}

.cta-band {
  padding: 32px 0;
  color: var(--white);
  background: var(--navy);
}

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

.cta-band p {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 24px;
  font-weight: 900;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(6, 23, 44, 0.15);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
}

.btn-primary::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  content: "";
}

.btn-primary:hover::after {
  animation: ctaShine 0.75s ease;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

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

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

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

.section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.work {
  background: var(--white);
}

.work-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.work-copy {
  padding-left: 24px;
  border-left: 5px solid var(--orange);
}

.work-list {
  display: grid;
  gap: 14px;
}

.work-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  background: var(--blue-gray);
  border-radius: 6px;
}

.work-list span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.work-visual {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.work-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.merit {
  background: var(--blue-gray);
}

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

.merit-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.merit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 5px;
  background: var(--orange);
  content: "";
}

.merit-card__image {
  width: 100%;
  margin-bottom: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.merit-card__body {
  padding: 12px 28px 34px;
}

.merit-card__num {
  margin-bottom: 18px;
  color: rgba(11, 37, 69, 0.14);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.flow {
  overflow: hidden;
}

.step-swiper {
  padding: 4px 4px 42px;
}

.step-card {
  min-height: 260px;
  padding: 30px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--orange);
  font-weight: 900;
}

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

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

.cta-panel h2,
.cta-panel .eyebrow,
.cta-panel p {
  color: var(--white);
}

.cta-panel p:last-child {
  margin-bottom: 0;
}

.schedule-map {
  background: linear-gradient(180deg, #f6f9fb, var(--white));
}

.schedule-map__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.timeline,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(6, 23, 44, 0.07);
}

.timeline {
  padding: 30px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding-bottom: 26px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 38px;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item time {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: var(--navy);
  border-radius: 6px;
}

.timeline-item h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.map-card {
  padding: 30px;
}

.map-card h2 {
  font-size: 28px;
}

.map-card p {
  color: var(--muted);
}

.map-embed {
  overflow: hidden;
  margin: 20px 0 22px;
  aspect-ratio: 4 / 3;
  background: var(--blue-gray);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.map-card__actions {
  align-items: stretch;
}

.requirements {
  background: var(--white);
}

.faq {
  background: linear-gradient(180deg, #f6f9fb, var(--white));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(6, 23, 44, 0.06);
}

.faq-question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  background: var(--orange);
  border-radius: 6px;
}

.faq-question .material-icons {
  color: var(--orange);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question .material-icons {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px 72px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.faq-actions {
  margin-top: 28px;
}

.company {
  background: #f6f9fb;
}

.info-table {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}

.info-table div:last-child {
  border-bottom: 0;
}

.info-table dt,
.info-table dd {
  margin: 0;
  padding: 20px 24px;
}

.info-table dt {
  color: var(--navy);
  font-weight: 900;
  background: #eef4f8;
}

.info-table dd {
  color: #3e4f61;
}

.info-table a {
  color: var(--orange-dark);
  font-weight: 900;
}

.contact {
  padding-bottom: 120px;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.contact h2,
.contact .eyebrow,
.contact p {
  color: var(--white);
}

.contact-copy {
  position: sticky;
  top: 90px;
}

.tel-box {
  display: grid;
  gap: 2px;
  margin-top: 26px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.tel-box .material-icons {
  color: var(--orange);
}

.tel-box strong {
  font-size: 32px;
  line-height: 1.2;
}

.tel-box small {
  color: rgba(255, 255, 255, 0.76);
}

.form-card {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(244, 124, 32, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 14px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.error-box,
.thanks-message {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 6px;
}

.error-box {
  color: #9f1d1d;
  background: #fff0f0;
  border: 1px solid #ffc7c7;
}

.error-box p,
.thanks-message p {
  margin-bottom: 0;
}

.thanks-message {
  color: var(--navy);
  background: #eef9f2;
  border: 1px solid #b9e8c9;
}

.site-footer {
  padding: 26px 20px 96px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: #03101f;
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 900;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-card {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.62s ease, transform 0.62s ease, box-shadow 0.2s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .timeline-item.reveal-card {
  transform: translateX(-18px);
}

.js .timeline-item.reveal-card.is-visible {
  transform: translateX(0);
}

.js .work-copy.reveal-card {
  transform: translateX(-24px);
}

.js .work-list div.reveal-card {
  transform: translateX(24px);
}

.js .work-copy.reveal-card.is-visible,
.js .work-list div.reveal-card.is-visible {
  transform: translateX(0);
}

@keyframes ctaShine {
  from {
    left: -45%;
  }

  to {
    left: 120%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal,
  .js .reveal-card,
  .js .timeline-item.reveal-card,
  .js .work-copy.reveal-card,
  .js .work-list div.reveal-card,
  .fv img {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .feature-grid,
  .merit-grid,
  .work-layout,
  .schedule-map__grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .cta-band__inner,
  .cta-panel__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 44px;
  }

  body {
    font-size: 15px;
    padding-bottom: 72px;
  }

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

  .site-header {
    background: rgba(6, 23, 44, 0.9);
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 12px;
    place-items: center;
    background: transparent;
    border: 0;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
  }

  .global-nav {
    display: none;
    padding: 0 18px 18px;
  }

  .global-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .global-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .fv img {
    min-height: auto;
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

  .lead-text {
    font-size: 16px;
  }

  .manga {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .manga img {
    grid-column: 1 / -1;
  }

  .feature-card,
  .step-card,
  .form-card {
    padding: 24px 20px;
  }

  .merit-card {
    padding: 0;
  }

  .merit-card__body {
    padding: 24px 20px;
  }

  .cta-band p {
    font-size: 19px;
  }

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

  .work-copy {
    padding-left: 18px;
  }

  .work-list div {
    align-items: flex-start;
    font-size: 16px;
  }

  .timeline,
  .map-card {
    padding: 22px 18px;
  }

  .timeline-item {
    grid-template-columns: 68px 1fr;
    gap: 14px;
    padding-bottom: 22px;
  }

  .timeline-item::before {
    left: 33px;
  }

  .timeline-item time {
    width: 66px;
    height: 38px;
    font-size: 13px;
  }

  .timeline-item h3,
  .map-card h2 {
    font-size: 20px;
  }

  .map-embed {
    aspect-ratio: 1 / 1;
  }

  .js .timeline-item.reveal-card,
  .js .work-copy.reveal-card,
  .js .work-list div.reveal-card {
    transform: translateY(22px);
  }

  .js .timeline-item.reveal-card.is-visible,
  .js .work-copy.reveal-card.is-visible,
  .js .work-list div.reveal-card.is-visible {
    transform: translateY(0);
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .info-table dt,
  .info-table dd {
    padding: 14px 16px;
  }

  .faq-question {
    gap: 10px;
    padding: 16px 14px;
  }

  .faq-question span {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 14px 18px 54px;
  }

  .contact {
    padding-bottom: 74px;
  }

  .tel-box strong {
    font-size: 28px;
  }

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

  .fixed-cta a {
    min-width: 0;
    min-height: 64px;
    padding: 10px 8px;
    border-radius: 0;
    box-shadow: none;
  }

  .site-footer {
    padding-bottom: 88px;
  }
.pc{ display: none; }
.sp{ display: block; }
}
