:root {
  --blue: #004294;
  --blue-deep: #00347d;
  --blue-bright: #0067b7;
  --text: #172033;
  --muted: #4f5c6f;
  --line: #d6e0eb;
  --soft: #eef8ff;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 50, 120, 0.08);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  background: #fff;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 66, 148, 0.1);
  backdrop-filter: blur(12px);
}

.logo {
  color: var(--blue);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 38px);
  color: #111827;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.site-nav a[aria-current="page"],
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: var(--blue);
}

.contact-link {
  gap: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 4px;
}

.site-nav .contact-link,
.site-nav .contact-link[aria-current="page"] {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 344px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 37%, #eaf8ff 66%, #d6f1ff 100%);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.76) 17%, rgba(255, 255, 255, 0) 44%),
    image-set(url("../images/hero-fish.png") 1x, url("../images/hero-fish@2x.png") 2x) center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 90px;
}

.hero-content h1 {
  animation: aqnHeroTitle 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content p {
  animation: aqnHeroText 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

.hero-media {
  animation: aqnHeroImage 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  margin: 0 0 26px;
  color: var(--blue-bright);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.35;
}

.hero p,
.copy-block p,
.outlook p,
.business-card p,
.news-card p {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 2.2;
}

.section {
  padding: 48px 24px;
}

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

.section-heading.left {
  margin-bottom: 30px;
  text-align: left;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--blue);
  font-size: clamp(25px, 3vw, 33px);
  font-weight: 700;
  line-height: 1.2;
}

.section-heading h2::after {
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 40px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: translateX(-50%);
}

.section-heading.left h2::after {
  left: 0;
  transform: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(48px, 8vw, 95px);
  align-items: center;
  width: min(930px, 100%);
  margin: 0 auto;
}

.copy-block h3 {
  margin: 0 0 27px;
  color: var(--blue);
  font-size: clamp(23px, 2.5vw, 29px);
  line-height: 1.55;
}

.copy-block p + p,
.outlook p + p {
  margin-top: 22px;
}

.about-grid img,
.outlook img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-block: 42px 50px;
  background: linear-gradient(90deg, #edf8ff 0%, #fff 50%, #edf8ff 100%);
}

.split-panel {
  width: min(430px, 100%);
}

.strengths {
  justify-self: end;
}

.outlook {
  justify-self: start;
  padding-left: 64px;
  border-left: 1px solid var(--line);
}

.strength-list {
  display: grid;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strength-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: start;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  background: var(--blue);
  border-radius: 50%;
}

.strength-list h3,
.business-card h3,
.news-card h3 {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.55;
}

.strength-list p {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.outlook img {
  margin-bottom: 18px;
}

.business {
  padding-top: 36px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.business-card,
.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 9px 22px rgba(20, 66, 110, 0.04);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.business-card:hover,
.news-card:hover,
.value-grid article:hover,
.service-row:hover,
.news-list-item:hover {
  border-color: rgba(0, 66, 148, 0.22);
  box-shadow: 0 22px 46px rgba(0, 50, 120, 0.13);
  transform: translateY(-6px);
}

.business-card img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.business-card div {
  padding: 15px 16px 20px;
}

.business-card p {
  font-size: 12px;
  line-height: 1.9;
}

.news {
  padding-top: 18px;
}

.news-shell {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.news-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-track.is-auto-scrolling {
  cursor: grab;
}

.news-track.is-single-news {
  justify-content: center;
  overflow: visible;
}

.news-card img {
  width: 100%;
  aspect-ratio: 2.05;
  object-fit: cover;
}

.news-body {
  padding: 14px 15px 18px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 11px;
  color: var(--muted);
}

.meta span {
  padding: 3px 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  background: #4d9ddd;
  border-radius: 2px;
}

.news-card h3 {
  font-size: 16px;
  line-height: 1.45;
}

.news-card a,
.news-list-item a {
  transition: color 0.25s ease;
}

.news-card h3 a:hover,
.news-list-item h2 a:hover {
  color: var(--blue-bright);
}

.news-image-link {
  display: block;
  overflow: hidden;
}

.news-image-link img {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-card:hover .news-image-link img,
.news-list-item:hover .news-image-link img {
  transform: scale(1.05);
}

.news-card p {
  font-size: 12px;
  line-height: 1.75;
}

.news-card {
  flex: 0 0 calc((100% - 84px) / 4);
}

.news-track.is-single-news .news-card {
  flex-basis: min(100%, 260px);
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-button.prev {
  left: -64px;
}

.slider-button.next {
  right: -64px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  background: #c9d5e1;
  border-radius: 50%;
}

.slider-dots .active {
  background: var(--blue);
}

.company {
  padding-top: 22px;
  padding-bottom: 58px;
}

.company-tables {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  width: min(1050px, 100%);
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  background: #fff;
}

th,
td {
  padding: 17px 22px;
  border: 1px solid #bacbdd;
  line-height: 1.7;
  vertical-align: middle;
}

th {
  width: 30%;
  color: #071a36;
  font-weight: 800;
  text-align: center;
  background: #eef6fc;
}

.site-footer {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 95px;
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  background:
    linear-gradient(rgba(0, 71, 148, 0.88), rgba(0, 71, 148, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #005fb3, #003a88);
}

.to-top {
  position: absolute;
  right: 37px;
  bottom: 25px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 21px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.page-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 70px 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 49, 112, 0.86), rgba(0, 84, 156, 0.46)),
    image-set(url("../images/hero-fish.png") 1x, url("../images/hero-fish@2x.png") 2x) center / cover no-repeat;
}

.page-hero > div {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.page-label {
  margin: 0 0 12px;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.86;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.2;
}

.page-hero p:last-child {
  width: min(680px, 100%);
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.about-page-hero,
.business-page-hero,
.company-page-hero,
.news-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 49, 112, 0.88), rgba(0, 84, 156, 0.42)),
    image-set(url("../images/hero-fish.png") 1x, url("../images/hero-fish@2x.png") 2x) center / cover no-repeat;
}

.detail-section {
  padding-block: 70px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.detail-grid h2 {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
}

.detail-grid img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.value-section {
  background: linear-gradient(90deg, #edf8ff 0%, #fff 50%, #edf8ff 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.value-grid article,
.service-row,
.news-list-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 9px 22px rgba(20, 66, 110, 0.04);
}

.value-grid article {
  padding: 30px 28px;
}

.value-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-bright);
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 800;
}

.value-grid h3,
.service-row h2,
.news-list-item h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.5;
}

.value-grid p,
.service-row p,
.news-list-item p,
.contact-section p {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.business-detail,
.news-list-section {
  display: grid;
  gap: 26px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding-inline: 0;
}

.service-row,
.news-list-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  padding: 24px;
}

.news-list .news-list-item + .news-list-item,
.news-list-section .news-list-item:not(:first-child) {
  margin-top: 15px;
}

.service-row img,
.news-list-item img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  border-radius: 3px;
}

.page-company {
  padding-block: 70px;
}

.contact-section {
  text-align: center;
  background: linear-gradient(90deg, #edf8ff, #fff, #edf8ff);
}

.large-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  margin-top: 26px;
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  background: var(--blue);
  border-radius: 4px;
}

.post-detail {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding-inline: 0;
}

.post-detail-image {
  margin: 0 0 36px;
}

.post-detail-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.post-detail-body {
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 2.1;
}

.post-detail-body h2,
.post-detail-body h3 {
  color: var(--blue);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  line-height: 1.5;
}

.post-detail-body img {
  height: auto;
  border-radius: 4px;
}

.post-back {
  margin: 40px 0 0;
  text-align: center;
}

.policy-section {
  padding-block: 70px;
}

.policy-content {
  width: min(900px, 100%);
  margin: 0 auto;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.policy-content h2 {
  margin: 38px 0 12px;
  color: var(--blue);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
}

.policy-content p {
  margin: 0 0 14px;
}

.policy-content ul {
  margin: 0 0 18px;
  padding-left: 1.4em;
}

.policy-date {
  margin-top: 34px;
  text-align: right;
}

.contact-page-section {
  padding-block: 70px;
}

.contact-form-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0 0 24px;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.contact-form-preview,
.wpcf7-form {
  display: grid;
  gap: 18px;
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
}

.contact-form-preview label,
.wpcf7-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.contact-form-preview label span,
.wpcf7-form label span.required {
  display: inline-flex;
  width: fit-content;
  margin-left: 8px;
  padding: 2px 7px;
  color: #fff;
  font-size: 10px;
  background: var(--blue);
  border-radius: 2px;
}

.contact-form-preview input,
.contact-form-preview textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wpcf7-form .wpcf7-acceptance,
.wpcf7-form .wpcf7-list-item,
.wpcf7-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: var(--blue);
}

.wpcf7-form .wpcf7-list-item-label {
  color: var(--text);
  font-weight: 700;
  line-height: 1.7;
}

.wpcf7-form select {
  min-height: 54px;
  padding-right: 46px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 16px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.wpcf7-form .wpcf7-select {
  color: var(--text);
}

.contact-form-preview input:focus,
.contact-form-preview textarea:focus,
.wpcf7-form select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  background: #fff;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(0, 103, 183, 0.12);
}

.contact-form-preview button,
.wpcf7-submit {
  justify-self: start;
  min-width: 180px;
  min-height: 46px;
  padding: 0 28px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.section-heading h2 {
  overflow: hidden;
}

.section-heading h2::before {
  position: absolute;
  inset: auto 0 -22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 66, 148, 0.42), transparent);
  transform: translateX(-110%);
}

.section-heading.is-visible h2::before,
[data-reveal].is-visible .section-heading h2::before {
  animation: aqnLineSweep 1.3s ease both;
}

@keyframes aqnHeroTitle {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes aqnHeroText {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aqnHeroImage {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aqnLineSweep {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(110%);
  }
}

@media (max-width: 1180px) {
  .slider-button.prev {
    left: -8px;
  }

  .slider-button.next {
    right: -8px;
  }

  .news-shell {
    padding-inline: 34px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .site-nav-list {
    display: contents;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding-inline: 10px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: 100%;
    opacity: 0.55;
  }

  .hero-content {
    padding: 72px 0 110px;
  }

  .about-grid,
  .detail-grid,
  .split-section,
  .business-grid,
  .value-grid,
  .company-tables {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 36px;
  }

  .split-panel,
  .strengths,
  .outlook {
    justify-self: center;
    width: min(640px, 100%);
  }

  .outlook {
    padding-left: 0;
    border-left: 0;
  }

  .business-grid {
    width: min(560px, 100%);
  }

  .service-row,
  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-track {
    gap: 18px;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .news-card {
    flex: 0 0 min(78vw, 320px);
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .logo {
    font-size: 20px;
  }

  .hero-content {
    width: min(100% - 36px, var(--content));
    padding-top: 62px;
  }

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

  .hero p,
  .copy-block p,
  .outlook p {
    font-size: 13px;
    line-height: 2;
  }

  .section {
    padding-inline: 18px;
  }

  .page-hero {
    min-height: 250px;
    padding-inline: 18px;
  }

  .business-detail,
  .news-list-section {
    width: calc(100% - 36px);
  }

  .strength-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .icon-badge {
    width: 40px;
    height: 40px;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 12px 14px;
    text-align: left;
  }

  .to-top {
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
