:root {
  --bg: #f4f8fc;
  --bg-soft: #e9f1fa;
  --surface: rgba(255, 255, 255, 0.86);
  --line: rgba(34, 76, 124, 0.2);
  --text: #10253e;
  --muted: #5d7696;
  --accent: #1d7fc7;
  --accent-2: #48bfa2;
  --page-gutter: clamp(0.85rem, 1.8vw, 1.8rem);
  --content-wide: min(1720px, 94vw);
  --content-standard: min(1580px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: radial-gradient(circle at 8% 8%, #ddebf8, transparent 35%),
    radial-gradient(circle at 88% 10%, #e6f4ef, transparent 32%),
    linear-gradient(180deg, #f6faff 0%, #f2f7fc 45%, #eef4fa 100%);
  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.04em;
  min-height: 100vh;
}

#loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #0f2a4a;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-mark {
  display: grid;
  gap: 0.3rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.6em;
  font-size: clamp(1.05rem, 2.5vw, 2rem);
  color: #ffffff;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 252, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(96, 139, 186, 0.32);
}

.logo {
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  gap: clamp(0.7rem, 1.6vw, 1.6rem);
}

.site-nav a {
  color: rgba(239, 247, 255, 0.87);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-family: "Montserrat", sans-serif;
}

.site-header.is-scrolled .logo,
.site-header.is-scrolled .site-nav a {
  color: #1a3d63;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: linear-gradient(rgba(7, 16, 31, 0.36), rgba(7, 16, 31, 0.6)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  filter: saturate(90%) contrast(95%);
  transform: scale(1.06);
  animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: scale(1.05) translateY(0px);
  }
  to {
    transform: scale(1.09) translateY(-20px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 22, 0.2), rgba(6, 12, 22, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1520px, 92vw);
}

.hero-news-section {
  width: 100%;
  margin: calc(-1 * clamp(15rem, 29vh, 19rem)) auto 0;
  padding: 0 clamp(0.8rem, 2.2vw, 2.2rem) 0 0;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.hero-news {
  width: min(640px, 40vw);
  border: 1px solid rgba(174, 208, 247, 0.45);
  background: rgba(8, 31, 56, 0.72);
  backdrop-filter: blur(5px);
  padding: clamp(0.75rem, 1.8vw, 1.25rem);
  display: flex;
  flex-direction: column;
}

.hero-news__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #d4e8ff;
}

.hero-news__list {
  margin-top: 0.45rem;
}

.hero-news__list li {
  border-top: 1px solid rgba(176, 212, 248, 0.22);
}

.hero-news__list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.56rem 0;
  color: #eaf4ff;
  text-decoration: none;
}

.hero-news__list a:hover span {
  text-decoration: underline;
}

.hero-news__list time {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: #b9d4f6;
}

.hero-news__list span {
  font-size: 0.82rem;
  line-height: 1.6;
}

.hero-news__more {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.8rem;
  align-self: flex-end;
  color: #d2e7ff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.hero-news__more::after {
  content: " ->";
}

.hero-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.22em;
  color: rgba(200, 230, 255, 0.9);
}

.hero h1 {
  margin: 1rem 0 2.3rem;
  font-size: clamp(1.8rem, 4.6vw, 4.6rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #e9edf2;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.btn-ghost,
.btn-solid {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-family: "Montserrat", sans-serif;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.btn-ghost {
  color: #f3f9ff;
  border: 1px solid rgba(200, 232, 255, 0.55);
  padding: 0.9rem 1.7rem;
  position: relative;
  overflow: hidden;
}

.btn-solid {
  color: #04101f;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  font-weight: 600;
  padding: 0.95rem 1.8rem;
}

.btn-ghost:hover,
.btn-solid:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero .btn-ghost::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 34%;
  height: 320%;
  transform: rotate(22deg) translateX(-180%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.78) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero .btn-ghost:hover::before {
  animation: heroBtnShine 0.9s ease;
}

@keyframes heroBtnShine {
  from {
    transform: rotate(22deg) translateX(-180%);
  }
  to {
    transform: rotate(22deg) translateX(430%);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #dceeff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.25em;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  margin: 0.6rem auto 0;
  background: linear-gradient(to bottom, rgba(241, 249, 255, 0.75), transparent);
  animation: lineDrop 1.8s ease-in-out infinite;
}

@keyframes lineDrop {
  0% {
    transform: scaleY(0.3);
    transform-origin: top;
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0;
  }
}

.section {
  padding: clamp(4rem, 8vw, 8rem) var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.section-concept,
.section-cta {
  text-align: center;
  max-width: var(--content-standard);
  margin: 0 auto;
}

.section-concept {
  background: transparent;
}

.section-service {
  background: rgba(248, 252, 255, 0.68);
}

.section-partner {
  background: #f3f8fe;
  max-width: none;
  margin: 0;
}

.section-clients {
  background: rgba(248, 252, 255, 0.68);
}

.section-company {
  background: rgba(246, 251, 255, 0.72);
}

.section-contact {
  background-image: linear-gradient(rgba(8, 26, 47, 0.82), rgba(8, 26, 47, 0.82)),
    url("https://images.unsplash.com/photo-1497215842964-222b430dc094?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.eyebrow {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.23em;
  color: var(--muted);
}

.section-concept .eyebrow {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: 0.16em;
}

.section-concept h2,
.section-cta h2 {
  margin: 1rem 0;
  line-height: 1.8;
  font-size: clamp(1.45rem, 2.7vw, 2.6rem);
  font-weight: 400;
}

.section-concept h2 {
  font-size: clamp(1.5rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 1.24;
}

.section-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 5.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-sub {
  margin: 1rem 0 2.2rem;
  color: var(--muted);
}

.section-split,
#service,
.section-partner,
#news,
#company,
#contact {
  display: grid;
  grid-template-columns: clamp(220px, 18vw, 300px) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  align-items: start;
}

.section-split > .section-title,
#service > .section-title,
.section-partner > .section-title,
#news > .section-title,
#company > .section-title,
#contact > .section-title {
  grid-column: 1;
  position: sticky;
  top: clamp(5.2rem, 9vh, 7.4rem);
  align-self: start;
  text-align: left;
  margin-top: 0;
}

.section-pin {
  grid-column: 1;
  position: sticky;
  top: clamp(5.2rem, 9vh, 7.4rem);
  align-self: start;
  background: transparent;
  border: 0;
  padding: 0;
  z-index: 3;
}

.section-pin .section-title {
  margin: 0;
  text-align: left;
}

.section-pin .section-sub {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: min(30ch, 100%);
  text-wrap: pretty;
}

.section-split > .section-body,
#service > .section-body,
.section-partner > .section-body,
#news > .section-body,
#company > .section-body,
#contact > .section-body {
  grid-column: 2;
  min-width: 0;
  padding-top: clamp(2.5rem, 4.3vw, 4rem);
}

.section-split .section-sub {
  margin: 0 0 2rem;
}

.section-flow {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.media-track {
  width: max-content;
  display: flex;
  gap: 0.9rem;
  padding: 0;
  animation: marquee 34s linear infinite;
}

.media-card {
  margin: 0;
  width: clamp(300px, 33vw, 560px);
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-service,
.section-clients,
.section-company {
  max-width: none;
  margin: 0;
}

.service-card {
  border: 1px solid rgba(133, 179, 226, 0.36);
  padding: clamp(1.3rem, 3.5vw, 2.6rem);
  margin-top: 1.3rem;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(31, 74, 120, 0.08);
}

.service-list {
  display: grid;
  gap: 0.9rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.service-visual {
  margin: 0;
  min-height: clamp(240px, 24vw, 330px);
  border: 1px solid rgba(133, 179, 226, 0.36);
  border-right: 0;
  overflow: hidden;
  background: #d8dde4;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  margin-top: 0;
  border-left: 1px solid rgba(133, 179, 226, 0.36);
}

/* Strong layout guard for WP/plugin style overrides */
main #service.section.section-service.section-split {
  display: grid !important;
  grid-template-columns: clamp(260px, 22vw, 360px) minmax(0, 1fr) !important;
  gap: clamp(2rem, 3vw, 3.8rem) !important;
  align-items: start !important;
}

main #service > .section-pin {
  grid-column: 1 !important;
  position: sticky !important;
  top: clamp(5.2rem, 9vh, 7.4rem) !important;
  align-self: start !important;
}

main #service > .section-body.service-list {
  grid-column: 2 !important;
  display: grid !important;
  gap: 0.9rem !important;
  min-width: 0 !important;
  width: min(100%, 1240px) !important;
  justify-self: end !important;
  padding-left: clamp(0.4rem, 0.9vw, 1rem) !important;
}

#company > .section-body,
#contact > .section-body {
  width: min(100%, 1040px) !important;
  justify-self: end !important;
  padding-left: clamp(1.8rem, 2.6vw, 3.4rem) !important;
}

main #service .service-row {
  display: grid !important;
  grid-template-columns: minmax(280px, 43%) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
}

main #service .service-visual {
  margin: 0 !important;
}

main #service .service-content {
  margin-top: 0 !important;
}

main #service .service-content > p {
  max-width: 58ch;
  text-wrap: pretty;
}

main #service .service-content > ul {
  max-width: 46ch;
}

.contact-cta {
  border: 0;
  background: transparent;
  padding: clamp(2rem, 4vw, 4rem);
  text-align: center;
}

.contact-cta h2 {
  margin: 1rem 0;
  line-height: 1.7;
  font-size: clamp(1.45rem, 2.7vw, 2.6rem);
  font-weight: 400;
  color: #f4f8fd;
}

.contact-cta > p:not(.eyebrow) {
  width: min(720px, 92%);
  margin: 0 auto 1.6rem;
  color: rgba(236, 244, 252, 0.94);
  line-height: 1.9;
}

#contact .section-pin .section-title,
#contact .section-pin .section-sub,
#contact .contact-cta .eyebrow {
  color: #f4f8fd;
}

#contact .section-pin .section-sub {
  color: rgba(214, 230, 247, 0.95);
}

#contact .btn-solid {
  color: #f6fbff;
  background: linear-gradient(100deg, rgba(42, 142, 219, 0.88), rgba(46, 175, 149, 0.88));
}

.service-no {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: rgba(43, 101, 160, 0.72);
  letter-spacing: 0.2em;
}

.service-card h3 {
  margin: 0.4rem 0;
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  font-weight: 500;
}

.service-card ul {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
}

.service-card li {
  margin: 0.35rem 0;
  list-style: square;
  color: #234061;
}

.partner-head {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.partner-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(120, 166, 214, 0.3);
  border-bottom: 1px solid rgba(120, 166, 214, 0.3);
  background: linear-gradient(90deg, rgba(17, 57, 95, 0.08), rgba(33, 99, 119, 0.1));
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1rem;
  animation: marquee 26s linear infinite;
}

.partner-logo {
  min-width: clamp(150px, 14vw, 220px);
  height: clamp(54px, 6.2vw, 74px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 193, 233, 0.44);
  background: rgba(255, 255, 255, 0.86);
  color: #24476b;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(0.74rem, 1.3vw, 0.96rem);
  letter-spacing: 0.12em;
}

.news-list {
  margin: 0;
  padding: 0;
}

.news-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(120, 166, 214, 0.3);
  padding: 1.25rem 0;
  align-items: center;
}

.news-list li:last-child {
  border-bottom: 1px solid rgba(120, 166, 214, 0.3);
}

.news-list time {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #5f81a9;
}

.news-list a {
  color: #153558;
  text-decoration: none;
}

.news-list a:hover {
  text-decoration: underline;
}

.blog-carousel {
  display: grid;
  gap: 0;
}

.section-clients .section-body {
  display: grid;
  gap: 0.9rem;
}

.blog-controls {
  margin-top: 1.1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
}

.blog-more {
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  background: transparent;
  border: 1px solid rgba(121, 166, 214, 0.55);
  color: #153558;
}

.blog-nav-group {
  display: flex;
  gap: 0.5rem;
}

.blog-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(121, 166, 214, 0.46);
  background: rgba(255, 255, 255, 0.86);
  color: #143a61;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.blog-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blog-viewport {
  overflow: hidden;
}

.blog-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.36s ease;
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  border: 1px solid rgba(133, 179, 226, 0.36);
  background: rgba(255, 255, 255, 0.86);
}

.blog-card a {
  color: #153558;
  text-decoration: none;
  display: block;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-card__meta {
  padding: 0.8rem 0.85rem 0.95rem;
}

.blog-card__meta time {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: #5f81a9;
}

.blog-card__meta h3 {
  margin: 0.45rem 0 0;
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 500;
}

.section-cta {
  margin: 4.5rem auto;
  border: 1px solid rgba(123, 169, 215, 0.38);
  background: linear-gradient(120deg, rgba(226, 241, 255, 0.95), rgba(221, 243, 237, 0.9));
}

.section-concept > p:not(.eyebrow),
.section-cta > p:not(.eyebrow) {
  width: min(1200px, 88vw);
  margin-left: auto;
  margin-right: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: stretch;
}

.section-partner > .section-body {
  width: 100%;
}

.value-item {
  border: 1px solid rgba(133, 179, 226, 0.32);
  background: rgba(255, 255, 255, 0.72);
  padding: 1.1rem 1.2rem;
}

.value-item h3 {
  margin: 0 0 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  letter-spacing: 0.08em;
}

.value-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.company-table {
  margin: 1.6rem 0 0;
}

.company-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(128, 172, 216, 0.3);
  padding: 1rem 0;
}

.company-table div:last-child {
  border-bottom: 1px solid rgba(128, 172, 216, 0.3);
}

.company-table dt {
  color: #4f729a;
}

.section-contact {
  max-width: none;
  margin: 0;
  border-bottom: 0;
  position: relative;
}

.section-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(90px, 12vw, 160px);
  background: linear-gradient(180deg, rgba(7, 24, 42, 0) 0%, #061423 100%);
  pointer-events: none;
  z-index: 1;
}

.site-footer {
  border-top: 0;
  background: #061423;
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(2.2rem, 4vw, 3.4rem) var(--page-gutter);
  display: grid;
  gap: 1.1rem;
}

.site-footer__logo {
  text-decoration: none;
  color: #f5faff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.09em;
  font-weight: 700;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.site-footer__nav a {
  color: #d3e8ff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.site-footer__address {
  font-style: normal;
  color: #b6d1ee;
  font-size: 0.84rem;
  line-height: 1.85;
}

.site-footer__address a {
  color: #dff1ff;
  text-decoration: none;
}

.site-footer__copy {
  color: #83a8cd;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 58px;
    right: 1rem;
    padding: 1rem;
    border: 1px solid rgba(137, 185, 237, 0.25);
    background: rgba(5, 17, 31, 0.94);
    display: grid;
    gap: 0.65rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-block;
    border: 1px solid rgba(179, 212, 245, 0.44);
    color: #f1f8ff;
    background: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.8rem;
  }

  .hero h1 {
    line-height: 1.6;
  }

  .hero-news-section {
    margin-top: 0;
    padding: 1rem;
    display: block;
  }

  .hero-news {
    width: 100%;
  }

  .section-split,
  #service,
  .section-partner,
  #news,
  #company,
  #contact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-split > .section-title,
  #service > .section-title,
  .section-partner > .section-title,
  #news > .section-title,
  #company > .section-title,
  #contact > .section-title,
  .section-pin,
  .section-split > .section-body,
  #service > .section-body,
  .section-partner > .section-body,
  #news > .section-body,
  #company > .section-body,
  #contact > .section-body {
    grid-column: 1;
  }

  .section-split > .section-body,
  #service > .section-body,
  .section-partner > .section-body,
  #news > .section-body,
  #company > .section-body,
  #contact > .section-body {
    padding-top: 0;
  }

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

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-visual {
    border-right: 1px solid rgba(133, 179, 226, 0.36);
    border-bottom: 0;
    min-height: 200px;
  }

  .service-content {
    border-left: 1px solid rgba(133, 179, 226, 0.36);
    border-top: 0;
  }

  .blog-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  main #service.section.section-service.section-split {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  main #service > .section-pin,
  main #service > .section-body.service-list {
    grid-column: 1 !important;
  }

  main #service .service-row {
    grid-template-columns: 1fr !important;
  }

  main #service > .section-body.service-list {
    width: 100% !important;
    justify-self: stretch !important;
    padding-left: 0 !important;
  }

  #company > .section-body,
  #contact > .section-body {
    width: 100% !important;
    justify-self: stretch !important;
    padding-left: 0 !important;
  }

  .news-list li,
  .company-table div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

}

@media (max-width: 560px) {
  .media-card {
    width: 78vw;
    aspect-ratio: 16/8;
  }

  .partner-logo {
    min-width: 140px;
    height: 52px;
  }

  .hero-content {
    width: 90vw;
  }

  .hero h1 {
    margin-top: 1.3rem;
    font-size: clamp(1.5rem, 8.3vw, 2.3rem);
  }

  .hero-news__list a {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .hero-news-section {
    padding: 0.8rem 1rem 0;
  }

  .blog-carousel {
    gap: 0;
  }

  .blog-controls {
    margin-top: 0.8rem;
    gap: 0.55rem;
  }

  .blog-nav {
    width: 38px;
    height: 38px;
  }

  .blog-card {
    flex-basis: 100%;
  }
}
