:root {
  --bg: #ffffff;
  --ink: #0b1220;
  --muted: #5b667a;
  --line: #e6eaf1;
  --panel: #f6f8fb;
  --navy: #0b2545;
  --accent: #2e86de;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(11, 18, 32, 0.08);
  --max: 1120px;
  --gutter: 24px;
  --drawer-panel-bg: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header */
.topnote {
  font-size: 12px;
  color: red;
  font-weight: bold;
  text-align: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
}

.navlinks {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks > a {
  font-size: 14px;
  color: var(--muted);
}

.navlinks > a:hover {
  color: var(--ink);
}

.drawer-button {
  text-align: right;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.08s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.18);
}

.btn.primary:hover {
  box-shadow: 0 14px 30px rgba(11, 37, 69, 0.22);
}

.btn.ghost {
  background: #fff;
  color: black;
}

.btn.ghost:hover {
  background: var(--panel);
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--hamb-border);
  background: var(--hamb-bg);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.hamburger .bars {
  width: 18px;
  height: 14px;
  position: relative;
}

.hamburger .bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.hamburger .bars span:nth-child(1) {
  top: 0;
}

.hamburger .bars span:nth-child(2) {
  top: 6px;
}

.hamburger .bars span:nth-child(3) {
  top: 12px;
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--drawer-overlay);
  display: none;
  z-index: 60;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(360px, 88vw);
  background: var(--drawer-panel-bg);
  border-left: 1px solid var(--drawer-panel-border);
  padding: 18px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.2s ease;
}

.drawer[aria-hidden=false] {
  display: block;
}

.drawer[aria-hidden=false] .drawer-panel {
  transform: translateX(0);
}

.drawer-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.drawer-nav a {
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--drawer-item-border);
  background: var(--drawer-item-bg);
  color: var(--color-text);
  margin: 10px 0;
}

.drawer-nav a:hover {
  border-color: var(--drawer-item-hover-border);
}

/* Fv (First View) */
.fv {
  padding: 58px 0 28px;
  background: radial-gradient(1200px 500px at 20% 10%, rgba(46, 134, 222, 0.1), transparent 60%), radial-gradient(900px 420px at 80% 0%, rgba(11, 37, 69, 0.1), transparent 55%), linear-gradient(#fff, #fff);
}

.fv-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.fv-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.fv-media {
  min-height: 360px;
  background: linear-gradient(115deg, rgba(11, 37, 69, 0.78), rgba(11, 37, 69, 0.15)), radial-gradient(800px 300px at 20% 20%, rgba(46, 134, 222, 0.35), transparent 60%), url("../img/fv.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.fv-copy {
  padding: 28px;
  color: #fff;
  max-width: 680px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 99px;
}

h1 {
  margin: 10px 0 10px;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sub {
  margin: 0 0 18px;
  font-size: 15px;
  opacity: 0.95;
}

.fv-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fv-side {
  display: grid;
  gap: 12px;
}

.trust {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
}

.trust h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: var(--panel);
  font-weight: 800;
  font-size: 13px;
}

.pill small {
  display: block;
  font-weight: 700;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}

/* Sections */
section {
  padding: 74px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

/* Strengths */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.metric {
  margin-top: 14px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  font-weight: 900;
  color: var(--navy);
}

.metric span {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  margin-left: 8px;
}

/* Two-column */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.media {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 300px;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.1), rgba(46, 134, 222, 0.1)), url("../img/media.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: rgba(46, 134, 222, 0.14);
  border: 1px solid rgba(46, 134, 222, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--accent);
  flex: 0 0 18px;
  margin-top: 3px;
}

/* Equipment */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.equip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.04);
}

.equip .img {
  height: 300px;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.12), rgba(46, 134, 222, 0.1));
  background-size: cover;
  background-position: center;
}

.equip1 .img {
  background-image: url("../img/1.jpg");
}

.equip2 .img {
  background-image: url("../img/2.jpg");
}

.equip3 .img {
  background-image: url("../img/3.jpg");
}

.equip .equip_body {
  padding: 14px;
}

.equip b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.equip small {
  color: var(--muted);
}

/* Case studies slider */
.slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slides {
  display: flex;
  transition: transform 0.35s ease;
}

.slide {
  min-width: 100%;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.case-img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  min-height: 240px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}

.case1 {
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.1), rgba(46, 134, 222, 0.1));
}

.case h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.case p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(11, 37, 69, 0.08);
  border: 1px solid rgba(11, 37, 69, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
}

.navbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.1);
}

.navbtn:hover {
  background: #fff;
}

.navbtn.prev {
  left: 12px;
}

.navbtn.next {
  right: 12px;
}

/* Interview */
.quote {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  background: var(--panel);
}

.quote div:first-child {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
}

.avatar {
  min-height: 220px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.1), rgba(46, 134, 222, 0.1));
  background-size: cover;
  background-position: top left;
}

.quote blockquote {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.quote .meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* Timeline */
.timeline {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.04);
}

.trow {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trow:first-child {
  border-top: none;
}

.trow div {
  padding: 14px 16px;
}

.trow .time {
  font-weight: 900;
  color: var(--navy);
  background: var(--panel);
}

.trow .what {
  color: var(--ink);
}

/* Careers CTA */
.cta {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.06), rgba(11, 37, 69, 0));
}

.cta-box {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background: var(--navy);
  color: #fff;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(11, 37, 69, 0.22);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cta-box h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.cta-box p {
  margin: 0;
  opacity: 0.92;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn.light {
  background: #fff;
  color: var(--navy);
  border-color: transparent;
}

.btn.light:hover {
  background: #f2f6ff;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: #fff;
}

.foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 960px) {
  .fv-grid {
    grid-template-columns: 1fr;
  }
  .fv-media {
    min-height: 380px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .slide {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 34px;
  }
  .quote {
    grid-template-columns: 1fr;
  }
  .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-content: flex-start;
  }
  .foot {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .navlinks {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
}/*# sourceMappingURL=style.css.map */