*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, p, ul, ol, figure, blockquote {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
}

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

address {
  font-style: normal;
}

:root {
  --onken-red: #de0004;
  --onken-ink: #16191c;
  --onken-text: #1f262b;
  --onken-gray: #f4f5f6;
}

html {
  max-width: 100%;
  font-size: 62.5%;
}

body {
  color: #1f262b;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .l-header {
  top: 32px;
}

.l-main {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: #de0004;
}

@media (max-width: 767px) {
  html {
    font-size: 60%;
  }
  body.admin-bar .l-header {
    top: 46px;
  }
}
.l-container {
  width: min(100% - clamp(20px, 5.95vw, 100px) * 2, 1480px);
  margin-inline: auto;
}

@media (max-width: 767px) {
  .l-container {
    width: calc(100% - 40px);
  }
}
.l-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 88px;
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.l-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(22, 25, 28, 0.08);
}
.l-header__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-left: 100px;
}
.l-header__brand {
  display: flex;
  align-items: center;
  width: 545px;
  min-width: 545px;
  word-break: normal;
}
.l-header__brand-name {
  color: #16191c;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 0.71;
  letter-spacing: -0.03em;
}
.l-header__brand-name em {
  color: #de0004;
  font-style: normal;
}
.l-header__brand-copy {
  display: flex;
  flex: 0 0 230px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  width: 230px;
  margin-left: 12px;
  color: #242424;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
}
.l-header__brand-copy span {
  display: block;
  width: 230px;
  white-space: nowrap;
  word-break: keep-all;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  padding: 0 24px 0 0;
}
.l-header__nav a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.l-header__nav a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  background: #de0004;
  content: "";
  transition: right 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), left 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.l-header__nav a:hover::after {
  right: 0;
  left: 0;
}
.l-header__phone {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 227px;
  min-width: 227px;
  padding: 17px 23px 0 0;
  text-align: right;
}
.l-header__phone > span {
  width: 204px;
  color: #242424;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.l-header__phone a {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  width: 204px;
  margin-top: 5px;
  color: #de0004;
}
.l-header__phone a img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.l-header__phone a b {
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 3.0316rem;
  font-weight: 500;
  line-height: 0.83;
  white-space: nowrap;
}
.l-header__contact {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 198px;
  min-width: 198px;
  padding: 0 20px;
  overflow: hidden;
  color: #fff;
  background: #de0004;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.l-header__contact::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #b80003;
  content: "";
  transform: translateX(-101%);
  pointer-events: none;
}
.l-header__contact > * {
  position: relative;
  z-index: 1;
}
.l-header__contact:hover::before, .l-header__contact:focus-visible::before {
  animation: button-flow-enter 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.l-header__contact:not(:hover):not(:focus-visible)::before {
  animation: button-flow-leave 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.l-header__contact img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.l-header__toggle {
  display: none;
}

@media (min-width: 1421px) and (max-width: 1679px) {
  .l-header__inner {
    padding-left: clamp(48px, 4vw, 68px);
  }
  .l-header__brand {
    width: clamp(440px, 31vw, 520px);
    min-width: clamp(440px, 31vw, 520px);
  }
  .l-header__nav {
    gap: 16px;
    padding-right: 12px;
  }
  .l-header__phone {
    width: 220px;
    min-width: 220px;
    padding-right: 16px;
  }
  .l-header__contact {
    width: 180px;
    min-width: 180px;
    padding-inline: 14px;
    font-size: 1.7rem;
  }
}
@media (max-width: 1420px) {
  .l-header {
    height: 72px;
  }
  .l-header__inner {
    padding-inline: 28px;
  }
  .l-header__brand {
    width: auto;
    min-width: 0;
  }
  .l-header__brand-copy, .l-header__phone, .l-header__contact {
    display: none;
  }
  .l-header__toggle {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: 6px;
    width: 48px;
    margin-left: auto;
    cursor: pointer;
  }
  .l-header__toggle > span:not(.u-visually-hidden) {
    display: block;
    width: 28px;
    height: 2px;
    margin-left: auto;
    background: #16191c;
    transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .l-header__nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(380px, 100%);
    padding: 44px 34px;
    background: #fff;
    box-shadow: -10px 18px 34px rgba(22, 25, 28, 0.1);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .l-header__nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #dfe2e4;
    font-size: 1.5rem;
  }
  .l-header.is-menu-open .l-header__nav {
    transform: translateX(0);
  }
  .l-header.is-menu-open .l-header__toggle > span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .l-header.is-menu-open .l-header__toggle > span:nth-child(2) {
    opacity: 0;
  }
  .l-header.is-menu-open .l-header__toggle > span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media (max-width: 767px) {
  .l-header__inner {
    padding-inline: 20px;
  }
  .l-header__brand-name {
    font-size: 3rem;
  }
}
.l-footer {
  position: relative;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  background: #171b1e;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 78px 80px 64px;
}
.l-footer__company {
  width: 470px;
  font-size: 1.8rem;
  line-height: 1.75;
}
.l-footer__brand {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: #fff;
}
.l-footer__brand strong {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 4.8rem;
  line-height: 0.71;
  letter-spacing: -0.03em;
}
.l-footer__brand strong em {
  color: #de0004;
  font-style: normal;
}
.l-footer__brand small {
  display: flex;
  flex: 0 0 230px;
  flex-direction: column;
  gap: 1px;
  width: 230px;
  margin-left: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
}
.l-footer__brand small span {
  display: block;
  width: 230px;
  white-space: nowrap;
  word-break: keep-all;
}
.l-footer__address {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
}
.l-footer__address + .l-footer__address {
  margin-top: 20px;
}
.l-footer__address > img {
  grid-row: 1/3;
  width: 24px;
  height: 24px;
  margin-top: 3px;
}
.l-footer__address strong {
  grid-column: 2;
  display: block;
  margin-bottom: 7px;
  color: #fff;
}
.l-footer__address address {
  grid-column: 2;
}
.l-footer__tel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: #fff;
}
.l-footer__tel a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}
.l-footer__tel a img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.l-footer__tel a b {
  font: inherit;
}
.l-footer__tel span {
  font-size: 1.8rem;
}
.l-footer__nav {
  display: flex;
  gap: 68px;
  padding-top: 5px;
}
.l-footer__nav > div {
  display: grid;
  align-content: start;
  gap: 15px;
}
.l-footer__nav a {
  font-size: 1.8rem;
  font-weight: 500;
  transition: color 0.2s;
}
.l-footer__nav a:hover {
  color: #de0004;
}
.l-footer__copyright {
  width: 100%;
  margin: 0;
  padding: 26px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.8rem;
  text-align: left;
}

@media (max-width: 1100px) {
  .l-footer__inner {
    display: block;
    padding: 64px 40px 50px;
  }
  .l-footer__company {
    width: 100%;
    max-width: 620px;
  }
  .l-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 48px;
    width: 100%;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .l-footer__copyright {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .l-footer {
    padding: 0;
  }
  .l-footer__inner {
    padding: 54px 20px 40px;
  }
  .l-footer__inner {
    display: block;
  }
  .l-footer__brand small {
    display: none;
  }
  .l-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 28px;
    margin-top: 38px;
    padding-top: 26px;
  }
  .l-footer__nav > div {
    gap: 10px;
  }
  .l-footer__nav a {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .l-footer__company {
    width: 100%;
    font-size: 1.4rem;
  }
  .l-footer__address {
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 8px;
  }
  .l-footer__address > img {
    width: 20px;
    height: 20px;
  }
  .l-footer__tel {
    flex-wrap: wrap;
  }
  .l-footer__tel a {
    gap: 7px;
  }
  .l-footer__tel a img {
    flex-basis: 21px;
    width: 21px;
    height: 21px;
  }
  .l-footer__copyright {
    padding: 22px 20px;
    font-size: 1.2rem;
    text-align: left;
  }
}
@media (max-width: 390px) {
  .l-footer__nav {
    gap: 15px 22px;
  }
  .l-footer__nav > div {
    gap: 8px;
  }
  .l-footer__nav a {
    font-size: 1.3rem;
  }
}
.c-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  min-width: 220px;
  min-height: 58px;
  padding: 14px 22px;
  border: 1px solid transparent;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.c-button::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--button-flow-color);
  content: "";
  transform: translateX(-101%);
  pointer-events: none;
}
.c-button > * {
  position: relative;
  z-index: 1;
}
.c-button > span:not(.c-button__label) {
  margin-left: 22px;
  font-family: sans-serif;
}
.c-button:hover {
  transform: translateY(-2px);
}
.c-button--primary, .c-button--accent {
  --button-flow-color: rgb(181.2, 0, 3.2648648649);
  color: #fff;
  background: #de0004;
}
.c-button--dark {
  --button-flow-color: #de0004;
  color: #fff;
  background: #171b1e;
}
.c-button--outline {
  color: #16191c;
  border-color: #16191c;
  background: #fff;
}
.c-button--outline {
  --button-flow-color: #16191c;
}
.c-button--outline:hover {
  color: #fff;
}
.c-button--compact {
  min-width: 215px;
  min-height: 54px;
  font-family: "Oswald", "Roboto", sans-serif;
  letter-spacing: 0.08em;
}
.c-button:hover::before, .c-button:focus-visible::before {
  animation: button-flow-enter 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.c-button:not(:hover):not(:focus-visible)::before {
  animation: button-flow-leave 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.c-more-button {
  display: flex;
  align-items: center;
}
.c-more-button .c-button {
  justify-content: flex-start;
  width: 217px;
  min-width: 217px;
  min-height: 58px;
  padding: 14px 26px;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
}
.c-more-button > i {
  position: relative;
  z-index: 2;
  flex: 0 0 40px;
  width: 40px;
  height: 1px;
  margin-left: -20px;
  background: #16191c;
}

@media (max-width: 767px) {
  .c-button {
    min-width: 0;
  }
  .c-more-button .c-button {
    width: 205px;
    min-width: 205px;
  }
}
@keyframes button-flow-enter {
  from {
    transform: translateX(-101%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes button-flow-leave {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(101%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-button::before {
    display: none;
  }
}
.c-section-title__line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.c-section-title__line i {
  display: block;
  width: 68px;
  height: 1px;
  background: #16191c;
}
.c-section-title__en {
  color: #16191c;
  font-family: Arial, sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.c-section-title__ja {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.c-section-title__kicker {
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}
.c-section-title__kicker::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 12px;
  background: #de0004;
  content: "";
}
.c-section-title__heading {
  color: #16191c;
  font-size: clamp(3.2rem, 3.1vw, 4.8rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.035em;
}
.c-section-title__heading em {
  color: #de0004;
  font-style: normal;
}
.c-section-title__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}
.c-section-title__tags span {
  padding: 7px 20px;
  border-radius: 999px;
  color: #fff;
  background: #de0004;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-section-title--center {
  text-align: center;
}
.c-section-title--center .c-section-title__kicker {
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .c-section-title__line {
    gap: 12px;
    margin-bottom: 16px;
  }
  .c-section-title__line i {
    width: 34px;
  }
  .c-section-title__en {
    font-size: 3.7rem;
  }
  .c-section-title__ja {
    font-size: 1.3rem;
  }
  .c-section-title__heading {
    font-size: 3rem;
    line-height: 1.45;
  }
  .c-section-title__tags {
    flex-wrap: wrap;
  }
}
.c-page-top {
  position: fixed;
  z-index: 90;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: #de0004;
  box-shadow: 0 10px 28px rgba(22, 25, 28, 0.22);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.2s ease;
}

.c-page-top::before {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.c-page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.c-page-top:hover,
.c-page-top:focus-visible {
  background: #b80003;
}

.c-page-top:focus-visible {
  outline: 3px solid rgba(222, 0, 4, 0.3);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .c-page-top {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
  .c-page-top::before {
    width: 10px;
    height: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-page-top {
    transition: none;
  }
}
.p-hero {
  position: relative;
  min-height: 750px;
  background: #fff;
}
.p-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 470px);
  overflow: hidden;
}
.p-hero__visual::after {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.75) 3%, rgba(255, 255, 255, 0.28) 8%, transparent 14%);
  content: "";
  pointer-events: none;
}
.p-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}
.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 720px;
  padding-top: 127px;
  margin-left: 100px;
}
.p-hero__eyebrow {
  display: inline-block;
  margin-bottom: 39px;
  padding: 9px 16px;
  border-radius: 2px;
  color: #fff;
  background: #de0004;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-hero__title {
  color: #16191c;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.04em;
}
.p-hero__title > br {
  display: none;
}
.p-hero__title-line {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  --curtain-delay: 120ms;
}
.p-hero__title-line:nth-of-type(2) {
  --curtain-delay: 280ms;
}
.p-hero__title-line:nth-of-type(2) .p-hero__title-line-text {
  color: #de0004;
}
.p-hero__title-line::before, .p-hero__title-line::after {
  position: absolute;
  z-index: 2;
  inset: 0.08em 0;
  content: "";
  transform: scaleX(0);
  will-change: transform;
}
.p-hero__title-line::before {
  background: #de0004;
  animation: hero-curtain-red 820ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--curtain-delay) both;
}
.p-hero__title-line::after {
  z-index: 3;
  background: #16191c;
  animation: hero-curtain-black 900ms cubic-bezier(0.2, 0.7, 0.2, 1) calc(var(--curtain-delay) + 180ms) both;
}
.p-hero__title-line-text {
  position: relative;
  z-index: 1;
  display: block;
  opacity: 0;
  animation: hero-title-reveal 1ms linear calc(var(--curtain-delay) + 675ms) forwards;
}
.p-hero__text {
  margin-top: 28px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}

@keyframes hero-curtain-red {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  55% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}
@keyframes hero-curtain-black {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  55% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}
@keyframes hero-title-reveal {
  to {
    opacity: 1;
  }
}
@media (max-width: 1420px) {
  .p-hero__visual {
    width: 100%;
  }
  .p-hero__visual::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.38) 18%, rgba(255, 255, 255, 0.08) 34%, transparent 46%);
  }
  .p-hero__inner {
    width: min(100% - 80px, 720px);
    margin-left: 40px;
  }
  .p-hero__title {
    font-size: clamp(4.6rem, 5.3vw, 6rem);
  }
  .p-hero__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .p-hero__visual::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.4) 26%, transparent 48%);
  }
  .p-hero__visual img {
    object-position: 62% center;
  }
  .p-hero__inner {
    width: min(100% - 80px, 560px);
  }
  .p-hero__title {
    font-size: 4.8rem;
  }
  .p-hero__text {
    max-width: 520px;
    font-size: 1.6rem;
  }
  .p-hero__actions {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .p-hero {
    min-height: 650px;
    display: flex;
    align-items: flex-end;
  }
  .p-hero__visual {
    height: clamp(290px, 78vw, 325px);
    bottom: auto;
  }
  .p-hero__visual::after {
    display: block;
    background: linear-gradient(180deg, transparent 52%, rgba(255, 255, 255, 0.28) 78%, #fff 100%);
  }
  .p-hero__visual img {
    object-position: center;
  }
  .p-hero__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 260px 0 38px;
  }
  .p-hero__eyebrow {
    margin-bottom: 15px;
    padding: 8px 13px;
    font-size: 1.5rem;
    white-space: nowrap;
  }
  .p-hero__title {
    font-size: 3.2rem;
    line-height: 1.36;
  }
  .p-hero__title-line {
    display: block;
    white-space: nowrap;
  }
  .p-hero__text {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .p-hero__text br {
    display: none;
  }
  .p-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  .p-hero__actions .c-button {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    font-size: 1.3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__title-line::before, .p-hero__title-line::after {
    display: none;
    animation: none;
  }
  .p-hero__title-line-text {
    opacity: 1;
    animation: none;
  }
}
@media (max-width: 414px) {
  .p-hero {
    min-height: 630px;
  }
  .p-hero__visual {
    height: 305px;
  }
  .p-hero__inner {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding: 246px 0 34px;
  }
  .p-hero__eyebrow {
    font-size: 1.35rem;
  }
  .p-hero__title {
    font-size: 3.05rem;
  }
  .p-hero__text {
    font-size: 1.32rem;
  }
  .p-hero__actions .c-button {
    min-height: 48px;
    font-size: 1.25rem;
  }
}
@media (max-width: 390px) {
  .p-hero {
    min-height: 610px;
  }
  .p-hero__visual {
    height: 290px;
  }
  .p-hero__inner {
    padding-top: 234px;
  }
  .p-hero__eyebrow {
    font-size: 1.28rem;
  }
  .p-hero__title {
    font-size: 2.78rem;
  }
  .p-hero__text {
    font-size: 1.25rem;
  }
  .p-hero__actions {
    gap: 10px;
    margin-top: 17px;
  }
  .p-hero__actions .c-button {
    min-height: 46px;
    padding-block: 10px;
    font-size: 1.2rem;
  }
}
.p-about {
  position: relative;
  width: 1680px;
  height: 890px;
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
}
.p-about__copy {
  position: static;
}
.p-about .c-section-title {
  position: absolute;
  z-index: 4;
  top: 219px;
  left: 102px;
  width: 475px;
}
.p-about .c-section-title__line {
  width: 100%;
  height: 48px;
  margin-bottom: 10px;
}
.p-about .c-section-title__en {
  width: 246px;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 6.4rem;
  line-height: 0.75;
  letter-spacing: 0;
}
.p-about .c-section-title__line i {
  width: 69px;
}
.p-about .c-section-title__ja {
  width: 120px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.p-about .c-section-title__heading {
  font-size: 4.8rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.p-about__text {
  position: absolute;
  z-index: 4;
  top: 441px;
  left: 100px;
  display: grid;
  gap: 18px;
  width: 477px;
  height: 198px;
  margin: 0;
  font-size: 1.8rem;
  line-height: 26px;
  letter-spacing: 0;
}
.p-about__button {
  position: absolute;
  z-index: 5;
  top: 673px;
  left: 95px;
  width: 237px;
  height: 58px;
}
.p-about__button .c-button {
  width: 217px;
  min-width: 0;
  height: 58px;
  min-height: 0;
  padding: 11px 25px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}
.p-about__button > i {
  position: absolute;
  z-index: 3;
  top: 29px;
  right: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #16191c;
  pointer-events: none;
}
.p-about__photos {
  position: static;
}
.p-about__photo {
  position: absolute;
  width: 500px;
  height: 634px;
  overflow: hidden;
}
.p-about__photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0) 32%, rgba(8, 10, 12, 0.18) 54%, rgba(8, 10, 12, 0.82) 100%);
  content: "";
  pointer-events: none;
}
.p-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about__photo--first {
  top: 71px;
  left: 673px;
}
.p-about__photo--second {
  top: 144px;
  left: 1180px;
}
.p-about__caption {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  right: auto;
  color: #fff;
}
.p-about__photo--first .p-about__caption {
  top: 462px;
  left: 34px;
  width: 373px;
}
.p-about__photo--second .p-about__caption {
  top: 457px;
  left: 53px;
  width: 306px;
}
.p-about__caption span {
  color: #de0004;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}
.p-about__caption h3 {
  margin: 0;
  color: #de0004;
  font-size: 2.6rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.p-about__caption p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.p-about__badge {
  position: absolute;
  z-index: 3;
  top: 380px;
  left: 1103px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 146px;
  height: 146px;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #de0004;
  text-align: center;
}
.p-about__badge strong {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
}
.p-about__badge span {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 1679px) {
  .p-about {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 95px 40px;
    overflow: hidden;
  }
  .p-about .c-section-title {
    position: static;
    width: auto;
  }
  .p-about .c-section-title__line {
    width: auto;
    height: auto;
    margin-bottom: 22px;
  }
  .p-about .c-section-title__en {
    width: auto;
    line-height: 1;
  }
  .p-about .c-section-title__line i {
    width: 68px;
  }
  .p-about .c-section-title__ja {
    width: auto;
    font-size: 1.5rem;
  }
  .p-about .c-section-title__heading {
    white-space: normal;
  }
  .p-about__copy {
    position: relative;
    max-width: 700px;
    padding: 0 0 60px;
  }
  .p-about__text {
    position: static;
    width: auto;
    margin: 26px 0 32px;
    line-height: 1.5;
  }
  .p-about__button {
    position: relative;
    top: auto;
    left: auto;
    width: 237px;
  }
  .p-about__photos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    height: 620px;
  }
  .p-about__photo {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 620px;
  }
  .p-about__photo--first, .p-about__photo--second {
    top: auto;
    right: auto;
    left: auto;
  }
  .p-about__photo--first .p-about__caption, .p-about__photo--second .p-about__caption {
    top: auto;
    right: 32px;
    bottom: 38px;
    left: 32px;
    width: auto;
  }
  .p-about__badge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1200px) and (max-width: 1679px) {
  .p-about {
    display: grid;
    grid-template-columns: minmax(460px, 40%) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 2.5vw, 42px);
    padding: clamp(64px, 5vw, 80px) clamp(24px, 2.5vw, 40px);
  }
  .p-about__copy {
    display: flex;
    max-width: none;
    padding: 0;
    flex-direction: column;
    justify-content: center;
  }
  .p-about .c-section-title__line {
    margin-bottom: 18px;
  }
  .p-about .c-section-title__en {
    font-size: clamp(5.2rem, 3.7vw, 6rem);
  }
  .p-about .c-section-title__line i {
    width: clamp(44px, 4vw, 62px);
  }
  .p-about .c-section-title__heading {
    font-size: clamp(4rem, 2.9vw, 4.6rem);
  }
  .p-about__text {
    height: auto;
    margin: 24px 0 28px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .p-about__photos {
    height: clamp(540px, 38vw, 620px);
  }
  .p-about__photo {
    height: clamp(540px, 38vw, 620px);
  }
  .p-about__photo--first .p-about__caption, .p-about__photo--second .p-about__caption {
    right: 22px;
    bottom: 30px;
    left: 22px;
  }
  .p-about__caption {
    gap: 8px;
  }
  .p-about__caption span {
    font-size: 1.5rem;
  }
  .p-about__caption h3 {
    font-size: 2.3rem;
  }
  .p-about__caption p {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .p-about__badge {
    width: 126px;
    height: 126px;
    border-width: 5px;
  }
  .p-about__badge strong {
    font-size: 1.5rem;
  }
  .p-about__badge span {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .p-about {
    padding-inline: 40px;
  }
  .p-about__photos {
    gap: 16px;
    height: 570px;
  }
  .p-about__photo {
    width: 100%;
    height: 570px;
  }
  .p-about__photo--second {
    top: 0;
  }
  .p-about__photo--first .p-about__caption, .p-about__photo--second .p-about__caption {
    right: 20px;
    bottom: 28px;
    left: 20px;
    width: auto;
  }
  .p-about__caption span {
    font-size: 1.5rem;
  }
  .p-about__caption h3 {
    font-size: 2.2rem;
  }
  .p-about__caption p {
    font-size: 1.4rem;
  }
  .p-about__badge {
    top: 230px;
    left: calc(50% - 55px);
    width: 110px;
    height: 110px;
    border-width: 4px;
  }
  .p-about__badge strong {
    font-size: 1.3rem;
  }
  .p-about__badge span {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .p-about {
    padding: 75px 20px 80px;
  }
  .p-about .c-section-title__line {
    gap: 12px;
    margin-bottom: 16px;
  }
  .p-about .c-section-title__line i {
    width: 34px;
  }
  .p-about .c-section-title__en {
    font-size: 3.7rem;
  }
  .p-about .c-section-title__ja {
    font-size: 1.3rem;
  }
  .p-about .c-section-title__heading {
    font-size: 3rem;
    line-height: 1.45;
  }
  .p-about__copy {
    padding-bottom: 45px;
  }
  .p-about__text {
    margin-top: 25px;
    font-size: 1.45rem;
  }
  .p-about__button .c-button {
    font-size: 1.5rem;
  }
  .p-about__photos {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    height: auto;
  }
  .p-about__photo {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: clamp(350px, 95vw, 400px);
  }
  .p-about__photo--first {
    grid-row: 1;
  }
  .p-about__photo--second {
    grid-row: 3;
    margin-top: 0;
  }
  .p-about__photo--first .p-about__caption {
    top: auto;
    right: 20px;
    bottom: 72px;
    left: 25px;
    width: auto;
    max-width: calc(100% - 50px);
  }
  .p-about__photo--second .p-about__caption {
    top: auto;
    right: 20px;
    bottom: 28px;
    left: 25px;
    width: auto;
  }
  .p-about__caption h3 {
    font-size: 2.3rem;
  }
  .p-about__caption p {
    font-size: 1.35rem;
  }
  .p-about__badge {
    position: relative;
    top: auto;
    left: auto;
    grid-row: 2;
    justify-self: center;
    width: 110px;
    height: 110px;
    margin: -55px auto;
    border-width: 4px;
    transform: none;
  }
  .p-about__badge strong {
    font-size: 1.3rem;
  }
  .p-about__badge span {
    font-size: 1.5rem;
  }
}
@media (max-width: 390px) {
  .p-about {
    padding: 68px 16px 72px;
  }
  .p-about__photo {
    height: 350px;
  }
  .p-about__photo--first .p-about__caption {
    right: 16px;
    bottom: 68px;
    left: 18px;
    max-width: calc(100% - 36px);
  }
  .p-about__photo--second .p-about__caption {
    right: 16px;
    bottom: 22px;
    left: 18px;
  }
  .p-about__caption p {
    font-size: 1.25rem;
  }
  .p-about__badge {
    width: 102px;
    height: 102px;
    margin: -51px auto;
  }
}
.p-trouble {
  min-height: 737px;
  padding: 0;
  background: #fff;
}
.p-trouble .c-section-title {
  height: 111px;
}
.p-trouble__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.p-trouble__card {
  min-width: 0;
  min-height: 332px;
  padding: 15px 15px 23px;
  border: 1px solid #dfe2e4;
  border-radius: 5px;
  background: #fff;
}
.p-trouble__card img {
  width: 100%;
  height: 148px;
  border-radius: 4px;
  object-fit: cover;
}
.p-trouble__card h3 {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  margin-top: 14px;
  color: #16191c;
  font-size: 1.8rem;
  line-height: 1.5;
}
.p-trouble__card h3 span {
  display: grid;
  place-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  background: #de0004;
  font-size: 1.4rem;
}
.p-trouble__card p {
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 1.75;
}
.p-trouble__answer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 55px;
  color: #16191c;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-trouble__answer-text {
  white-space: nowrap;
}
.p-trouble__answer em {
  color: #de0004;
  font-size: 5rem;
  font-style: normal;
  line-height: 1;
}
.p-trouble__ornament {
  flex: 0 0 auto;
  width: 13px;
  height: 35px;
}

@media (max-width: 1100px) {
  .p-trouble__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .p-trouble {
    min-height: 0;
    padding: 75px 0 55px;
  }
  .p-trouble .c-section-title {
    height: auto;
  }
  .p-trouble .c-section-title__heading {
    font-size: 2.6rem;
    line-height: 1.45;
  }
  .p-trouble__title-line {
    display: block;
    white-space: nowrap;
  }
  .p-trouble__grid {
    display: flex;
    gap: 13px;
    margin-top: 36px;
    padding: 0 20px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .p-trouble__grid {
    scrollbar-width: none;
  }
  .p-trouble__grid::-webkit-scrollbar {
    display: none;
  }
  .p-trouble__card {
    flex: 0 0 min(330px, 100vw - 64px);
    min-height: 0;
    scroll-snap-align: center;
  }
  .p-trouble__card img {
    height: clamp(170px, 46vw, 190px);
  }
  .p-trouble__card h3 {
    font-size: 1.6rem;
  }
  .p-trouble__card p {
    font-size: 1.5rem;
  }
  .p-trouble__answer {
    gap: 12px;
    margin-top: 44px;
    padding-inline: 16px;
    font-size: 1.65rem;
    line-height: 1.45;
  }
  .p-trouble__answer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: normal;
  }
  .p-trouble__answer-text > span {
    display: block;
    white-space: nowrap;
  }
  .p-trouble__answer em {
    font-size: 2.35rem;
  }
  .p-trouble__ornament {
    width: 10px;
    height: auto;
  }
}
@media (max-width: 414px) {
  .p-trouble .c-section-title__heading {
    font-size: 2.42rem;
  }
  .p-trouble__grid {
    margin-top: 32px;
    padding-inline: 20px;
  }
  .p-trouble__card {
    flex-basis: calc(100vw - 56px);
  }
  .p-trouble__answer {
    margin-top: 40px;
    font-size: 1.6rem;
  }
  .p-trouble__answer em {
    font-size: 2.3rem;
  }
}
@media (max-width: 390px) {
  .p-trouble {
    padding-top: 68px;
  }
  .p-trouble .c-section-title__heading {
    font-size: 2.25rem;
  }
  .p-trouble__card {
    flex-basis: calc(100vw - 52px);
  }
  .p-trouble__card h3 {
    font-size: 1.5rem;
  }
  .p-trouble__card p {
    font-size: 1.4rem;
  }
  .p-trouble__answer {
    gap: 9px;
    padding-inline: 8px;
    font-size: 1.5rem;
  }
  .p-trouble__answer em {
    font-size: 2.15rem;
  }
  .p-trouble__ornament {
    width: 9px;
  }
}
.p-point {
  position: relative;
  width: 100%;
  height: 1445px;
  padding: 102px 0 0;
  background: #f6f7f8;
}
.p-point .l-container {
  position: relative;
  z-index: 1;
  width: 1480px;
  margin-right: auto;
  margin-left: auto;
}
.p-point .c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.p-point .c-section-title__kicker {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.p-point .c-section-title__kicker::before {
  display: none;
}
.p-point .c-section-title__heading {
  font-size: 4.6rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.p-point .c-section-title__heading em {
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  line-height: 1.5;
}
.p-point .c-section-title__tags {
  gap: 14px;
  margin-top: 0;
}
.p-point .c-section-title__tags span {
  display: grid;
  place-content: center;
  height: 42px;
  padding: 0;
  border: 1px solid #dfe2e4;
  border-radius: 46px;
  font-size: 1.8rem;
  line-height: 1;
}
.p-point .c-section-title__tags span:first-child {
  width: 238px;
}
.p-point .c-section-title__tags span:last-child {
  width: 166px;
}
.p-point__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  height: 464px;
  margin-top: 52px;
}
.p-point__card {
  display: flex;
  min-width: 0;
  height: 464px;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 28px;
  overflow: hidden;
  border: 1px solid #dfe2e4;
  border-radius: 6px;
  background: #fff;
}
.p-point__image {
  position: relative;
  height: 196px;
  flex: 0 0 196px;
  overflow: hidden;
}
.p-point__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-point__image span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  width: 62px;
  height: 40px;
  padding: 0;
  color: #fff;
  background: #de0004;
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.p-point__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}
.p-point__body h3 {
  min-height: 68px;
  color: #16191c;
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-align: center;
}
.p-point__body p {
  margin: 0;
  color: #2b3238;
  font-size: 1.8rem;
  line-height: 1.85;
  letter-spacing: -0.01em;
}
.p-point__consult {
  position: relative;
  width: 1228px;
  height: 498px;
  margin: 52px auto 0;
  padding: 45px 65px;
}
.p-point__consult-inner {
  position: relative;
  width: 1098px;
  height: 408px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.p-point__consult-copy {
  position: static;
  padding: 0;
}
.p-point__consult-label {
  position: absolute;
  top: 45px;
  left: 65px;
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  width: 349px;
  height: 42px;
  border-bottom: 1px solid #de0004;
  color: #de0004;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: -0.01em;
}
.p-point__consult-label img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.p-point__consult h3 {
  position: absolute;
  top: 108px;
  left: 65px;
  width: 623px;
  margin: 0;
  color: #1b1b1b;
  font-size: 4rem;
  line-height: 1.58;
  letter-spacing: -0.01em;
}
.p-point__consult h3 em {
  color: #de0004;
  font-style: normal;
}
.p-point__consult-copy > p:not(.p-point__consult-label) {
  position: absolute;
  top: 248px;
  left: 65px;
  width: 760px;
  margin: 0;
  color: #2f2f2f;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: -0.01em;
}
.p-point__consult .c-button {
  position: absolute;
  top: 301px;
  left: 65px;
  justify-content: center;
  gap: 16px;
  white-space: nowrap;
  width: 472px;
  height: 62px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-point__consult-mail {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
}
.p-point__consult-dots {
  position: absolute;
  width: 56px;
  height: 56px;
}
.p-point__consult-dots--red {
  top: 48px;
  left: 1001px;
}
.p-point__consult-dots--blue {
  top: 86px;
  left: 786px;
}
.p-point__consult-person {
  position: absolute;
  top: -61px;
  left: 720px;
  width: 363px;
  height: 469px;
  object-fit: cover;
}

@media (min-width: 1101px) and (max-width: 1519px) {
  .p-point {
    height: auto;
    padding-bottom: 100px;
  }
  .p-point .l-container {
    width: calc(100% - 80px);
  }
  .p-point__grid {
    height: auto;
    gap: 20px;
  }
  .p-point__card {
    height: auto;
    min-height: 500px;
  }
  .p-point__body {
    padding-inline: 18px;
  }
  .p-point__body h3 {
    font-size: 1.9rem;
  }
  .p-point__body p {
    font-size: 1.6rem;
  }
  .p-point__consult {
    width: min(100%, 1228px);
  }
  .p-point__consult-inner {
    width: 100%;
  }
  .p-point__consult h3 {
    width: calc(100% - 465px);
    font-size: 3.4rem;
  }
  .p-point__consult-copy > p:not(.p-point__consult-label) {
    width: calc(100% - 420px);
  }
  .p-point__consult-person {
    right: 15px;
    left: auto;
  }
  .p-point__consult-dots--red {
    right: 22px;
    left: auto;
  }
  .p-point__consult-dots--blue {
    right: 235px;
    left: auto;
  }
}
@media (max-width: 1100px) {
  .p-point {
    width: 100%;
    height: auto;
    padding-bottom: 88px;
  }
  .p-point .l-container {
    width: min(100% - clamp(20px, 5.95vw, 100px) * 2, 1480px);
    margin-inline: auto;
  }
  .p-point__grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .p-point__card {
    height: 464px;
  }
  .p-point__consult {
    width: 100%;
    height: 498px;
    padding: 45px;
  }
  .p-point__consult-inner {
    width: 100%;
  }
  .p-point__consult h3 {
    width: calc(100% - 360px);
    font-size: 3.2rem;
  }
  .p-point__consult-copy > p:not(.p-point__consult-label) {
    width: calc(100% - 390px);
  }
  .p-point__consult .c-button {
    width: min(400px, 100% - 390px);
  }
  .p-point__consult-person {
    top: -25px;
    right: 10px;
    left: auto;
    width: 315px;
    height: 433px;
    object-position: top center;
  }
  .p-point__consult-dots--red {
    right: 20px;
    left: auto;
  }
  .p-point__consult-dots--blue {
    right: 235px;
    left: auto;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .p-point__consult {
    height: auto;
    padding: 45px 0 0;
  }
  .p-point__consult-inner {
    min-height: 700px;
    height: auto;
    padding: 36px 42px 0;
    overflow: hidden;
  }
  .p-point__consult-label, .p-point__consult h3, .p-point__consult-copy > p:not(.p-point__consult-label), .p-point__consult .c-button {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .p-point__consult-label {
    max-width: 420px;
  }
  .p-point__consult h3 {
    margin-top: 18px;
    font-size: 3rem;
  }
  .p-point__consult-copy > p:not(.p-point__consult-label) {
    margin-top: 12px;
  }
  .p-point__consult .c-button {
    width: min(100%, 460px);
    margin-top: 18px;
  }
  .p-point__consult-person {
    position: relative;
    top: auto;
    right: auto;
    left: 50%;
    display: block;
    width: 300px;
    height: 387px;
    margin-top: 18px;
    transform: translateX(-50%);
  }
  .p-point__consult-dots--red {
    top: auto;
    right: 24px;
    bottom: 280px;
  }
  .p-point__consult-dots--blue {
    top: auto;
    bottom: 235px;
    left: 24px;
  }
}
@media (max-width: 767px) {
  .p-point {
    padding: 78px 0 72px;
  }
  .p-point .l-container {
    width: calc(100% - 40px);
  }
  .p-point .c-section-title {
    gap: 16px;
  }
  .p-point .c-section-title__kicker {
    font-size: 1.5rem;
  }
  .p-point .c-section-title__heading {
    font-size: 2.8rem;
  }
  .p-point .c-section-title__heading em {
    font-size: 4.4rem;
  }
  .p-point .c-section-title__tags {
    flex-wrap: wrap;
    gap: 8px;
  }
  .p-point .c-section-title__tags span {
    padding: 9px 14px;
    font-size: 1.35rem;
  }
  .p-point__grid {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 38px;
  }
  .p-point__card {
    display: grid;
    grid-template-columns: 42% 58%;
    height: auto;
    min-height: 230px;
    gap: 0;
    padding-bottom: 0;
  }
  .p-point__image {
    height: 100%;
    min-height: 230px;
  }
  .p-point__body {
    gap: 14px;
    padding: 20px 16px;
  }
  .p-point__body h3 {
    min-height: 0;
    font-size: 1.55rem;
    text-align: left;
  }
  .p-point__body p {
    font-size: 1.15rem;
  }
  .p-point__consult {
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 0;
  }
  .p-point__consult-inner {
    width: 100%;
    height: auto;
    min-height: 630px;
    padding: 28px 22px 0;
    overflow: hidden;
  }
  .p-point__consult-label {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    font-size: 1.5rem;
  }
  .p-point__consult-label img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .p-point__consult h3 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 18px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .p-point__consult-copy > p:not(.p-point__consult-label) {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .p-point__consult .c-button {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 58px;
    margin-top: 18px;
    font-size: 1.8rem;
  }
  .p-point__consult-mail {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .p-point__consult-person {
    position: relative;
    top: auto;
    right: auto;
    left: 50%;
    display: block;
    width: 254px;
    height: 328px;
    margin-top: 8px;
    transform: translateX(-50%);
  }
  .p-point__consult-dots--red {
    top: 320px;
    right: 16px;
    left: auto;
  }
  .p-point__consult-dots--blue {
    top: 350px;
    right: auto;
    left: 14px;
  }
}
.p-service {
  position: relative;
  height: 2216px;
  padding: 114px 0 0;
  overflow: hidden;
  background: #fff;
}
.p-service::before {
  position: absolute;
  top: -33px;
  right: 0;
  color: #f4f5f6;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 19rem;
  font-weight: 700;
  line-height: 1;
  content: "SERVICE";
}
.p-service__heading {
  position: relative;
  z-index: 1;
  height: 242px;
  margin-bottom: 0;
}
.p-service .c-section-title__line {
  gap: 14px;
  margin-bottom: 22px;
}
.p-service .c-section-title__line i {
  order: -1;
  width: 18px;
  height: 18px;
  background: #de0004;
}
.p-service .c-section-title__en {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.14em;
}
.p-service .c-section-title__ja {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-service .c-section-title__heading {
  font-size: 4.2rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.p-service__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 3fr);
  height: 620px;
}
.p-service__row--left {
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
}
.p-service__row--left .p-service__image {
  order: 2;
}
.p-service__row--left .p-service__body {
  order: 1;
}
.p-service__image {
  min-width: 0;
  overflow: hidden;
}
.p-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-service__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  padding: 120px 72px 0;
  background: #fff;
}
.p-service__number {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 35px;
  color: rgba(222, 0, 4, 0.1);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15rem;
  font-weight: 700;
  line-height: 1;
}
.p-service__row--left .p-service__number {
  right: auto;
  left: 20px;
}
.p-service__en {
  position: relative;
  color: #de0004;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
}
.p-service__en::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 12px;
  background: #de0004;
  content: "";
}
.p-service__body h3 {
  position: relative;
  margin: 20px 0 22px;
  color: #16191c;
  font-size: 3.2rem;
  line-height: 1.5;
}
.p-service__body > p:not(.p-service__en) {
  position: relative;
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 1.8rem;
  line-height: 2;
}
.p-service__button {
  position: relative;
  width: 237px;
  height: 58px;
}
.p-service__button .c-button {
  justify-content: flex-start;
  width: 217px;
  min-width: 0;
  height: 58px;
  min-height: 0;
  padding: 11px 25px;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}
.p-service__button > i {
  position: absolute;
  z-index: 3;
  top: 29px;
  right: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #16191c;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .p-service {
    height: auto;
  }
  .p-service__row {
    grid-template-columns: 50% 50%;
    min-height: 560px;
  }
  .p-service__body {
    padding: 82px 45px 60px;
  }
  .p-service__body > p:not(.p-service__en) {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-service {
    height: auto;
    padding-top: 78px;
  }
  .p-service::before {
    top: 20px;
    right: 0;
    font-size: 7rem;
  }
  .p-service__heading {
    height: auto;
    margin-bottom: 34px;
  }
  .p-service .c-section-title__line {
    gap: 10px;
    margin-bottom: 16px;
  }
  .p-service .c-section-title__line i {
    width: 14px;
    height: 14px;
  }
  .p-service .c-section-title__en {
    font-size: 1.6rem;
  }
  .p-service .c-section-title__ja {
    font-size: 1.3rem;
  }
  .p-service .c-section-title__heading {
    font-size: 2.45rem;
    line-height: 1.5;
  }
  .p-service__heading-line {
    display: block;
    white-space: nowrap;
  }
  .p-service .c-section-title__heading > br {
    display: none;
  }
  .p-service__row {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
  }
  .p-service__row--left .p-service__image, .p-service__row--left .p-service__body {
    order: initial;
  }
  .p-service__image {
    height: clamp(260px, 72vw, 300px);
  }
  .p-service__body {
    min-height: 0;
    padding: 50px 20px 60px;
  }
  .p-service__number {
    top: 30px;
    right: 18px;
    font-size: 9rem;
  }
  .p-service__row--left .p-service__number {
    right: 18px;
    left: auto;
  }
  .p-service__body h3 {
    margin: 14px 0 16px;
    font-size: 2.8rem;
  }
  .p-service__body > p:not(.p-service__en) {
    font-size: 1.4rem;
    line-height: 1.85;
  }
  .p-service__button .c-button {
    font-size: 1.6rem;
  }
}
@media (max-width: 414px) {
  .p-service {
    padding-top: 68px;
  }
  .p-service .c-section-title__heading {
    font-size: 2.28rem;
  }
  .p-service .c-section-title__en {
    font-size: 1.35rem;
  }
  .p-service .c-section-title__ja {
    font-size: 1.2rem;
  }
  .p-service__heading {
    margin-bottom: 28px;
  }
  .p-service__image {
    height: 280px;
  }
  .p-service__body {
    padding: 44px 18px 52px;
  }
  .p-service__body h3 {
    font-size: 2.55rem;
  }
}
@media (max-width: 390px) {
  .p-service {
    padding-top: 64px;
  }
  .p-service .c-section-title__heading {
    font-size: 2.12rem;
  }
  .p-service .c-section-title__en {
    font-size: 1.25rem;
  }
  .p-service .c-section-title__ja {
    font-size: 1.1rem;
  }
  .p-service__heading {
    margin-bottom: 26px;
  }
  .p-service__image {
    height: 260px;
  }
  .p-service__body {
    padding: 40px 16px 48px;
  }
  .p-service__body h3 {
    font-size: 2.4rem;
  }
}
.p-works {
  position: relative;
  height: auto;
  padding: 215px 0 112px;
  overflow: hidden;
  background: #fff;
}
.p-works > .l-container {
  width: min(100% - 200px, 1480px);
}
.p-works::before {
  position: absolute;
  top: 80px;
  left: -20px;
  color: #f3f4f5;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 23rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  content: "WORKS";
  transform: scaleX(0.92);
  transform-origin: left center;
}
.p-works__heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 55px;
}
.p-works__heading .c-section-title__line {
  gap: 13px;
  margin-bottom: 22px;
}
.p-works__heading .c-section-title__line::before {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: #de0004;
  content: "";
}
.p-works__heading .c-section-title__line i {
  display: none;
}
.p-works__heading .c-section-title__en {
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}
.p-works__heading .c-section-title__ja {
  font-size: 1.8rem;
  line-height: 1;
}
.p-works__heading .c-section-title__heading {
  font-size: 3.8rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.p-works__mobile-break {
  display: none;
}
.p-works__more {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}
.p-works__more > i {
  position: relative;
  z-index: 2;
  flex: 0 0 39px;
  width: 39px;
  height: 1px;
  margin-right: -15px;
  background: #16191c;
}
.p-works__more .c-button {
  width: 215px;
  min-width: 215px;
  min-height: 54px;
  padding: 13px 21px 13px 27px;
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}
.p-works__grid {
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 24px;
}
.p-works__featured, .p-works__item {
  position: relative;
  background: #fff;
  transition: box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works__featured {
  border: 0;
}
.p-works__featured > div:not(.p-works__photo) {
  border: 1px solid #dfe2e4;
  border-top: 0;
}
.p-works__item {
  border: 1px solid #dfe2e4;
}
.p-works__featured:hover, .p-works__item:hover {
  box-shadow: 0 12px 28px rgba(22, 25, 28, 0.1);
}
.p-works__featured > .p-works__photo {
  height: 490px;
}
.p-works__photo {
  position: relative;
  overflow: hidden;
}
.p-works__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-works__photo span {
  position: absolute;
  top: 20px;
  left: 20px;
}
.p-works__featured > div:not(.p-works__photo) {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 32px 32px;
}
.p-works__featured span, .p-works__item span {
  display: inline-block;
  padding: 7px 12px;
  color: #fff;
  background: #de0004;
  border-radius: 2px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.p-works__featured small, .p-works__item small {
  display: block;
  margin-top: 0;
  color: #de0004;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}
.p-works__featured h3 {
  margin: 0;
  color: #16191c;
  font-size: 2.4rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.p-works__featured p, .p-works__item p {
  font-size: 1.8rem;
  line-height: 2;
}
.p-works__meta {
  margin-top: 0;
  color: #3a424a;
  font-weight: 400;
  line-height: 1.6 !important;
}
.p-works__list {
  display: grid;
  gap: 24px;
}
.p-works__item {
  display: grid;
  grid-template-columns: 238px 1fr;
  height: 234px;
  min-height: 0;
  overflow: hidden;
}
.p-works__item > .p-works__photo {
  height: 100%;
}
.p-works__item .p-works__photo span {
  top: 14px;
  left: 14px;
}
.p-works__item > div:not(.p-works__photo) {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 58px 26px 28px;
}
.p-works__item small {
  margin-top: 0;
}
.p-works__item h3 {
  margin: 0;
  color: #16191c;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.p-works__item p {
  line-height: 1.95;
}
.p-works__item .p-works__meta {
  margin-top: 0;
}
.p-works__link-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 22px;
  height: 22px;
  background: #de0004;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform-origin: right bottom;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works__featured:hover .p-works__link-icon, .p-works__item:hover .p-works__link-icon {
  transform: scale(1.18);
}

@media (max-width: 1100px) {
  .p-works {
    padding-top: 150px;
    height: auto;
    padding-bottom: 100px;
  }
  .p-works::before {
    top: 60px;
    font-size: 16rem;
  }
  .p-works > .l-container {
    width: min(100% - 80px, 920px);
  }
  .p-works__heading {
    margin-bottom: 44px;
  }
  .p-works__grid {
    grid-template-columns: 1fr;
  }
  .p-works__featured {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .p-works__featured > .p-works__photo {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .p-works {
    height: auto;
    padding: 80px 0;
  }
  .p-works::before {
    top: 30px;
    left: -4px;
    font-size: 7rem;
  }
  .p-works > .l-container {
    width: calc(100% - 40px);
  }
  .p-works__heading {
    display: block;
    margin-bottom: 36px;
  }
  .p-works__heading .c-section-title__line {
    gap: 9px;
    margin-bottom: 14px;
  }
  .p-works__heading .c-section-title__line::before {
    flex-basis: 12px;
    width: 12px;
    height: 12px;
  }
  .p-works__heading .c-section-title__en, .p-works__heading .c-section-title__ja {
    font-size: 1.4rem;
  }
  .p-works__heading .c-section-title__heading {
    font-size: 2.65rem;
    line-height: 1.45;
  }
  .p-works__mobile-break {
    display: block;
  }
  .p-works__more {
    margin-top: 28px;
    margin-bottom: 0;
  }
  .p-works__more .c-button {
    width: 196px;
    min-width: 196px;
    min-height: 50px;
    padding-inline: 22px;
    font-size: 1.45rem;
  }
  .p-works__featured {
    display: block;
  }
  .p-works__featured > .p-works__photo {
    height: clamp(260px, 72vw, 300px);
  }
  .p-works__item {
    grid-template-columns: 38% 62%;
    height: auto;
    min-height: 180px;
  }
  .p-works__item > div:not(.p-works__photo) {
    gap: 9px;
    padding: 15px 40px 15px 15px;
  }
  .p-works__item h3 {
    font-size: 1.55rem;
  }
  .p-works__item small, .p-works__item span {
    font-size: 1.35rem;
  }
  .p-works__item p {
    display: none;
  }
  .p-works__link-icon {
    right: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
  }
  .p-works__featured:hover .p-works__link-icon, .p-works__item:hover .p-works__link-icon {
    transform: scale(1.18);
  }
}
@media (max-width: 414px) {
  .p-works {
    padding: 70px 0;
  }
  .p-works > .l-container {
    width: calc(100% - 32px);
  }
  .p-works__heading {
    margin-bottom: 32px;
  }
  .p-works__heading .c-section-title__heading {
    font-size: 2.58rem;
  }
  .p-works__more {
    margin-top: 26px;
  }
  .p-works__more .c-button {
    width: 190px;
    min-width: 190px;
    min-height: 50px;
    font-size: 1.4rem;
  }
  .p-works__featured > .p-works__photo {
    height: 280px;
  }
  .p-works__featured > div:not(.p-works__photo) {
    padding: 25px 24px 28px;
  }
  .p-works__featured h3 {
    font-size: 2.05rem;
  }
}
@media (max-width: 390px) {
  .p-works {
    padding: 66px 0;
  }
  .p-works__heading .c-section-title__heading {
    font-size: 2.48rem;
  }
  .p-works__more .c-button {
    width: 184px;
    min-width: 184px;
    min-height: 48px;
    font-size: 1.35rem;
  }
  .p-works__featured > .p-works__photo {
    height: 255px;
  }
  .p-works__featured > div:not(.p-works__photo) {
    padding: 22px 20px 25px;
  }
  .p-works__featured h3 {
    font-size: 1.9rem;
  }
}
.p-news {
  min-height: 457px;
  padding: 103px 0;
  background: #f4f5f6;
}
.p-news__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 68px;
}
.p-news__heading h2 {
  margin: 28px 0 23px;
  color: #16191c;
  font-size: 3.8rem;
}
.p-news__heading .c-button {
  min-height: 58px;
}
.p-news__list a {
  display: grid;
  grid-template-columns: 125px 115px 1fr;
  align-items: center;
  min-height: 83px;
  border-bottom: 1px solid #dfe2e4;
  font-size: 1.8rem;
  transition: color 0.2s;
}
.p-news__list a:first-child {
  border-top: 1px solid #dfe2e4;
}
.p-news__list a:hover {
  color: #de0004;
}
.p-news__list time {
  color: #6b7175;
  font-family: "Oswald", "Roboto", sans-serif;
}
.p-news__list span {
  justify-self: start;
  padding: 2px 8px;
  color: #de0004;
  background: #fff0f0;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-news__list strong {
  color: #16191c;
  font-size: 1.8rem;
}

@media (max-width: 1100px) {
  .p-news {
    padding: 84px 0;
  }
  .p-news__inner {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
  .p-news__list a {
    grid-template-columns: 110px 100px 1fr;
    font-size: 1.6rem;
  }
  .p-news__list span, .p-news__list strong {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .p-news__inner {
    display: block;
  }
  .p-news__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .p-news__heading .c-section-title__kicker {
    grid-column: 1/-1;
  }
  .p-news__heading h2 {
    margin-bottom: 0;
  }
  .p-news__list {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .p-news {
    min-height: 0;
    padding: 72px 0;
  }
  .p-news__inner {
    display: block;
  }
  .p-news__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 0 16px;
    margin-bottom: 30px;
  }
  .p-news__heading .c-section-title__kicker {
    grid-column: 1/-1;
  }
  .p-news__heading h2 {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 2.7rem;
  }
  .p-news__heading .c-more-button .c-button {
    width: 155px;
    min-width: 155px;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 1.4rem;
  }
  .p-news__list a {
    grid-template-columns: 96px 1fr;
    min-height: 0;
    padding: 18px 0;
    font-size: 1.5rem;
  }
  .p-news__list span, .p-news__list strong {
    font-size: 1.5rem;
  }
  .p-news__list strong {
    grid-column: 1/-1;
    margin-top: 3px;
  }
}
@media (max-width: 414px) {
  .p-news {
    padding: 64px 0;
  }
  .p-news__heading {
    gap: 0 10px;
    margin-bottom: 26px;
  }
  .p-news__heading h2 {
    font-size: 2.55rem;
  }
  .p-news__heading .c-more-button .c-button {
    width: 145px;
    min-width: 145px;
    min-height: 48px;
    padding-inline: 15px;
    font-size: 1.32rem;
  }
  .p-news__list a {
    grid-template-columns: 88px 1fr;
    padding: 16px 0;
  }
  .p-news__list span, .p-news__list strong {
    font-size: 1.4rem;
  }
}
@media (max-width: 390px) {
  .p-news {
    padding: 60px 0;
  }
  .p-news__heading h2 {
    font-size: 2.4rem;
  }
  .p-news__heading .c-more-button .c-button {
    width: 136px;
    min-width: 136px;
    min-height: 46px;
    padding-inline: 13px;
    font-size: 1.24rem;
  }
  .p-news__list a {
    grid-template-columns: 82px 1fr;
  }
  .p-news__list time, .p-news__list span, .p-news__list strong {
    font-size: 1.32rem;
  }
}
.p-company {
  display: grid;
  grid-template-columns: 42% 58%;
  height: 618px;
  background: #fff;
}
.p-company__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 100px;
}
.p-company__copy h2 {
  margin: 28px 0 28px;
  color: #16191c;
  font-size: 3.8rem;
}
.p-company__copy > p:not(.c-section-title__kicker) {
  max-width: 440px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  line-height: 2;
}
.p-company__copy .c-button {
  min-height: 58px;
}
.p-company__image {
  overflow: hidden;
}
.p-company__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .p-company {
    grid-template-columns: 48% 52%;
    height: auto;
    min-height: 560px;
  }
  .p-company__copy {
    padding: 60px 40px;
  }
  .p-company__copy h2 {
    font-size: 3.4rem;
  }
  .p-company__copy > p:not(.c-section-title__kicker) {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-company {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }
  .p-company__image {
    height: 320px;
  }
  .p-company__copy {
    padding: 55px 20px 68px;
  }
  .p-company__copy h2 {
    margin-block: 22px;
    font-size: 3rem;
  }
  .p-company__copy > p:not(.c-section-title__kicker) {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
.p-site-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  background: #171b1e;
}
.p-site-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(102deg, rgba(222, 0, 4, 0.92) 0 52%, rgba(23, 27, 30, 0.9) 52% 100%);
  content: "";
}
.p-site-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
}
.p-site-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(70px, 10vw, 170px);
  padding-block: 68px;
}
.p-site-cta__lead {
  display: flex;
  flex: 1 1 600px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.p-site-cta__label {
  margin-bottom: 20px;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.p-site-cta__lead h2 {
  margin: 0 0 18px;
  font-size: clamp(4rem, 4vw, 5.4rem);
  line-height: 1.3;
}
.p-site-cta__lead > p:not(.p-site-cta__label) {
  margin-bottom: 28px;
  font-size: 1.6rem;
}
.p-site-cta__lead .c-button {
  width: min(330px, 100%);
  min-height: 62px;
  justify-content: center;
  gap: 12px;
  border: 2px solid #fff;
  color: #de0004;
  background: #fff;
  font-size: 1.5rem;
}
.p-site-cta__lead .c-button:hover, .p-site-cta__lead .c-button:focus-visible {
  color: #fff;
}
.p-site-cta__mail-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 24px;
  height: 20px;
  background: currentColor;
  mask: url("../images/icon-mail.svg") center/contain no-repeat;
}
.p-site-cta__phone {
  display: flex;
  flex: 0 1 520px;
  flex-direction: column;
  align-items: center;
  min-width: 430px;
  margin: 0;
  text-align: center;
}
.p-site-cta__phone > p {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-site-cta__phone > a:first-of-type {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(4.6rem, 5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.25;
}
.p-site-cta__phone > a:first-of-type .dashicons {
  width: 48px;
  height: 48px;
  font-size: 48px;
  transform: scaleX(-1);
}
.p-site-cta__phone > span {
  font-size: 1.3rem;
  font-weight: 600;
}
.p-site-cta__mobile {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 18px;
  padding: 0;
  border: 0;
}
.p-site-cta__mobile small {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-site-cta__mobile strong {
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .p-site-cta__inner {
    width: min(100% - 80px, 1100px);
    gap: 55px;
  }
  .p-site-cta__lead {
    flex-basis: 530px;
  }
  .p-site-cta__phone {
    min-width: 390px;
  }
  .p-site-cta__phone > a:first-of-type {
    font-size: 4.8rem;
  }
}
@media (max-width: 767px) {
  .p-site-cta {
    padding: 70px 0;
  }
  .p-site-cta::before {
    background: rgba(23, 27, 30, 0.82);
  }
  .p-site-cta__inner {
    display: block;
    width: calc(100% - 40px);
  }
  .p-site-cta__lead {
    align-items: center;
    text-align: center;
  }
  .p-site-cta__label {
    margin-bottom: 14px;
  }
  .p-site-cta__lead h2 {
    font-size: 2.55rem;
    line-height: 1.45;
  }
  .p-site-cta__lead > p:not(.p-site-cta__label) {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: 1.4rem;
    line-height: 1.75;
    text-wrap: balance;
  }
  .p-site-cta__lead .c-button {
    width: min(100%, 330px);
    min-height: 60px;
    height: auto;
    padding: 14px 16px;
    font-size: 1.55rem;
  }
  .p-site-cta__lead .c-button__label {
    white-space: nowrap;
  }
  .p-site-cta__phone {
    width: 100%;
    min-width: 0;
    margin-top: 48px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    align-items: center;
    text-align: center;
  }
  .p-site-cta__phone > a:first-of-type {
    gap: 10px;
    font-size: 3.8rem;
    white-space: nowrap;
  }
  .p-site-cta__phone > a:first-of-type .dashicons {
    width: 36px;
    height: 36px;
    font-size: 36px;
  }
  .p-site-cta__mobile {
    gap: 12px;
  }
  .p-site-cta__mobile strong {
    font-size: 2.8rem;
  }
}
@media (max-width: 414px) {
  .p-site-cta {
    padding: 62px 0;
  }
  .p-site-cta__inner {
    width: calc(100% - 32px);
  }
  .p-site-cta__lead h2 {
    font-size: 2.38rem;
  }
  .p-site-cta__lead > p:not(.p-site-cta__label) {
    max-width: 310px;
    font-size: 1.3rem;
  }
  .p-site-cta__lead .c-button {
    width: min(100%, 320px);
    min-height: 58px;
    font-size: 1.4rem;
  }
  .p-site-cta__phone {
    margin-top: 40px;
    padding-top: 30px;
  }
  .p-site-cta__phone > a:first-of-type {
    font-size: 3.35rem;
  }
  .p-site-cta__phone > a:first-of-type .dashicons {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }
  .p-site-cta__mobile strong {
    font-size: 2.55rem;
  }
}
@media (max-width: 390px) {
  .p-site-cta {
    padding: 58px 0;
  }
  .p-site-cta__lead h2 {
    font-size: 2.22rem;
  }
  .p-site-cta__lead > p:not(.p-site-cta__label) {
    max-width: 290px;
    font-size: 1.22rem;
  }
  .p-site-cta__lead .c-button {
    width: min(100%, 310px);
    min-height: 56px;
    font-size: 1.32rem;
  }
  .p-site-cta__mail-icon {
    width: 22px;
    height: 18px;
  }
  .p-site-cta__phone > a:first-of-type {
    gap: 8px;
    font-size: 3.05rem;
  }
  .p-site-cta__phone > a:first-of-type .dashicons {
    width: 29px;
    height: 29px;
    font-size: 29px;
  }
  .p-site-cta__mobile {
    gap: 9px;
  }
  .p-site-cta__mobile strong {
    font-size: 2.35rem;
  }
}
.p-page {
  min-height: 0;
  padding: 0;
}

.p-entry-list {
  min-height: 55vh;
  padding-top: 100px;
  padding-bottom: 120px;
}
.p-entry-list h1 {
  margin-top: 22px;
  color: #16191c;
  font-size: clamp(3.4rem, 5vw, 6rem);
  line-height: 1.3;
}

.p-entry-list__header {
  padding-bottom: 55px;
  border-bottom: 1px solid #dfe2e4;
}

.p-entry-list__items {
  margin-top: 50px;
}

.p-entry-list__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 30px;
  padding: 30px 0;
  border-bottom: 1px solid #dfe2e4;
}

.p-entry-list__item time {
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
}

.p-entry-list__item h2 {
  color: #16191c;
  font-size: 2rem;
}

.p-entry-list__item p {
  grid-column: 2;
}

@media (max-width: 767px) {
  .p-entry-list {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .p-entry-list__item {
    grid-template-columns: 1fr;
  }
  .p-entry-list__item p {
    grid-column: 1;
  }
}
/* ----------------------------------------------------------
  Shared page shell
---------------------------------------------------------- */
.p-page {
  background: #fff;
}
.p-page__article, .p-page__content {
  width: 100%;
  max-width: none;
  margin: 0;
}
.p-page__content > * + * {
  margin-top: 0;
}
.p-page__content a {
  text-decoration: none;
}

.c-page-header {
  position: relative;
  overflow: hidden;
  padding: 92px clamp(20px, 5.95vw, 100px) 88px;
  background: linear-gradient(110deg, #fff 0 68%, #f4f5f6 68% 100%);
}
.c-page-header::after {
  position: absolute;
  right: -10px;
  bottom: -26px;
  color: rgba(22, 25, 28, 0.035);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(13rem, 19vw, 31rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  content: "ONKEN";
  pointer-events: none;
}
.c-page-header__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  margin-inline: auto;
}
.c-page-header__title {
  position: relative;
  margin-top: 28px;
  color: #16191c;
  font-size: clamp(4rem, 5vw, 6.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.c-page-header__title::before {
  display: block;
  margin-bottom: 22px;
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  content: "ONKEN SERVICE";
}
.c-page-header__lead {
  max-width: 940px;
  margin-top: 28px;
  font-size: clamp(1.5rem, 1.2vw, 1.8rem);
  font-weight: 600;
  line-height: 2;
}

.page-id-9 .c-page-header__title::before {
  content: "OUR COMPANY";
}
.page-id-9 .c-page-header::after {
  content: "COMPANY";
}

.page-id-10 .c-page-header__title::before {
  content: "ALL ELECTRIC";
}
.page-id-10 .c-page-header::after {
  content: "ELECTRIC";
}

.page-id-11 .c-page-header__title::before {
  content: "AIR CONDITIONER";
}
.page-id-11 .c-page-header::after {
  content: "AIRCON";
}

.page-id-12 .c-page-header__title::before {
  content: "WATER HEATER";
}
.page-id-12 .c-page-header::after {
  content: "HEATER";
}

.page-id-13 .c-page-header__title::before {
  content: "CASE STUDY";
}
.page-id-13 .c-page-header::after {
  content: "WORKS";
}

.page-id-14 .c-page-header__title::before {
  content: "NEWS";
}
.page-id-14 .c-page-header::after {
  content: "NEWS";
}

.page-id-15 .c-page-header__title::before {
  content: "CONTACT";
}
.page-id-15 .c-page-header::after {
  content: "CONTACT";
}

.page-id-135 .c-page-header__title::before,
.page-privacy-policy .c-page-header__title::before {
  content: "PRIVACY POLICY";
}
.page-id-135 .c-page-header::after,
.page-privacy-policy .c-page-header::after {
  content: "PRIVACY";
}

.page-thanks .c-page-header__title::before {
  content: "CONTACT";
}
.page-thanks .c-page-header::after {
  content: "THANKS";
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.c-breadcrumb__item, .c-breadcrumb__link, .c-breadcrumb__sep {
  color: #646a6e;
  font-size: 1.3rem;
}
.c-breadcrumb__link {
  transition: color 0.25s ease;
}
.c-breadcrumb__link:hover {
  color: #de0004;
}
.c-breadcrumb__item--current {
  color: #16191c;
  font-weight: 700;
}

.c-section-head {
  position: relative;
  display: block;
  padding-top: 31px;
  margin-bottom: 56px;
}
.c-section-head::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #de0004;
  content: "";
}
.c-section-head::after {
  position: absolute;
  top: 0;
  left: 22px;
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  content: "SECTION";
}
.c-section-head__title {
  color: #16191c;
  font-size: clamp(3rem, 3vw, 4.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.c-section-head__title::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 18px;
  background: #de0004;
  content: "";
}

.p-company__info .c-section-head::after {
  content: "COMPANY PROFILE";
}

.p-company__access .c-section-head::after {
  content: "ACCESS";
}

.c-bar-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.c-bar-heading__bar {
  flex: 0 0 auto;
  width: 7px;
  height: 46px;
  margin-top: 5px;
  background: #de0004;
}
.c-bar-heading__title {
  color: #16191c;
  font-size: clamp(2.7rem, 3.1vw, 4.4rem);
  font-weight: 700;
  line-height: 1.35;
}

.c-table {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border-top: 1px solid #cfd3d6;
}
.c-table dt,
.c-table dd {
  margin: 0;
  padding: 26px 30px;
  border-bottom: 1px solid #cfd3d6;
}
.c-table dt {
  color: #16191c;
  background: #eceeef;
  font-weight: 700;
}
.c-table dd {
  background: #fff;
}

/* ----------------------------------------------------------
  Company
---------------------------------------------------------- */
.p-company__greeting {
  position: relative;
  overflow: hidden;
  padding: 104px clamp(20px, 5.95vw, 100px) 120px;
  background: #fff;
}
.p-company__greeting-aside {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 720px);
  overflow: hidden;
  pointer-events: none;
}
.p-company__greeting-aside::after {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, #fff 0%, #fff 12%, rgba(255, 255, 255, 0.88) 28%, rgba(255, 255, 255, 0.45) 42%, transparent 58%);
  content: "";
}
.p-company__greeting-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.p-company__greeting-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin-inline: auto;
}
.p-company__greeting-inner > div:last-child {
  max-width: 560px;
  padding: 0 36px 0 0;
  background: linear-gradient(90deg, #fff 0%, #fff 78%, rgba(255, 255, 255, 0) 100%);
}
.p-company__greeting-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #de0004;
  font-weight: 700;
}
.p-company__greeting-label::before {
  width: 12px;
  height: 12px;
  background: currentColor;
  content: "";
}
.p-company__greeting-title {
  margin-top: 18px;
  color: #16191c;
  font-size: clamp(3.6rem, 3vw, 4.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.p-company__greeting-title::after {
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 22px;
  background: #de0004;
  content: "";
}
.p-company__greeting-body {
  width: 100%;
  margin-top: 48px;
  font-size: 1.55rem;
  line-height: 2;
}
.p-company__greeting-body p:first-child {
  padding: 2px 0 2px 22px;
  border-left: 4px solid #de0004;
  color: #16191c;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.85;
}
.p-company__greeting-body p + p {
  margin-top: 22px;
}
.p-company__greeting-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
  margin-top: 34px;
  color: #16191c;
  font-weight: 700;
  text-align: right;
}
.p-company__greeting-signature-company {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}
.p-company__greeting-signature-name {
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}

.p-company__note {
  display: none;
}

.p-company__info {
  padding: 110px clamp(20px, 5.95vw, 100px);
  background: #f4f5f6;
}
.p-company__info-inner {
  width: min(100%, 1160px);
  margin-inline: auto;
}

.p-company__access {
  padding: 110px clamp(20px, 5.95vw, 100px) 130px;
}
.p-company__access-inner {
  width: min(100%, 1320px);
  margin-inline: auto;
}
.p-company__access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}
.p-company__access-map {
  overflow: hidden;
  height: 390px;
  margin-top: 22px;
  background: #f4f5f6;
}
.p-company__access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-company__office-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-company__office-head::before {
  width: 40px;
  height: 3px;
  background: #de0004;
  content: "";
}
.p-company__office-name {
  color: #16191c;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-company__office-address {
  margin-top: 12px;
}

/* ----------------------------------------------------------
  Service detail pages
---------------------------------------------------------- */
.p-detail {
  padding: 0 clamp(20px, 5.95vw, 100px) 130px;
}
.p-detail__inner {
  width: min(100%, 1320px);
  margin-inline: auto;
}
.p-detail__gallery {
  position: relative;
  margin-top: 110px;
}
.p-detail__gallery::before {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 38%;
  height: 64%;
  background: #de0004;
  content: "";
}
.p-detail__gallery-img {
  position: relative;
  overflow: hidden;
  height: clamp(390px, 43vw, 620px);
}
.p-detail__gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-detail__section {
  margin-top: 120px;
}
.p-detail__section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}
.p-detail__section--split-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.p-detail__text {
  font-size: 1.7rem;
  line-height: 2;
}
.p-detail__image {
  position: relative;
  overflow: hidden;
  min-height: 390px;
}
.p-detail__image + .p-detail__image {
  margin-top: 24px;
}
.p-detail__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.p-detail__merit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 44px;
  background: #dfe2e4;
  counter-reset: merit;
}
.p-detail__merit-card {
  position: relative;
  min-height: 245px;
  padding: 54px 52px 46px;
  background: #fff;
  counter-increment: merit;
}
.p-detail__merit-card::before {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(222, 0, 4, 0.1);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  content: "0" counter(merit);
}
.p-detail__merit-title {
  position: relative;
  color: #16191c;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.55;
}
.p-detail__merit-title::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 18px;
  background: #de0004;
  content: "";
}
.p-detail__list + .p-detail__merit-title {
  margin-top: 52px;
}
.p-detail__merit-text {
  position: relative;
  margin-top: 22px;
  line-height: 1.9;
}
.p-detail__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.p-detail__list li {
  position: relative;
  padding: 13px 18px 13px 46px;
  color: #16191c;
  background: #f4f5f6;
  font-weight: 600;
}
.p-detail__list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #de0004;
  content: "";
}
.p-detail__list li::after {
  position: absolute;
  top: 20px;
  left: 23px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}
.p-detail__cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr) minmax(320px, 0.62fr);
  grid-template-rows: auto auto auto auto auto;
  column-gap: 16px;
  overflow: hidden;
  margin-top: 120px;
  padding: 68px clamp(38px, 5vw, 76px);
  color: #fff;
  background: #171b1e;
}
.p-detail__cta-box::after {
  position: absolute;
  right: -35px;
  bottom: -95px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 22rem;
  font-weight: 700;
  line-height: 1;
  content: "CONTACT";
}
.p-detail__cta-title {
  position: relative;
  z-index: 1;
  grid-column: 1/-1;
  grid-row: 1;
  max-width: none;
  margin-bottom: 34px;
  font-size: clamp(3.2rem, 2.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.4;
}
.p-detail__cta-box .p-detail__list {
  position: relative;
  z-index: 1;
  grid-column: 1/-1;
  grid-row: 2;
  max-width: none;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-detail__cta-box .p-detail__list li {
  min-height: 54px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(1) {
  grid-column: 1/-1;
  grid-row: 3;
  max-width: 820px;
  margin-top: 28px;
}
.p-detail__cta-tel {
  position: relative;
  z-index: 1;
  display: flex;
  grid-column: 1;
  grid-row: 4;
  align-items: center;
  min-height: 82px;
  margin: 40px 0 0;
  padding: 20px 26px 6px;
  border-top: 4px solid #de0004;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.075);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(4rem, 4vw, 5.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
.p-detail__cta-tel::before {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin-right: 16px;
  font-family: dashicons;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  content: "\f525";
  transform: scaleX(-1);
}
.p-detail__cta-tel-sub {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}
.p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(2) {
  grid-column: 1;
  grid-row: 5;
  margin: 0;
  padding: 0 26px 20px;
  background: rgba(255, 255, 255, 0.075);
}
.p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(3) {
  display: block;
  grid-column: 2;
  grid-row: 4/span 2;
  margin-top: 40px;
  padding: 38px 28px 24px;
  background: rgba(255, 255, 255, 0.075);
  font-size: 1.35rem;
}
.p-detail__cta-tel-sub a {
  color: #fff !important;
  font-weight: 700;
}
.p-detail__cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  grid-column: 3;
  grid-row: 4/span 2;
  margin-top: 40px;
}
.p-detail__cta-buttons .c-button {
  width: 100%;
  min-height: 128px;
  padding-inline: 24px;
  justify-content: flex-start;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
.p-detail__cta-button-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.55;
  text-align: left;
}
.p-detail__cta-button-copy span {
  display: block;
  white-space: nowrap;
}
.p-detail__cta-buttons .c-button::after {
  position: relative;
  z-index: 1;
  order: -1;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  font-family: dashicons;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  content: "\f466";
}
.p-detail__section--maker {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dfe2e4;
  background: #fff;
  box-shadow: 0 20px 60px rgba(22, 25, 28, 0.08);
}
.p-detail__section--maker .c-bar-heading--maker {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 7px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px 20px;
  margin: 0;
  padding: 64px 56px 22px;
  color: #fff;
  background: #171b1e;
}
.p-detail__section--maker .c-bar-heading--maker::before {
  grid-column: 2;
  grid-row: 1;
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  content: "AUTHORIZED PARTNERS";
}
.p-detail__section--maker .c-bar-heading__bar {
  grid-column: 1;
  grid-row: 1/3;
  width: 7px;
  height: 100%;
  margin: 0;
}
.p-detail__section--maker .c-bar-heading__title {
  grid-column: 2;
  grid-row: 2;
  color: #fff;
  font-size: clamp(3rem, 3vw, 4rem);
  line-height: 1.35;
}
.p-detail__section--maker > .p-detail__text {
  grid-column: 1;
  grid-row: 2/4;
  margin: 0;
  padding: 10px 56px 64px 83px;
  color: rgba(255, 255, 255, 0.78);
  background: #171b1e;
  font-size: 1.55rem;
  line-height: 2;
  word-break: auto-phrase;
}
.p-detail__maker-badges {
  display: block;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 48px 56px 20px;
  background: #fff;
}
.p-detail__maker-badge {
  width: 100%;
  border: 1px solid #dfe2e4;
  border-top: 4px solid #de0004;
  background: #fff;
}
.p-detail__maker-badge-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr);
  align-items: center;
  gap: 28px;
  min-height: 170px;
  padding: 26px 30px;
}
.p-detail__maker-logo {
  display: block;
  width: 100%;
  max-height: 92px;
  object-fit: contain;
}
.p-detail__maker-logo--elpal {
  max-height: 76px;
}
.p-detail__maker-badge-copy {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid #dfe2e4;
}
.p-detail__maker-badge-copy strong {
  color: #16191c;
  font-size: 1.65rem;
  line-height: 1.5;
  white-space: nowrap;
}
.p-detail__maker-badge-copy span {
  color: #646a6e;
  font-size: 1.25rem;
  line-height: 1.7;
}
.p-detail__maker-chips {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 56px 22px;
  background: #fff;
}
.p-detail__maker-chip {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  padding: 14px 18px 14px 42px;
  border: 1px solid #dfe2e4;
  background: #f4f5f6;
  color: #16191c;
  font-weight: 700;
  text-align: left;
}
.p-detail__maker-chip::before {
  position: absolute;
  left: 20px;
  width: 8px;
  height: 8px;
  background: #de0004;
  content: "";
}
.p-detail__maker-chip--main {
  border-color: rgba(222, 0, 4, 0.32);
  color: #de0004;
  background: rgba(222, 0, 4, 0.05);
}
.p-detail__maker-note {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  padding: 0 56px 48px;
  color: #646a6e;
  background: #fff;
  font-size: 1.35rem;
  line-height: 1.8;
}

/* ----------------------------------------------------------
  Works and news
---------------------------------------------------------- */
.p-works-page,
.p-news-list {
  padding: 110px clamp(20px, 5.95vw, 100px) 135px;
}
.p-works-page__inner,
.p-news-list__inner {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.p-works-page__filters {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  margin-bottom: 54px;
  border: 1px solid #dfe2e4;
  background: #fff;
  box-shadow: 0 14px 38px rgba(22, 25, 28, 0.07);
}
.p-works-page__filter-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  min-height: 86px;
  padding: 22px 30px 22px 34px;
  border-left: 6px solid #de0004;
  color: #fff;
  background: #171b1e;
}
.p-works-page__filter-heading span {
  color: #de0004;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}
.p-works-page__filter-heading strong {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
}
.p-works-page__filter-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
}
.p-works-page__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 86px;
  padding: 18px 22px;
  overflow: hidden;
  border-left: 1px solid #dfe2e4;
  color: #16191c;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works-page__filter::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #de0004;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works-page__filter:hover {
  color: #de0004;
  background: #fff7f7;
}
.p-works-page__filter:hover::after {
  transform: scaleX(1);
}
.p-works-page__filter:focus-visible {
  z-index: 1;
  outline: 3px solid rgba(222, 0, 4, 0.35);
  outline-offset: -3px;
}
.p-works-page__filter--current {
  color: #fff;
  background: #de0004;
}
.p-works-page__filter--current::after {
  background: #171b1e;
  transform: scaleX(1);
}
.p-works-page__filter--current:hover {
  color: #fff;
  background: #de0004;
}
.p-works-page__filter-name {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.p-works-page__filter-count {
  position: relative;
  z-index: 1;
  color: #a3a8ab;
  font-family: "Schibsted Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-works-page__filter--current .p-works-page__filter-count {
  color: rgba(255, 255, 255, 0.78);
}
.p-works-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.p-works-page__card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #dfe2e4;
  color: #1f262b;
  background: #fff;
  transition: box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works-page__card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: #de0004;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  transform-origin: right bottom;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works-page__card:hover {
  box-shadow: 0 18px 42px rgba(22, 25, 28, 0.12);
}
.p-works-page__card:hover::after {
  transform: scale(1.18);
}
.p-works-page__card:focus-visible {
  outline: 3px solid rgba(222, 0, 4, 0.45);
  outline-offset: 4px;
}
.p-works-page__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f4f5f6;
}
.p-works-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-works-page__card:hover .p-works-page__image img {
  transform: scale(1.035);
}
.p-works-page__placeholder {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 300px;
  color: #92979b;
  background: #f4f5f6;
  text-align: center;
}
.p-works-page__placeholder-en {
  color: rgba(22, 25, 28, 0.14);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-works-page__cat {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 14px;
  color: #fff;
  background: #de0004;
  font-size: 1.3rem;
  font-weight: 700;
}
.p-works-page__cat--muted {
  background: #777;
}
.p-works-page__body {
  padding: 30px 30px 36px;
}
.p-works-page__meta {
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.p-works-page__title {
  margin-top: 12px;
  color: #16191c;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-works-page__text {
  margin-top: 16px;
  line-height: 1.9;
}
.p-works-page__note {
  margin-top: 38px;
  color: #707579;
  text-align: center;
}
.p-works-page__empty {
  padding: 80px 20px;
  color: #707579;
  background: #f4f5f6;
  text-align: center;
}
.p-works-page__pagination {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}
.p-works-page__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #dfe2e4;
  color: #16191c;
  background: #fff;
  font-weight: 700;
}
.p-works-page__pagination .page-numbers.current, .p-works-page__pagination a.page-numbers:hover {
  border-color: #de0004;
  color: #fff;
  background: #de0004;
}

.p-news-list__items {
  border-top: 1px solid #dfe2e4;
}
.p-news-list__link {
  display: grid;
  grid-template-columns: 150px 110px 1fr 34px;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 24px 12px;
  border-bottom: 1px solid #dfe2e4;
  color: #16191c !important;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.p-news-list__link:hover {
  padding-left: 24px;
  color: #de0004 !important;
}
.p-news-list__date {
  color: #6e7478;
  font-family: "Oswald", "Roboto", sans-serif;
  font-weight: 700;
}
.p-news-list__cat {
  padding: 6px 12px;
  color: #de0004;
  background: #fff1f1;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}
.p-news-list__title {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-news-list__arrow {
  color: #de0004;
  font-size: 3rem;
  text-align: right;
}
.p-news-list__note {
  margin-top: 34px;
  color: #747a7e;
  text-align: center;
}
.p-news-list__empty {
  padding: 80px 20px;
  color: #707579;
  background: #f4f5f6;
  text-align: center;
}
.p-news-list__pagination {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}
.p-news-list__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #dfe2e4;
  color: #16191c;
  background: #fff;
  font-weight: 700;
}
.p-news-list__pagination .page-numbers.current, .p-news-list__pagination a.page-numbers:hover {
  border-color: #de0004;
  color: #fff;
  background: #de0004;
}

/* ----------------------------------------------------------
  Privacy policy
---------------------------------------------------------- */
.p-policy {
  padding: 96px clamp(20px, 5.95vw, 100px) 130px;
  background: #fff;
}
.p-policy__inner {
  width: min(100%, 900px);
  margin-inline: auto;
}
.p-policy__body {
  padding: 56px 64px 66px;
  border-top: 4px solid #de0004;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 25, 28, 0.08);
}
.p-policy__date {
  margin: 0;
  color: #646a6e;
  font-size: 1.35rem;
  font-weight: 700;
}
.p-policy__intro {
  margin-top: 28px;
  font-size: 1.6rem;
  line-height: 2.1;
}
.p-policy__section {
  margin-top: 48px;
}
.p-policy__section:first-of-type {
  margin-top: 0;
}
.p-policy__section h2 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe2e4;
  color: #16191c;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
}
.p-policy__section p {
  margin: 0;
  font-size: 1.55rem;
  line-height: 2.05;
}
.p-policy__section p + p {
  margin-top: 18px;
}
.p-policy__section ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}
.p-policy__section li {
  position: relative;
  margin-top: 10px;
  padding-left: 24px;
  font-size: 1.55rem;
  line-height: 1.95;
}
.p-policy__section li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #de0004;
  content: "";
}
.p-policy__contact {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid #dfe2e4;
  font-size: 1.5rem;
  line-height: 1.85;
}
.p-policy__contact dt, .p-policy__contact dd {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid #dfe2e4;
}
.p-policy__contact dt {
  color: #646a6e;
  background: #f4f5f6;
  font-weight: 700;
}
.p-policy__contact dd {
  color: #16191c;
}
.p-policy__contact a {
  color: #de0004;
  font-weight: 700;
}
.p-policy__contact a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------
  Thanks page
---------------------------------------------------------- */
.p-thanks {
  padding: 96px clamp(20px, 5.95vw, 100px) 130px;
  background: #fff;
}
.p-thanks__inner {
  width: min(100%, 760px);
  margin-inline: auto;
}
.p-thanks__body {
  padding: 56px 64px 66px;
  border-top: 4px solid #de0004;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 25, 28, 0.08);
  text-align: center;
}
.p-thanks__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: #fff;
  background: #de0004;
}
.p-thanks__icon .dashicons {
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 1;
}
.p-thanks__title {
  margin: 0;
  color: #16191c;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.45;
}
.p-thanks__lead {
  margin: 24px 0 0;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.9;
}
.p-thanks__text {
  margin: 18px 0 0;
  font-size: 1.55rem;
  line-height: 2.05;
  text-align: left;
}
.p-thanks__notes {
  margin: 28px 0 0;
  padding: 22px 24px;
  border: 1px solid #dfe2e4;
  background: #f4f5f6;
  list-style: none;
  text-align: left;
}
.p-thanks__notes li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-size: 1.45rem;
  line-height: 1.9;
}
.p-thanks__notes li + li {
  margin-top: 10px;
}
.p-thanks__notes li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #de0004;
  content: "";
}
.p-thanks__tel {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid #dfe2e4;
  text-align: center;
}
.p-thanks__tel > span {
  display: block;
  color: #646a6e;
  font-size: 1.35rem;
  font-weight: 700;
}
.p-thanks__tel > a {
  display: inline-block;
  margin-top: 10px;
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(3.2rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
}
.p-thanks__tel > small {
  display: block;
  margin-top: 8px;
  color: #646a6e;
  font-size: 1.3rem;
  font-weight: 600;
}
.p-thanks__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.p-thanks__actions .c-button {
  min-width: 240px;
  min-height: 58px;
}

/* ----------------------------------------------------------
  Contact page
---------------------------------------------------------- */
.page-id-15 .p-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: start;
  gap: 48px;
  min-height: 0;
  padding: 110px clamp(20px, 5.95vw, 100px) 135px;
  color: #1f262b;
  background: #f4f5f6;
  overflow: visible;
}
.page-id-15 .p-contact::before {
  display: none;
}
.page-id-15 .p-contact__inner {
  display: contents;
}
.page-id-15 .p-contact__form, .page-id-15 .p-contact__sidebar {
  position: relative;
  z-index: 1;
}
.page-id-15 .p-contact__form {
  padding: 52px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(22, 25, 28, 0.07);
}
.page-id-15 .p-contact__sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}
.page-id-15 .p-contact__info-box {
  position: relative;
  overflow: hidden;
  padding: 42px 40px;
  border: 1px solid #dfe2e4;
  color: #1f262b;
  background: #fff;
  box-shadow: 0 16px 44px rgba(22, 25, 28, 0.07);
  counter-reset: contact-office;
}
.page-id-15 .p-contact__info-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #de0004;
  content: "";
}
.page-id-15 .p-contact__info-box--dark {
  border-color: #171b1e;
  color: #fff;
  background: #171b1e;
  box-shadow: 0 20px 50px rgba(22, 25, 28, 0.16);
}
.page-id-15 .p-contact__info-box--dark::after {
  position: absolute;
  right: -8px;
  bottom: -24px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  content: "CALL";
}
.page-id-15 .p-contact__info-en {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.page-id-15 .p-contact__info-en::before {
  width: 9px;
  height: 9px;
  background: currentColor;
  content: "";
}
.page-id-15 .p-contact__info-label {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.page-id-15 .p-contact__info-tel {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  color: #fff !important;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(3.4rem, 3.5vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.page-id-15 .p-contact__info-tel::before {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: currentColor;
  content: "";
  mask: url("../images/icon-phone.svg") center/contain no-repeat;
}
.page-id-15 .p-contact__info-sub {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.3rem;
  line-height: 1.8;
}
.page-id-15 .p-contact__info-box--dark .page-id-15 .p-contact__info-sub + .page-id-15 .p-contact__info-sub {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.page-id-15 .p-contact__info-sub a {
  color: #fff !important;
  font-weight: 700;
}
.page-id-15 .p-contact__office {
  position: relative;
  margin-top: 18px;
  padding: 18px 18px 18px 66px;
  border-left: 3px solid #de0004;
  background: #f4f5f6;
  line-height: 1.8;
  counter-increment: contact-office;
}
.page-id-15 .p-contact__office:first-of-type {
  margin-top: 26px;
}
.page-id-15 .p-contact__office::before {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(222, 0, 4, 0.4);
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  content: "0" counter(contact-office);
}
.page-id-15 .p-contact__office span {
  display: block;
  margin-bottom: 5px;
  color: #de0004;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Generic contact-form styling, including shortcode output. */
.page-id-15 .p-contact__form :where(label) {
  display: block;
  color: #16191c;
  font-weight: 700;
}
.page-id-15 .p-contact__form :where(input[type=text], input[type=email], input[type=tel], input[type=url], select, textarea) {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid #cbd0d3;
  border-radius: 0;
  background: #fff;
  font: inherit;
}
.page-id-15 .p-contact__form :where(textarea) {
  min-height: 190px;
  resize: vertical;
}
.page-id-15 .p-contact__form :where(input[type=submit], button[type=submit]) {
  min-width: 260px;
  min-height: 60px;
  margin-top: 20px;
  border: 1px solid #de0004;
  color: #fff;
  background: #de0004;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.page-id-15 .p-contact__form :where(p + p, .form-row + .form-row) {
  margin-top: 24px;
}

/* ----------------------------------------------------------
  Shared lower CTA
---------------------------------------------------------- */
.p-page-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
  background: #171b1e;
}
.p-page-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-page-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(222, 0, 4, 0.93) 0 48%, rgba(23, 27, 30, 0.76) 72% 100%);
}
.p-page-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
  padding-block: 72px;
}
.p-page-cta__label {
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.p-page-cta__copy h2 {
  margin-top: 16px;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.35;
}
.p-page-cta__copy > p:not(.p-page-cta__label) {
  margin-top: 16px;
}
.p-page-cta__copy .c-button {
  margin-top: 28px;
  border-color: #fff;
  color: #de0004;
  background: #fff;
}
.p-page-cta__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 390px;
}
.p-page-cta__phone > span {
  font-weight: 700;
}
.p-page-cta__phone > a {
  color: #fff;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(4.2rem, 5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.25;
}
.p-page-cta__phone > small {
  font-size: 1.3rem;
}

@media (max-width: 1100px) {
  .c-page-header {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .p-company__greeting {
    padding-top: 78px;
    padding-bottom: 84px;
  }
  .p-company__greeting-aside {
    width: calc(100% - 520px);
  }
  .p-company__greeting-aside::after {
    background: linear-gradient(90deg, #fff 0%, #fff 14%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.4) 46%, transparent 62%);
  }
  .p-company__greeting-inner > div:last-child {
    max-width: 460px;
    padding: 0 28px 0 0;
    background: linear-gradient(90deg, #fff 0%, #fff 78%, rgba(255, 255, 255, 0) 100%);
  }
  .p-company__greeting-title {
    font-size: 3.7rem;
  }
  .p-company__info,
  .p-company__access,
  .p-works-page,
  .p-news-list {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .p-works-page__filters {
    grid-template-columns: 1fr;
  }
  .p-works-page__filter-heading {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 68px;
    padding: 17px 24px;
  }
  .p-works-page__filter-heading strong {
    font-size: 1.6rem;
  }
  .p-works-page__filter {
    min-height: 68px;
  }
  .p-works-page__filter-list > :first-child {
    border-left: 0;
  }
  .p-detail {
    padding-bottom: 100px;
  }
  .p-detail__gallery {
    margin-top: 90px;
  }
  .p-detail__section, .p-detail__cta-box {
    margin-top: 90px;
  }
  .p-detail__merit-card {
    padding-inline: 34px;
  }
  .p-detail__cta-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }
  .p-detail__cta-tel {
    grid-column: 1;
    grid-row: 4;
    padding-inline: 22px;
    font-size: 4.5rem;
  }
  .p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(2) {
    grid-column: 1;
    grid-row: 5;
    padding-inline: 22px;
  }
  .p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(3) {
    grid-column: 2;
    grid-row: 4/span 2;
  }
  .p-detail__cta-buttons {
    grid-column: 1/-1;
    grid-row: 6;
    margin-top: 16px;
  }
  .p-detail__cta-buttons .c-button {
    min-height: 68px;
  }
  .p-detail__section--maker {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }
  .p-detail__section--maker .c-bar-heading--maker {
    grid-column: 1;
    grid-row: 1;
    padding: 48px 38px 18px;
  }
  .p-detail__section--maker > .p-detail__text {
    grid-column: 1;
    grid-row: 2;
    padding: 4px 38px 48px 65px;
  }
  .p-detail__maker-badges {
    grid-column: 1;
    grid-row: 3;
    padding: 42px 38px 20px;
  }
  .p-detail__maker-chips {
    grid-column: 1;
    grid-row: 4;
    padding: 0 38px 20px;
  }
  .p-detail__maker-note {
    grid-column: 1;
    grid-row: 5;
    padding: 0 38px 42px;
  }
  .page-id-15 .p-contact {
    grid-template-columns: minmax(0, 1fr) 360px;
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .page-id-15 .p-contact__form {
    padding: 38px;
  }
  .p-page-cta__inner {
    gap: 35px;
  }
  .p-page-cta__phone {
    min-width: 340px;
  }
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 42px 20px 52px;
    background: #fff;
  }
  .c-page-header::after {
    right: -8px;
    bottom: -20px;
    font-size: 12rem;
  }
  .c-page-header__title {
    margin-top: 22px;
    font-size: 4rem;
  }
  .c-page-header__title::before {
    margin-bottom: 14px;
    font-size: 1.2rem;
  }
  .c-page-header__lead {
    margin-top: 22px;
    font-size: 1.45rem;
    line-height: 1.85;
  }
  .c-breadcrumb__item,
  .c-breadcrumb__link,
  .c-breadcrumb__sep {
    font-size: 1.2rem;
  }
  .c-section-head {
    padding-top: 27px;
    margin-bottom: 40px;
  }
  .c-section-head::before {
    top: 3px;
    width: 9px;
    height: 9px;
  }
  .c-section-head::after {
    left: 19px;
    font-size: 1.1rem;
  }
  .c-section-head__title {
    font-size: 2.8rem;
  }
  .c-section-head__title::after {
    width: 40px;
    height: 2px;
    margin-top: 14px;
  }
  .c-bar-heading {
    gap: 13px;
    margin-bottom: 22px;
  }
  .c-bar-heading__bar {
    width: 5px;
    height: 36px;
  }
  .c-bar-heading__title {
    font-size: 2.7rem;
  }
  .c-table {
    grid-template-columns: 1fr;
  }
  .c-table dt {
    padding: 16px 18px;
  }
  .c-table dd {
    padding: 17px 18px 24px;
  }
  .p-company__greeting {
    padding: 60px 20px 72px;
  }
  .p-company__greeting-aside {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + 40px);
    height: 280px;
    margin: 0 -20px 28px;
  }
  .p-company__greeting-aside::after {
    background: linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.35) 78%, #fff 100%);
  }
  .p-company__greeting-aside img {
    object-position: 65% center;
  }
  .p-company__greeting-inner > div:last-child {
    max-width: none;
    padding: 0;
    background: none;
  }
  .p-company__greeting-title {
    font-size: 3.1rem;
  }
  .p-company__greeting-title::after {
    margin-top: 18px;
  }
  .p-company__greeting-body {
    margin-top: 30px;
  }
  .p-company__greeting-body p:first-child {
    padding-left: 16px;
    font-size: 1.55rem;
  }
  .p-company__greeting-signature {
    align-items: flex-start;
    margin-top: 28px;
    text-align: left;
  }
  .p-company__info {
    padding: 72px 20px 80px;
  }
  .p-company__access {
    padding: 72px 20px 84px;
  }
  .p-company__access-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .p-company__access-map {
    height: 300px;
  }
  .p-detail {
    padding: 0 20px 84px;
  }
  .p-detail__gallery {
    margin-top: 66px;
  }
  .p-detail__gallery::before {
    top: -15px;
    right: -15px;
  }
  .p-detail__gallery-img {
    height: 320px;
  }
  .p-detail__section, .p-detail__cta-box {
    margin-top: 72px;
  }
  .p-detail__section--split, .p-detail__section--split-reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
  }
  .p-detail__section--split-reverse {
    flex-direction: column-reverse;
  }
  .p-detail__text {
    font-size: 1.55rem;
  }
  .p-detail__image {
    min-height: 280px;
  }
  .p-detail__merit-grid {
    grid-template-columns: 1fr;
  }
  .p-detail__merit-card {
    min-height: 0;
    padding: 40px 25px 34px;
  }
  .p-detail__merit-card::before {
    top: 14px;
    right: 18px;
    font-size: 5.4rem;
  }
  .p-detail__merit-title {
    padding-right: 55px;
    font-size: 1.9rem;
  }
  .p-detail__cta-box {
    display: block;
    margin-inline: -20px;
    padding: 52px 20px;
  }
  .p-detail__cta-box::after {
    font-size: 11rem;
  }
  .p-detail__cta-box .p-detail__list {
    grid-template-columns: 1fr;
  }
  .p-detail__cta-title {
    margin-bottom: 28px;
    font-size: 3.2rem;
  }
  .p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(1) {
    margin-top: 26px;
  }
  .p-detail__cta-tel {
    width: 100%;
    min-height: 84px;
    margin-top: 34px;
    padding: 22px 18px 8px;
    font-size: clamp(3.7rem, 12vw, 4.6rem);
  }
  .p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(2) {
    margin: 0;
    padding: 0 18px 18px;
  }
  .p-detail__cta-box > .p-detail__cta-tel-sub:nth-of-type(3) {
    display: block;
    margin-top: 14px;
    padding: 18px;
  }
  .p-detail__cta-buttons {
    display: block;
    margin-top: 14px;
  }
  .p-detail__cta-buttons .c-button {
    min-height: 64px;
    font-size: 1.45rem;
  }
  .p-detail__section--maker {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    margin-inline: -20px;
    border-inline: 0;
  }
  .p-detail__section--maker .c-bar-heading--maker {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 5px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 44px 20px 16px;
  }
  .p-detail__section--maker .c-bar-heading__bar {
    width: 5px;
  }
  .p-detail__section--maker .c-bar-heading__title {
    font-size: 2.8rem;
  }
  .p-detail__section--maker > .p-detail__text {
    grid-column: 1;
    grid-row: 2;
    padding: 2px 20px 38px 39px;
  }
  .p-detail__maker-badges {
    grid-column: 1;
    grid-row: 3;
    padding: 28px 20px 16px;
  }
  .p-detail__maker-badge-body {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }
  .p-detail__maker-logo {
    max-height: 82px;
  }
  .p-detail__maker-logo--elpal {
    max-height: 58px;
  }
  .p-detail__maker-badge-copy {
    min-height: 0;
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid #dfe2e4;
    border-left: 0;
  }
  .p-detail__maker-chips {
    grid-column: 1;
    grid-row: 4;
    grid-template-columns: 1fr;
    padding: 0 20px 16px;
  }
  .p-detail__maker-chip {
    min-width: 0;
    min-height: 56px;
  }
  .p-detail__maker-note {
    grid-column: 1;
    grid-row: 5;
    padding: 0 20px 32px;
  }
  .p-works-page,
  .p-news-list {
    padding: 72px 20px 84px;
  }
  .p-works-page__grid {
    grid-template-columns: 1fr;
  }
  .p-works-page__card::after {
    width: 18px;
    height: 18px;
  }
  .p-works-page__filters {
    margin-bottom: 32px;
    box-shadow: 0 10px 28px rgba(22, 25, 28, 0.06);
  }
  .p-works-page__filter-heading {
    min-height: 60px;
    padding: 14px 18px;
    border-left-width: 4px;
  }
  .p-works-page__filter-heading span {
    font-size: 1rem;
  }
  .p-works-page__filter-heading strong {
    font-size: 1.45rem;
  }
  .p-works-page__filter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-works-page__filter {
    min-height: 58px;
    padding: 13px 15px;
    font-size: 1.25rem;
  }
  .p-works-page__filter:nth-child(odd) {
    border-left: 0;
  }
  .p-works-page__filter:nth-child(n+3) {
    border-top: 1px solid #dfe2e4;
  }
  .p-works-page__filter-count {
    font-size: 1rem;
  }
  .p-works-page__placeholder {
    min-height: 240px;
  }
  .p-news-list__link {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding-block: 22px;
  }
  .p-news-list__date {
    grid-column: 1;
  }
  .p-news-list__cat {
    grid-column: 2;
    grid-row: 1;
  }
  .p-news-list__title {
    grid-column: 1/-1;
    font-size: 1.6rem;
  }
  .p-news-list__arrow {
    display: none;
  }
  .p-policy {
    padding: 64px 20px 84px;
  }
  .p-policy__body {
    padding: 38px 24px 44px;
  }
  .p-policy__intro {
    font-size: 1.5rem;
    line-height: 2;
  }
  .p-policy__section {
    margin-top: 38px;
  }
  .p-policy__section h2 {
    font-size: 1.9rem;
  }
  .p-policy__section p, .p-policy__section li {
    font-size: 1.45rem;
    line-height: 1.95;
  }
  .p-policy__contact {
    grid-template-columns: 1fr;
  }
  .p-policy__contact dt {
    padding: 14px 16px;
  }
  .p-policy__contact dd {
    padding: 14px 16px 18px;
  }
  .p-thanks {
    padding: 64px 20px 84px;
  }
  .p-thanks__body {
    padding: 38px 24px 44px;
  }
  .p-thanks__lead {
    font-size: 1.5rem;
  }
  .p-thanks__text, .p-thanks__notes li {
    font-size: 1.42rem;
    line-height: 1.95;
  }
  .p-thanks__notes {
    padding: 18px 20px;
  }
  .p-thanks__tel > a {
    font-size: 3.4rem;
  }
  .p-thanks__actions .c-button {
    width: 100%;
    max-width: 320px;
  }
  .page-id-15 .p-contact {
    display: block;
    padding: 70px 20px 84px;
  }
  .page-id-15 .p-contact__form {
    padding: 28px 20px;
  }
  .page-id-15 .p-contact__sidebar {
    position: static;
    margin-top: 24px;
  }
  .page-id-15 .p-contact__info-box {
    padding: 30px 24px;
  }
  .page-id-15 .p-contact__info-tel {
    font-size: 3.7rem;
  }
  .p-page-cta {
    min-height: 0;
  }
  .p-page-cta__overlay {
    background: rgba(222, 0, 4, 0.9);
  }
  .p-page-cta__inner {
    display: block;
    padding-block: 62px;
  }
  .p-page-cta__copy h2 {
    font-size: 3.2rem;
  }
  .p-page-cta__copy .c-button {
    width: 100%;
    justify-content: space-between;
  }
  .p-page-cta__phone {
    align-items: flex-start;
    min-width: 0;
    margin-top: 46px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }
  .p-page-cta__phone > a {
    font-size: 4.2rem;
  }
}
.p-entry-detail {
  padding: 96px 0 120px;
}
.p-entry-detail__inner {
  width: min(100% - 80px, 1180px);
  margin-inline: auto;
}
.p-entry-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-bottom: 34px;
  color: #646a6e;
  font-size: 1.35rem;
  font-weight: 700;
}
.p-entry-detail__cat {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 15px;
  color: #fff;
  background: #de0004;
}
.p-entry-detail__hero {
  overflow: hidden;
  margin-bottom: 56px;
  background: #f4f5f6;
  aspect-ratio: 16/8.5;
}
.p-entry-detail__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-entry-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.p-entry-detail__gallery--single {
  grid-template-columns: minmax(0, 460px);
}
.p-entry-detail__photo {
  overflow: hidden;
  margin: 0;
  background: #f4f5f6;
  aspect-ratio: 3/4;
}
.p-entry-detail__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.p-entry-detail__photo:hover img {
  transform: scale(1.025);
}
.p-entry-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
  align-items: start;
}
.p-entry-detail__body {
  min-width: 0;
}
.p-entry-detail__section-label {
  margin: 0 0 12px !important;
  color: #de0004;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.25rem !important;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.p-entry-detail__comment p:first-child {
  margin-top: 0;
}
.p-entry-detail__lead {
  margin-bottom: 34px;
  padding-left: 22px;
  border-left: 4px solid #de0004;
  color: #16191c;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.9;
}
.p-entry-detail__body h2 {
  margin: 54px 0 20px;
  color: #16191c;
  font-size: 2.8rem;
  line-height: 1.5;
}
.p-entry-detail__body p {
  margin-top: 22px;
  font-size: 1.6rem;
  line-height: 2.1;
}
.p-entry-detail__facts {
  display: grid;
  border-top: 3px solid #de0004;
  background: #f4f5f6;
}
.p-entry-detail__fact {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid #dfe2e4;
  font-size: 1.35rem;
  line-height: 1.7;
}
.p-entry-detail__fact dt {
  color: #6b7175;
  font-weight: 700;
}
.p-entry-detail__fact dd {
  color: #16191c;
  font-weight: 700;
}
.p-entry-detail__back {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.p-entry-detail__back .c-button {
  min-width: 250px;
}
.p-entry-detail--news .p-entry-detail__inner {
  width: min(100% - 80px, 900px);
}
.p-entry-detail--news .p-entry-detail__layout {
  display: block;
}
.p-entry-detail--news .p-entry-detail__body {
  padding: 56px 64px 66px;
  border-top: 4px solid #de0004;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 25, 28, 0.08);
}
.p-entry-detail--news .p-entry-detail__lead {
  margin-bottom: 38px;
}
.p-entry-detail--news .p-entry-detail__back, .p-entry-detail--works .p-entry-detail__back {
  align-items: center;
}
.p-entry-detail--news .p-entry-detail__back::before, .p-entry-detail--works .p-entry-detail__back::before {
  position: relative;
  z-index: 2;
  flex: 0 0 39px;
  width: 39px;
  height: 1px;
  margin-right: -15px;
  background: #16191c;
  content: "";
}
.p-entry-detail--news .p-entry-detail__back .c-button, .p-entry-detail--works .p-entry-detail__back .c-button {
  min-width: 215px;
  min-height: 54px;
  padding: 13px 21px 13px 27px;
}

@media (max-width: 1100px) {
  .p-entry-detail__layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 48px;
  }
  .p-entry-detail__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-entry-detail__gallery--single {
    grid-template-columns: minmax(0, 430px);
  }
}
@media (max-width: 767px) {
  .p-entry-detail {
    padding: 64px 0 82px;
  }
  .p-entry-detail__inner, .p-entry-detail--news .p-entry-detail__inner {
    width: calc(100% - 40px);
  }
  .p-entry-detail__meta {
    margin-bottom: 24px;
  }
  .p-entry-detail__hero {
    margin-bottom: 38px;
    aspect-ratio: 4/3;
  }
  .p-entry-detail__gallery, .p-entry-detail__gallery--single {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 42px;
  }
  .p-entry-detail__layout {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }
  .p-entry-detail__lead {
    margin-bottom: 28px;
    padding-left: 17px;
    font-size: 1.7rem;
    line-height: 1.85;
  }
  .p-entry-detail__body h2 {
    margin: 42px 0 16px;
    font-size: 2.3rem;
  }
  .p-entry-detail__body p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .p-entry-detail__facts {
    width: 100%;
  }
  .p-entry-detail__back {
    margin-top: 58px;
  }
  .p-entry-detail--news .p-entry-detail__body {
    padding: 38px 24px 44px;
  }
  .p-entry-detail--news .p-entry-detail__back .c-button, .p-entry-detail--works .p-entry-detail__back .c-button {
    min-width: 205px;
  }
}
/* ----------------------------------------------------------
  Scroll reveal
---------------------------------------------------------- */
html.has-scroll-reveal .js-scroll-reveal {
  opacity: 0;
  translate: 0 28px;
  scale: 0.992;
  transition: opacity 0.72s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms), translate 0.78s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms), scale 0.78s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale;
}

html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=left] {
  translate: -38px 0;
}

html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=right] {
  translate: 38px 0;
}

html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=fade] {
  translate: 0 0;
  scale: 1;
}

html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=zoom] {
  translate: 0 16px;
  scale: 0.965;
}

html.has-scroll-reveal .js-scroll-reveal.is-revealed {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  will-change: auto;
}

@media (max-width: 767px) {
  html.has-scroll-reveal .js-scroll-reveal,
  html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=left],
  html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=right] {
    translate: 0 20px;
  }
  html.has-scroll-reveal .js-scroll-reveal[data-reveal-direction=fade] {
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html.has-scroll-reveal .js-scroll-reveal {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    transition: none;
  }
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
