:root {
  --green: #00856f;
  --dark: #222;
  --line: #d9d9d9;
  --pale: #f7faf9;
  --max: 1180px;
}

/* ========================================
   Base
======================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  line-height: 1.75;
  background: #fff;
}

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

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

/* ========================================
   Header
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.head-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 350px;
}

.fuji {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -1px;
}

.company {
  font-size: 18px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  height: 72px;
  margin-left: auto;
}

.nav a {
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.contact {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 28px !important;
  color: #fff;
  background: #007761;
}



/* ========================================
   Main
======================================== */

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: 30px;
  text-align: center;
}

.vision-box {
  max-width: 660px;
  margin: 0 auto 26px;
  padding: 11px 20px;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--green);
}

.vision-box small {
  display: block;
  font-size: 15px;
}

.vision-box strong {
  font-size: 27px;
}

.lead {
  font-size: 15px;
}

.signature {
  margin: 12px 16px 26px;
  font-weight: 700;
  text-align: right;
}

.signature span {
  display: block;
}

/* ========================================
   Content Panels
======================================== */

.panel {
  margin: -50px 0px 0px;
  background: #fff;
  border: 1px solid var(--line);
}

.panel-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
}

.panel-left {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.panel-right {
  padding: 28px;
}

.num {
  color: var(--green);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.panel h2 {
  margin: 8px 0 18px;
  font-size: 24px;
  line-height: 1.5;
}

.icon-art {
  display: grid;
  place-items: center;
  height: 90px;
  color: var(--green);
}

.icon-art svg {
  width: 110px;
  height: 80px;
}

.text-block p {
  margin: 0 0 12px;
}

.subhead {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
}

/* ========================================
   Strategy
======================================== */

.strategy-box {
  padding: 14px 18px;
  border: 1px solid var(--line);
}

.strategy-box ol {
  margin: 8px 0 0;
  padding-left: 28px;
}

.strategy-box li {
  margin: 7px 0;
}

.strategy-box li::marker {
  color: var(--green);
  font-weight: 800;
}

/* ========================================
   Organization Chart
======================================== */

.orgchart {
  max-width: 600px;
  margin: 18px auto;
  text-align: center;
}

.orgchart .boss {
  max-width: 360px;
  margin: 8px auto;
  padding: 10px;
  color: #fff;
  font-weight: 700;
  background: var(--green);
}

.orgrow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.orgrow::before {
  position: absolute;
  top: -10px;
  right: 16%;
  left: 16%;
  content: "";
  border-top: 1px solid #777;
}

.orgrow div {
  padding: 14px;
  background: #fff;
  border: 1px solid #aaa;
}

/* ========================================
   Lists and KPI
======================================== */

.bullets {
  margin: 8px 0;
  padding-left: 1.2em;
}

.kpi {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kpi li {
  display: flex;
  gap: 12px;
  margin: 7px 0;
}

.badge {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  height: 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  background: var(--green);
  border-radius: 50%;
}

/* ========================================
   CTA
======================================== */

.cta {
  display: inline-flex;
  margin-top: 8px;
  padding: 13px 28px;
  color: #fff;
  font-weight: 700;
  background: var(--green);
}

/* ========================================
   Support Cards
======================================== */

.support-title {
  margin: 30px 0 16px;
  color: var(--green);
  font-size: 28px;
  border-bottom: 2px solid #cfe6e1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.card {
  min-height: 390px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.card:last-child {
  border-right: 0;
}

.card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-no {
  color: #6db8aa;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.card p,
.card li {
  font-size: 14px;
}

.card ul {
  padding-left: 1.2em;
}

/* ========================================
   Partners Table
======================================== */

.partners {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

.partners td {
  padding: 6px;
  border: 1px solid #ddd;
}

.partners td:first-child {
  width: 58px;
  color: #fff;
  font-weight: 700;
  background: var(--green);
}

/* ========================================
   Security
======================================== */

.security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 28px 0;
}

.seal {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  color: #148bd2;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  border: 9px dotted #148bd2;
  border-radius: 50%;
}

.security p {
  font-size: 18px;
  font-weight: 700;
}

/* ========================================
   Footer
======================================== */

footer {
  background: #fafafa;
  border-top: 1px solid #eee;
}

.foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: 28px 0;
}

.foot small {
  display: block;
}

.privacy {
  padding: 12px 30px;
  color: #fff;
  background: #333;
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 900px) {
  .company {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .nav a {
    display: none;
  }

  .nav .contact {
    display: flex;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .panel-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .card:nth-child(2) {
    border-right: 0;
  }

  .card {
    border-bottom: 1px solid var(--line);
  }

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

  .orgrow::before {
    display: none;
  }
}

/* ========================================
   Smartphone
======================================== */

@media (max-width: 600px) {
  .site-header,
  .nav,
  .contact {
    height: 60px;
  }

  .head-inner {
    width: calc(100% - 24px);
  }

  .fuji {
    font-size: 17px;
  }

  .contact {
    padding: 0 14px !important;
    font-size: 12px;
  }

  .hero {
    height: 170px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .eyebrow {
    font-size: 20px;
  }

  main {
    width: calc(100% - 24px);
  }

  .panel-left,
  .panel-right {
    padding: 20px;
  }

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

  .card {
    border-right: 0;
  }

  .security {
    flex-direction: column;
  }

  .foot {
    display: block;
    width: calc(100% - 24px);
  }

  .privacy {
    display: inline-block;
    margin-top: 20px;
  }
}