:root {
  --blue: #2f75bd;
  --blue-deep: #173b66;
  --footer: #182d37;
  --footer-line: rgba(255, 255, 255, 0.12);
  --text: #222a2f;
  --muted: #6e7a84;
  --light: #f6f7f8;
  --line: #e3e7eb;
  --green: #5f9478;
  --white: #ffffff;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--light);
}

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

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

.inner {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px 22px max(32px, calc((100vw - var(--max)) / 2));
  color: var(--white);
}

.header-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-logo {
  font-size: 1.15rem;
  opacity: 1;
  pointer-events: auto;
}

.home-page .header-logo {
  opacity: 0;
  pointer-events: none;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-logo-img {
  width: 190px;
}

.footer-logo-img {
  width: 250px;
}

.hero-logo-img {
  width: min(350px, 62vw);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.logo-mark {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
}

.logo-mark::before,
.logo-mark::after {
  position: absolute;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.logo-mark::before {
  width: 15px;
  height: 3px;
}

.logo-mark::after {
  width: 3px;
  height: 15px;
}

.logo-mark span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.logo-mark span:nth-child(1) {
  top: 0;
  left: 8px;
}

.logo-mark span:nth-child(2) {
  top: 8px;
  right: 0;
}

.logo-mark span:nth-child(3) {
  bottom: 0;
  left: 8px;
}

.logo-mark span:nth-child(4) {
  top: 8px;
  left: 0;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.global-nav a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: #d9ecff;
}

.contact-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue-deep);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.contact-link span {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
  flex: 0 0 12px;
  font-size: 0;
  line-height: 1;
}

.contact-link span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-62%, -50%) rotate(45deg);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: var(--blue-deep);
  color: var(--white);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-button {
  display: none;
}

.hero {
  min-height: 610px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(9, 29, 75, 0.06) 48%, rgba(9, 29, 75, 0.08) 100%),
    url("../img/hero-earth.jpg") center / cover no-repeat;
}

.hero-content {
  margin-top: 34px;
  text-align: center;
  filter: drop-shadow(0 6px 16px rgba(0, 21, 56, 0.35));
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-logo h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-mark-large {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.logo-mark-large::before {
  width: 23px;
  height: 4px;
}

.logo-mark-large::after {
  width: 4px;
  height: 23px;
}

.logo-mark-large span {
  width: 13px;
  height: 13px;
  border-width: 3px;
}

.logo-mark-large span:nth-child(1),
.logo-mark-large span:nth-child(3) {
  left: 12px;
}

.logo-mark-large span:nth-child(2),
.logo-mark-large span:nth-child(4) {
  top: 12px;
}

.hero-content p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 300;
}

.page-hero {
  min-height: 380px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(13, 37, 76, 0.12) 56%, rgba(11, 32, 64, 0.24) 100%),
    url("../img/hero-earth.jpg") center 38% / cover no-repeat;
}

.page-hero-content {
  margin-top: 72px;
  text-align: center;
  filter: drop-shadow(0 6px 18px rgba(0, 21, 56, 0.36));
}

.page-hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
}

.page-hero p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 300;
}

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

.section-gray {
  background: var(--light);
}

.news {
  padding: 48px 0 68px;
}

.news h2 {
  margin: 0 0 20px;
  font-size: 2.75rem;
  line-height: 1.1;
  letter-spacing: 0.07em;
}

.news-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.news-list li {
  border-bottom: 1px solid var(--line);
}

.news-list a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 18px;
  color: #38424a;
  font-size: 0.98rem;
  font-weight: 400;
}

.news-list a:hover,
.news-list a:focus-visible {
  color: var(--blue);
}

.news-list time {
  color: #8a939b;
  font-weight: 400;
}

.arrow {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  font-size: 0;
  font-weight: 800;
}

.arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #171d21;
  font-weight: 800;
}

.text-link span {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 14px;
  color: var(--green);
  font-size: 0;
  line-height: 1;
}

.text-link span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-62%, -50%) rotate(45deg);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.contact-band {
  padding: 96px 40px;
  background: #2f75bd;
}

.contact-card {
  width: min(840px, 100%);
  min-height: 205px;
  display: grid;
  grid-template-columns: 43% 1fr;
  align-items: center;
  gap: 38px;
  margin: 0 auto;
  padding: 0 18px 0 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(20, 61, 105, 0.12);
  overflow: hidden;
}

.contact-card img {
  width: 100%;
  height: 205px;
  padding: 14px;
  object-fit: cover;
  background: var(--white);
  border-radius: 12px;
}

.contact-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.contact-copy p {
  grid-column: 1 / 2;
  justify-self: center;
  width: 100%;
  margin: 0 0 2px;
  color: #7f8992;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-copy a {
  display: contents;
  color: var(--blue-deep);
  font-size: 1.7rem;
  line-height: 1.32;
  font-weight: 800;
}

.contact-main {
  grid-column: 1 / 2;
  justify-self: center;
  display: block;
  width: 100%;
  text-align: center;
}

.contact-arrow {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-deep);
  font-size: 0;
  line-height: 1;
  transition: background 0.2s ease;
}

.contact-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-58%, -50%) rotate(45deg);
}

.contact-copy a:hover .contact-arrow,
.contact-copy a:focus-visible .contact-arrow {
  background: var(--green);
}

.products {
  padding: 66px 0 90px;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
}

.home-page .products .section-heading h2,
.home-page .business .section-heading h2 {
  font-size: 2.35rem;
}

.section-heading p {
  margin: 8px 0 0;
  color: #4d5760;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.product-item a {
  min-height: 312px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 0 0 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(34, 50, 66, 0.06);
  overflow: hidden;
  text-align: center;
}

.product-item img {
  width: 100%;
  aspect-ratio: 1.23 / 1;
  padding: 14px;
  object-fit: contain;
  background: var(--white);
}

.product-item .category {
  margin: 18px 0 2px;
  color: #2c343b;
  font-size: 0.86rem;
  font-weight: 700;
}

.product-item h3 {
  margin: 0;
  padding: 0 10px;
  color: #171d21;
  font-size: 1rem;
  line-height: 1.45;
}

.product-item a:hover h3,
.product-item a:focus-visible h3,
.business-item a:hover .business-title,
.business-item a:focus-visible .business-title {
  color: var(--blue);
}

.button-link {
  width: fit-content;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 44px auto 0;
  padding: 0 42px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(32, 54, 75, 0.16);
}

.button-link:hover,
.button-link:focus-visible {
  background: var(--blue-deep);
}

.company-profile {
  padding: 78px 0 88px;
}

.section-heading-left {
  text-align: left;
}

.profile-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.profile-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  margin: 0;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.profile-row dt {
  color: #20272d;
  font-weight: 800;
}

.profile-row dd {
  margin: 0;
  color: #46525b;
  font-weight: 600;
}

.profile-row strong {
  color: #20272d;
}

.notice-page {
  padding: 86px 0 98px;
}

.notice-page .inner {
  max-width: 780px;
}

.notice-eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.notice-page h2 {
  margin: 0 0 20px;
  color: #20272d;
  font-size: 2rem;
  line-height: 1.42;
}

.notice-page p {
  color: #56636d;
  font-weight: 500;
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 34px;
}

.notice-actions .button-link {
  margin: 0;
}

.business {
  padding: 8px 0 92px;
}

.company-business {
  padding-top: 76px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 42px;
}

.business-item a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  text-align: left;
}

.business-item img {
  width: 100%;
  aspect-ratio: 1.68 / 1;
  object-fit: cover;
  background: var(--white);
}

.business-label {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  display: block;
  min-width: min(70%, 270px);
  max-width: calc(100% - 82px);
  padding: 12px 20px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(28, 45, 58, 0.12);
}

.business-sub {
  display: block;
  color: #777f86;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 700;
}

.business-title {
  display: block;
  margin-top: 6px;
  color: #20272d;
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 800;
}

.business-title-nowrap {
  white-space: nowrap;
  font-size: 0.98rem;
}

@media (min-width: 981px) {
  .business-label {
    width: fit-content;
    min-width: 0;
    max-width: calc(100% - 26px);
    padding: 10px 14px 11px;
  }

  .business-title {
    font-size: 1rem;
    line-height: 1.24;
    white-space: nowrap;
  }
}

.business-arrow {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0;
  line-height: 1;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.business-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-58%, -50%) rotate(45deg);
}

.business-item a:hover .business-arrow,
.business-item a:focus-visible .business-arrow {
  background: var(--blue);
  transform: translateX(3px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.9);
  background: var(--footer);
}

.footer-inner {
  position: relative;
  width: min(calc(100% - 80px), 1160px);
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(420px, 0.95fr);
  gap: 80px;
  margin: 0 auto;
  padding: 64px 0 86px;
}

.footer-logo {
  margin-bottom: 32px;
  color: var(--white);
}

.footer-company p {
  margin: 0 0 30px;
  font-weight: 700;
}

.footer-company address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 54px;
}

.footer-nav h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer-nav a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-nav a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  opacity: 0.78;
  transform: translateY(1px) rotate(45deg);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #cde4ff;
}

.social-links {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: flex;
  gap: 24px;
  background: transparent;
}

.social-links a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 4px;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 0.72;
}

.social-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 5px;
}

.social-icon {
  display: block;
  width: 34px;
  height: 34px;
}

.social-icon-x {
  fill: currentColor;
}

.social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copyright {
  width: min(calc(100% - 80px), 1160px);
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--footer-line);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.74rem;
}

@media (max-width: 980px) {
  .inner {
    width: min(calc(100% - 48px), var(--max));
  }

  .site-header {
    min-height: 74px;
    padding: 18px 24px;
  }

  .header-logo {
    opacity: 1;
    pointer-events: auto;
  }

  .header-logo-img {
    width: 126px;
  }

  .nav-button {
    position: relative;
    z-index: 12;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(10, 24, 45, 0.42);
    cursor: pointer;
  }

  .nav-button span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--white);
  }

  .global-nav {
    position: absolute;
    top: 72px;
    right: 24px;
    width: min(320px, calc(100vw - 48px));
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 6px;
    background: rgba(24, 48, 70, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .global-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 4px;
    text-shadow: none;
  }

  .global-nav a:hover,
  .global-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .contact-link {
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle:checked ~ .global-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    min-height: 520px;
  }

  .page-hero {
    min-height: 340px;
  }

  .hero-logo h1 {
    font-size: 3.2rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 640px;
    padding: 0 0 28px;
  }

  .contact-card img {
    height: 230px;
  }

  .contact-copy {
    position: relative;
    min-height: 190px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    padding: 32px 96px 38px 30px;
    text-align: center;
  }

  .contact-copy p {
    grid-column: auto;
    justify-self: center;
    width: auto;
    margin: 0 0 10px;
    font-size: 0.98rem;
    text-align: center;
  }

  .contact-copy a {
    width: auto;
    max-width: min(100%, 360px);
    display: block;
    margin: 0 auto;
    font-size: 1.55rem;
    line-height: 1.28;
    text-align: center;
  }

  .contact-main {
    grid-column: auto;
    justify-self: center;
    width: auto;
    padding: 0;
    text-align: center;
  }

  .contact-arrow {
    position: absolute;
    top: 58%;
    right: 30px;
    grid-column: auto;
    grid-row: auto;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
  }

  .home-page .products .section-heading h2,
  .home-page .business .section-heading h2 {
    font-size: 2.1rem;
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 30px;
  }

  .footer-inner {
    width: min(calc(100% - 48px), 1160px);
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 120px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    width: min(calc(100% - 48px), 1160px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 460px;
    background-position: 52% center;
  }

  .page-hero {
    min-height: 300px;
    background-position: 52% center;
  }

  .page-hero-content {
    margin-top: 54px;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero-logo {
    gap: 8px;
  }

  .hero-logo h1 {
    font-size: 2.6rem;
  }

  .logo-mark-large {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .logo-mark-large span {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .logo-mark-large span:nth-child(1),
  .logo-mark-large span:nth-child(3) {
    left: 10px;
  }

  .logo-mark-large span:nth-child(2),
  .logo-mark-large span:nth-child(4) {
    top: 10px;
  }

  .news {
    padding: 38px 0 52px;
  }

  .news h2 {
    font-size: 2.3rem;
  }

  .news-list a {
    min-height: 84px;
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
    padding: 13px 0;
  }

  .news-list time {
    grid-column: 1 / -1;
  }

  .contact-band {
    padding: 36px 12px;
  }

  .contact-card {
    padding: 0;
  }

  .contact-card img {
    width: calc(100% - 48px);
    height: 150px;
    margin: 26px auto 0;
    padding: 0;
    object-fit: cover;
  }

  .contact-copy {
    position: relative;
    min-height: 164px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 28px 22px 34px;
    text-align: center;
  }

  .contact-copy a {
    width: auto;
    max-width: min(100%, 320px);
    display: block;
    margin: 0 auto;
    font-size: 1.52rem;
    line-height: 1.28;
    text-align: center;
  }

  .contact-copy p {
    width: auto;
    margin-bottom: 10px;
    font-size: 0.98rem;
    text-align: center;
  }

  .contact-main {
    width: auto;
    padding: 0;
    text-align: center;
  }

  .contact-arrow {
    position: absolute;
    top: 58%;
    right: 22px;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
  }

  .products {
    padding: 54px 0 72px;
  }

  .section-heading h2 {
    font-size: 1.65rem;
  }

  .home-page .products .section-heading h2,
  .home-page .business .section-heading h2 {
    font-size: 1.95rem;
  }

  .company-profile {
    padding: 54px 0 62px;
  }

  .notice-page {
    padding: 58px 0 70px;
  }

  .notice-page h2 {
    font-size: 1.45rem;
  }

  .notice-actions {
    display: grid;
    gap: 18px;
  }

  .notice-actions .button-link {
    width: 100%;
  }

  .profile-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .profile-row dd {
    line-height: 1.75;
  }

  .business-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .product-item a {
    min-height: auto;
    padding-bottom: 18px;
  }

  .product-item .category {
    margin-top: 12px;
    font-size: 0.72rem;
  }

  .product-item h3 {
    font-size: 0.82rem;
  }

  .button-link {
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
  }

  .business {
    padding: 0 0 72px;
  }

  .company-business {
    padding-top: 54px;
  }

  .business-grid {
    gap: 30px;
  }

  .business-label {
    top: 16px;
    left: 16px;
    width: fit-content;
    min-width: 0;
    max-width: calc(100% - 78px);
    padding: 12px 14px 13px;
  }

  .business-sub {
    font-size: 0.74rem;
  }

  .business-title {
    font-size: 0.96rem;
  }

  .business-title-nowrap {
    font-size: 0.86rem;
  }

  .business-arrow {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 0;
  }

  .footer-inner {
    width: min(calc(100% - 32px), 1160px);
    padding: 52px 0 112px;
  }

  .footer-logo {
    margin-bottom: 26px;
  }

  .footer-logo-img {
    width: 210px;
  }

  .social-links {
    left: 0;
    right: auto;
    bottom: 38px;
  }

  .copyright {
    width: min(calc(100% - 32px), 1160px);
    text-align: left;
  }
}
