:root {
  --color-ink: #18262d;
  --color-muted: #5d6c73;
  --color-line: #d8e0e3;
  --color-bg: #f5f7f4;
  --color-panel: #ffffff;
  --color-primary: #20363f;
  --color-accent: #bf593f;
  --color-gold: #d68b33;
  --color-blue: #1d4a9e;
  --color-sub: #e6c771;
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Roboto Condensed", sans-serif;
  --font-number: "Roboto", sans-serif;
  --pc-scale: 1px;
  --header-height: calc(86 * var(--pc-scale));
}

@media (min-width: 760.02px) and (max-width: 1440px) {
  :root {
    --pc-scale: calc(100vw / 1440);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-base);
  font-size: calc(16 * var(--pc-scale));
  line-height: 1.8;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-wrapper {
  min-height: 100vh;
  overflow: clip;
}

/* Common page vertical lines */
.site-main {
  position: relative;
}

.site-main:not(.home):not(.page-beginner)::before,
.site-main:not(.home):not(.page-beginner)::after {
  position: absolute;
  z-index: 1;
  top: var(--common-page-line-top, 0);
  bottom: 0;
  display: block;
  width: 0;
  content: "";
  pointer-events: none;
  border-left: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.site-main:not(.home):not(.page-beginner)::before {
  left: calc(120 * var(--pc-scale));
}

.site-main:not(.home):not(.page-beginner)::after {
  right: calc(120 * var(--pc-scale));
}

.page-service,
.archive-works,
.page-news,
.page-company,
.page-contact {
  --common-page-line-top: calc(427 * var(--pc-scale));
}

@media (max-width: 760px) {
  .site-main:not(.home):not(.page-beginner)::before,
  .site-main:not(.home):not(.page-beginner)::after {
    display: none;
  }
}
/* End common page vertical lines */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: #fff;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled,
.is-drawer-open .site-header {
  background: #fff;
  box-shadow: 0 calc(12 * var(--pc-scale)) calc(30 * var(--pc-scale)) rgba(34, 34, 34, 0.08);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 calc(24 * var(--pc-scale));
  margin: 0 auto;
  gap: calc(24 * var(--pc-scale));
  background: #fff;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  width: calc(250 * var(--pc-scale));
  height: calc(28 * var(--pc-scale));
  min-width: calc(250 * var(--pc-scale));
}

.site-header__logo {
  width: calc(250 * var(--pc-scale));
  height: calc(28 * var(--pc-scale));
  object-fit: contain;
}

.site-footer__mark {
  display: grid;
  place-items: center;
  width: calc(44 * var(--pc-scale));
  aspect-ratio: 1;
  border-radius: calc(6 * var(--pc-scale));
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-en);
  font-size: calc(28 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: calc(18 * var(--pc-scale));
  margin-left: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: calc(18 * var(--pc-scale));
}

.site-header__nav a {
  color: #222;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-header__nav a:hover {
  color: var(--color-blue);
}

.site-header__contact,
.site-header__tel,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(38 * var(--pc-scale));
  border: calc(1 * var(--pc-scale)) solid transparent;
  border-radius: calc(74 * var(--pc-scale));
  font-family: var(--font-number);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header__tel {
  gap: calc(12 * var(--pc-scale));
  padding: 0 calc(24 * var(--pc-scale));
  color: #222;
  background: var(--color-sub);
  font-size: calc(18 * var(--pc-scale));
}

.site-header__tel-icon {
  width: calc(16 * var(--pc-scale));
  height: calc(16 * var(--pc-scale));
}

.site-header__contact {
  gap: calc(12 * var(--pc-scale));
  padding: 0 calc(45 * var(--pc-scale)) 0 calc(24 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
}

.site-header__contact-icon {
  width: calc(16 * var(--pc-scale));
  height: calc(10 * var(--pc-scale));
}

.button {
  min-height: calc(52 * var(--pc-scale));
  padding: 0 calc(24 * var(--pc-scale));
  border-radius: calc(6 * var(--pc-scale));
  font-family: var(--font-base);
  font-weight: 800;
  line-height: 1.2;
}

.button--primary {
  color: #fff;
  background: var(--color-accent);
  box-shadow: 0 calc(12 * var(--pc-scale)) calc(24 * var(--pc-scale)) rgba(191, 89, 63, 0.24);
}

.site-header__contact:hover,
.site-header__tel:hover,
.button:hover {
  transform: translateY(calc(-2 * var(--pc-scale)));
}

.button--ghost {
  color: var(--color-primary);
  border-color: rgba(32, 54, 63, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.button--light {
  color: var(--color-primary);
  background: #fff;
  box-shadow: 0 calc(14 * var(--pc-scale)) calc(28 * var(--pc-scale)) rgba(24, 38, 45, 0.18);
}

.site-header__mobile-actions {
  display: none;
}

.site-header__mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__toggle {
  display: none;
  place-items: center;
  width: calc(46 * var(--pc-scale));
  aspect-ratio: 1;
  padding: 0;
  border: calc(1 * var(--pc-scale)) solid rgba(34, 34, 34, 0.16);
  border-radius: calc(6 * var(--pc-scale));
  background: #fff;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(2 * var(--pc-scale));
  margin: calc(3 * var(--pc-scale)) 0;
  background: #222;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(calc(8 * var(--pc-scale))) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(calc(-8 * var(--pc-scale))) rotate(-45deg);
}

.drawer-menu {
  display: none;
}

html.is-drawer-open {
  overflow: hidden;
}

.site-main {
  padding: 0;
}

.site-main.home {
  position: relative;
  overflow: hidden;
}

.home-hero {
  position: relative;
  isolation: isolate;
  height: calc(816 * var(--pc-scale));
  overflow: hidden;
  color: #fff;
  background: #092654;
}

.home-hero__media,
.home-hero__blend,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.home-hero__blend {
  background: rgba(23, 84, 197, 0.8);
  mix-blend-mode: hard-light;
}

.home-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 77.847%);
}

.home-hero__inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding-top: calc(325 * var(--pc-scale));
  padding-left: calc(240 * var(--pc-scale));
  padding-right: calc(48 * var(--pc-scale));
}

.home-hero__content {
  width: min(100%, calc(767 * var(--pc-scale)));
}

.home-hero__title {
  display: grid;
  gap: 0;
  margin: 0;
  color: var(--color-sub);
  font-size: calc(160 * var(--pc-scale));
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  mix-blend-mode: screen;
  mix-blend-mode: plus-lighter;
}

.home-hero__title-row {
  display: inline-flex;
  align-items: center;
  gap: calc(45 * var(--pc-scale));
}

.home-hero__cross {
  width: calc(80 * var(--pc-scale));
  height: calc(80 * var(--pc-scale));
  object-fit: contain;
  transform: translateY(0.04em);
}

.home-hero__lead {
  margin: calc(24 * var(--pc-scale)) 0 0;
  color: #fff;
  font-size: calc(24 * var(--pc-scale));
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
  text-shadow: 0 calc(2 * var(--pc-scale)) calc(12 * var(--pc-scale)) rgba(0, 0, 0, 0.34);
}

.home-hero__vertical {
  position: absolute;
  left: calc(17 * var(--pc-scale));
  top: calc(126 * var(--pc-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(196 * var(--pc-scale));
  height: calc(618 * var(--pc-scale));
  pointer-events: none;
  mix-blend-mode: color-dodge;
}

.home-hero__vertical-text {
  margin: 0;
  color: rgba(230, 199, 113, 0.6);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(140 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.7;
  text-transform: uppercase;
  transform: rotate(90deg);
  white-space: nowrap;
}

.home-hero__vectors {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  pointer-events: none;
}

.home-hero__vector {
  position: absolute;
  display: block;
  mix-blend-mode: color-dodge;
}

.home-hero__vector--bottom {
  left: calc(122 * var(--pc-scale));
  top: calc(645 * var(--pc-scale));
  right: 0;
  height: 0;
  border-top: calc(1 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.home-hero__vector--estate {
  left: calc(220 * var(--pc-scale));
  top: calc(485 * var(--pc-scale));
  width: calc(519 * var(--pc-scale));
  height: 0;
  border-top: calc(1 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.home-hero__vector--demolition {
  left: calc(239 * var(--pc-scale));
  top: calc(325 * var(--pc-scale));
  width: calc(601 * var(--pc-scale));
  height: 0;
  border-top: calc(1 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.home-hero__vector--left {
  left: calc(240 * var(--pc-scale));
  top: calc(86 * var(--pc-scale));
  width: 0;
  height: calc(730 * var(--pc-scale));
  border-left: calc(1 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.home-hero__vector--right {
  left: calc(1007 * var(--pc-scale));
  top: calc(594 * var(--pc-scale));
  width: 0;
  height: calc(222 * var(--pc-scale));
  border-left: calc(1 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.home-hero__vector--center {
  left: calc(740 * var(--pc-scale));
  top: calc(275 * var(--pc-scale));
  width: 0;
  height: calc(369 * var(--pc-scale));
  border-left: calc(1 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}


.home-page-line {
  position: absolute;
  z-index: 1;
  bottom: 0;
  display: block;
  width: 0;
  pointer-events: none;
  border-left: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-page-line--left {
  top: calc(816 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
}

.home-page-line--right {
  top: calc(816 * var(--pc-scale));
  right: calc(120 * var(--pc-scale));
}

.home-beginner {
  position: relative;
  min-height: calc(509 * var(--pc-scale));
  padding-top: calc(100 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.home-beginner__canvas {
  position: relative;
  width: min(100%, calc(1440 * var(--pc-scale)));
  height: calc(409 * var(--pc-scale));
  margin: 0 auto;
}

.home-beginner__line {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  border-color: rgba(29, 74, 158, 0.4);
}

.home-beginner__line--horizontal {
  top: calc(24 * var(--pc-scale));
  left: 0;
  width: calc(1440 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-beginner__head {
  position: relative;
  z-index: 3;
  width: calc(402 * var(--pc-scale));
  margin-left: calc(120 * var(--pc-scale));
}

.home-beginner__label {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.home-beginner__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.4);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-beginner__row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: calc(40 * var(--pc-scale));
  width: calc(1270 * var(--pc-scale));
  margin-top: calc(-50 * var(--pc-scale));
}

.home-beginner__image {
  width: calc(750 * var(--pc-scale));
  height: calc(335 * var(--pc-scale));
  flex: 0 0 auto;
  overflow: hidden;
}

.home-beginner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-beginner__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: calc(30 * var(--pc-scale));
  align-items: flex-start;
  min-width: 0;
}

.home-beginner__copy {
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--pc-scale));
  width: 100%;
}

.home-beginner__heading {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(20 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.home-beginner__text {
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.home-beginner__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: calc(14 * var(--pc-scale));
  width: calc(220 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(54 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-beginner__button::before,
.home-beginner__button::after {
  position: absolute;
  content: "";
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.home-beginner__button::before {
  top: 0;
  left: 0;
  width: calc(200 * var(--pc-scale));
}

.home-beginner__button::after {
  right: 0;
  bottom: 0;
  width: calc(200 * var(--pc-scale));
}

.home-beginner__button-icon {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-beginner__button-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
  border-right: calc(2 * var(--pc-scale)) solid var(--color-blue);
  transform: translate(-65%, -50%) rotate(45deg);
}

.home-business {
  position: relative;
  min-height: calc(901 * var(--pc-scale));
  padding-top: calc(100 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.home-business__canvas {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--pc-scale));
  width: min(100%, calc(960 * var(--pc-scale)));
  min-height: calc(801 * var(--pc-scale));
  margin: 0 auto;
}

.home-business__line {
  position: absolute;
  z-index: 1;
  display: block;
  height: 0;
  pointer-events: none;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-business__line--right {
  top: calc(116 * var(--pc-scale));
  left: calc(50% - (720 * var(--pc-scale)) + (612 * var(--pc-scale)));
  width: calc(828 * var(--pc-scale));
}

.home-business__line--left {
  top: calc(141 * var(--pc-scale));
  left: calc(50% - (720 * var(--pc-scale)));
  width: calc(828 * var(--pc-scale));
}

.home-business__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 * var(--pc-scale));
  width: 100%;
  padding: 0 calc(64.5 * var(--pc-scale));
}

.home-business__title-wrap {
  display: grid;
  justify-items: center;
  width: calc(288 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
}

.home-business__en,
.home-business__label {
  grid-area: 1 / 1;
  width: 100%;
  text-align: center;
}

.home-business__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-business__label {
  z-index: 1;
  margin: calc(16 * var(--pc-scale)) 0 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.home-business__intro {
  width: calc(831 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.home-business__cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-height: calc(574 * var(--pc-scale));
}

.home-business__card {
  width: calc(479 * var(--pc-scale));
  min-height: calc(574 * var(--pc-scale));
  text-align: center;
}

.home-business__separator {
  display: block;
  width: 0;
  height: calc(266 * var(--pc-scale));
  flex: 0 0 auto;
  pointer-events: none;
  border-left: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-business__image {
  position: relative;
  width: calc(479 * var(--pc-scale));
  height: auto;
  aspect-ratio: 479 / 308;
  overflow: hidden;
  background: #d9d9d9;
}

.home-business__image img,
.home-business__image-overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-business__image img {
  object-fit: cover;
  object-position: top;
}

.home-business__image-overlay {
  background: rgba(23, 84, 197, 0.2);
}

.home-business__number {
  position: absolute;
  z-index: 2;
  top: 0;
  right: calc(20 * var(--pc-scale));
  color: rgba(29, 74, 158, 0.5);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.home-business__heading {
  margin: calc(15 * var(--pc-scale)) 0 0;
  color: var(--color-blue);
  font-size: calc(36 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.home-business__text {
  margin: calc(10 * var(--pc-scale)) auto 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.8;
  text-align: center;
}

.home-business__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  margin-top: calc(30 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(44 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-business__button--demolition {
  width: calc(172 * var(--pc-scale));
}

.home-business__button--estate {
  width: calc(188 * var(--pc-scale));
}

.home-business__button::before,
.home-business__button::after {
  position: absolute;
  content: "";
  height: 0;
  width: calc(100% - (20 * var(--pc-scale)));
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.home-business__button::before {
  top: 0;
  left: 0;
}

.home-business__button::after {
  right: 0;
  bottom: 0;
}

.home-business__button-icon {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-business__button-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
  border-right: calc(2 * var(--pc-scale)) solid var(--color-blue);
  transform: translate(-65%, -50%) rotate(45deg);
}


.home-projects {
  position: relative;
  z-index: 1;
  padding: calc(89 * var(--pc-scale)) 0 calc(80 * var(--pc-scale));
  overflow: hidden;
  background: #f6faff;
  color: #222;
}

.home-projects__canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(70 * var(--pc-scale));
  width: calc(1610 * var(--pc-scale));
  margin-left: calc(50% - (805 * var(--pc-scale)));
}

.home-projects__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--pc-scale));
  width: 100%;
}

.home-projects__heading {
  position: relative;
  width: calc(960 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-projects__heading::before,
.home-projects__heading::after {
  position: absolute;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-projects__heading::before {
  top: calc(16 * var(--pc-scale));
  left: calc(336 * var(--pc-scale));
  width: calc(624 * var(--pc-scale));
}

.home-projects__heading::after {
  top: calc(41 * var(--pc-scale));
  left: 0;
  width: calc(624 * var(--pc-scale));
}

.home-projects__title-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: calc(288 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  margin-left: calc(338 * var(--pc-scale));
}

.home-projects__en,
.home-projects__label {
  grid-area: 1 / 1;
  width: 100%;
  text-align: center;
}

.home-projects__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-projects__label {
  z-index: 1;
  margin: calc(16 * var(--pc-scale)) 0 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.home-projects__cards {
  width: calc(1440 * var(--pc-scale));
  min-height: calc(425 * var(--pc-scale));
  margin: 0 auto;
  overflow: visible;
}

.home-projects__cards-wrapper {
  display: flex;
  align-items: center;
}

.home-projects__cards:not(.swiper-initialized) .home-projects__cards-wrapper {
  gap: calc(15 * var(--pc-scale));
}

.home-projects__card {
  position: relative;
  display: flex;
  width: calc(310 * var(--pc-scale));
  min-height: calc(425 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
}

.home-projects__image {
  width: 100%;
  height: calc(192 * var(--pc-scale));
  overflow: hidden;
  background: #d9d9d9;
}

.home-projects__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-projects__body {
  display: flex;
  min-height: calc(233 * var(--pc-scale));
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  gap: calc(12 * var(--pc-scale));
  padding: calc(20 * var(--pc-scale));
  background: #fff;
}

.home-projects__card-title {
  width: calc(270 * var(--pc-scale));
  margin: 0;
  color: var(--color-blue);
  font-size: calc(22 * var(--pc-scale));
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: calc(3 * var(--pc-scale));
  white-space: normal;
}

.home-projects__area {
  margin: 0;
  color: #222;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.home-projects__text {
  width: calc(270 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.7;
  text-align: justify;
}

.home-projects__text span {
  color: #a8a8a8;
  text-decoration: underline;
}

.home-projects__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(76 * var(--pc-scale));
  width: calc(270 * var(--pc-scale));
  height: calc(42 * var(--pc-scale));
  margin-top: auto;
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(91 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.home-projects__detail-icon,
.home-projects__archive-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.home-projects__detail-icon {
  width: calc(18 * var(--pc-scale));
  height: calc(18 * var(--pc-scale));
}

.home-projects__archive-icon {
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
}

.home-projects__detail-icon::before,
.home-projects__archive-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border-top: calc(1.5 * var(--pc-scale)) solid currentColor;
  border-right: calc(1.5 * var(--pc-scale)) solid currentColor;
  transform: translate(-65%, -50%) rotate(45deg);
}

.home-projects__detail-icon::before {
  width: calc(6 * var(--pc-scale));
  height: calc(6 * var(--pc-scale));
}

.home-projects__archive-icon::before {
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
}

.home-projects__tag {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: calc(25 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-projects__archive {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * var(--pc-scale));
  width: calc(284 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(44 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-projects__archive::before,
.home-projects__archive::after {
  position: absolute;
  content: "";
  width: calc(264 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.home-projects__archive::before {
  top: 0;
  left: 0;
}

.home-projects__archive::after {
  right: 0;
  bottom: 0;
}


.home-faq {
  position: relative;
  padding: calc(100 * var(--pc-scale)) 0 calc(100 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.home-faq__canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(40 * var(--pc-scale));
  width: min(100%, calc(1200 * var(--pc-scale)));
  margin: 0 auto;
}

.home-faq__heading {
  position: relative;
  width: calc(1200 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-faq__heading::before,
.home-faq__heading::after {
  position: absolute;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-faq__heading::before {
  top: calc(16 * var(--pc-scale));
  left: calc(456 * var(--pc-scale));
  width: calc(744 * var(--pc-scale));
}

.home-faq__heading::after {
  top: calc(41 * var(--pc-scale));
  left: 0;
  width: calc(744 * var(--pc-scale));
}

.home-faq__title-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: calc(168 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  margin-left: calc(516 * var(--pc-scale));
}

.home-faq__en,
.home-faq__label {
  grid-area: 1 / 1;
  width: 100%;
  text-align: center;
}

.home-faq__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.home-faq__label {
  z-index: 1;
  margin: calc(16 * var(--pc-scale)) 0 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.home-faq__list {
  width: calc(960 * var(--pc-scale));
}

.home-faq__item {
  border-bottom: calc(1 * var(--pc-scale)) solid #a8a8a8;
}

.home-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(84 * var(--pc-scale));
  gap: calc(24 * var(--pc-scale));
  padding: calc(24 * var(--pc-scale)) calc(30 * var(--pc-scale)) calc(24 * var(--pc-scale)) calc(20 * var(--pc-scale));
  list-style: none;
  cursor: pointer;
}

.home-faq__item[open] .home-faq__question {
  background: #f6faff;
}

.home-faq__question::-webkit-details-marker {
  display: none;
}

.home-faq__question::marker {
  content: "";
}

.home-faq__question-main {
  display: flex;
  align-items: center;
  gap: calc(15 * var(--pc-scale));
  min-width: 0;
}

.home-faq__badge {
  display: grid;
  place-items: center;
  min-width: calc(35 * var(--pc-scale));
  height: calc(36 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale));
  border-radius: calc(5 * var(--pc-scale));
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(36 * var(--pc-scale));
  font-weight: 500;
  line-height: 1;
}

.home-faq__badge--question {
  color: #fff;
  background: var(--color-blue);
  border: calc(1 * var(--pc-scale)) solid var(--color-blue);
}

.home-faq__badge--answer {
  min-width: calc(34 * var(--pc-scale));
  color: var(--color-blue);
  background: #dbe8ff;
}

.home-faq__question-text {
  color: #222;
  font-size: calc(18 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

.home-faq__toggle {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
  color: var(--color-blue);
}

.home-faq__toggle::before,
.home-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.home-faq__toggle::before {
  width: calc(18 * var(--pc-scale));
  height: calc(2 * var(--pc-scale));
}

.home-faq__toggle::after {
  width: calc(2 * var(--pc-scale));
  height: calc(18 * var(--pc-scale));
}

.home-faq__item[open] .home-faq__toggle {
  color: #555;
}

.home-faq__item[open] .home-faq__toggle::after {
  opacity: 0;
}

.home-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: calc(19 * var(--pc-scale));
  min-height: calc(123 * var(--pc-scale));
  padding: calc(12 * var(--pc-scale)) calc(158 * var(--pc-scale)) calc(24 * var(--pc-scale)) calc(20 * var(--pc-scale));
}

.home-faq__answer-text {
  width: calc(776 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.home-links {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.home-links__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - calc(48 * var(--pc-scale)), calc(1120 * var(--pc-scale)));
  margin: 0 auto;
  background: #fff;
  border-radius: calc(8 * var(--pc-scale));
  box-shadow: 0 calc(24 * var(--pc-scale)) calc(50 * var(--pc-scale)) rgba(24, 38, 45, 0.14);
  overflow: hidden;
}

.home-links__card {
  display: grid;
  gap: calc(8 * var(--pc-scale));
  min-height: calc(150 * var(--pc-scale));
  padding: calc(30 * var(--pc-scale));
  border-right: calc(1 * var(--pc-scale)) solid var(--color-line);
  transition: background-color 0.2s ease;
}

.home-links__card:last-child {
  border-right: 0;
}

.home-links__card:hover {
  background: #f7faf8;
}

.home-links__card span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-weight: 700;
}

.home-links__card strong {
  font-size: calc(22 * var(--pc-scale));
  line-height: 1.35;
}

.home-links__card em {
  color: var(--color-muted);
  font-style: normal;
  font-weight: 600;
}

.section {
  padding: calc(110 * var(--pc-scale)) 0;
}

.section__inner {
  width: min(100% - calc(48 * var(--pc-scale)), calc(1120 * var(--pc-scale)));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: calc(14 * var(--pc-scale));
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(calc(30 * var(--pc-scale)), 4vw, calc(48 * var(--pc-scale)));
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
}

.home-about {
  position: relative;
  min-height: calc(496 * var(--pc-scale));
  padding-top: calc(100 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.home-about__line {
  position: absolute;
  z-index: 1;
  top: calc(124 * var(--pc-scale));
  left: calc(50% - (719.5 * var(--pc-scale)));
  display: block;
  width: calc(1439 * var(--pc-scale));
  height: 0;
  pointer-events: none;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-about__canvas {
  position: relative;
  z-index: 2;
  width: min(100%, calc(1440 * var(--pc-scale)));
  min-height: calc(496 * var(--pc-scale));
  margin: 0 auto;
}

.home-about__heading {
  position: relative;
  z-index: 3;
  display: grid;
  width: calc(285 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  margin-left: calc(120 * var(--pc-scale));
}

.home-about__label,
.home-about__en {
  grid-area: 1 / 1;
}

.home-about__label {
  z-index: 2;
  margin: 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.home-about__en {
  margin: calc(22 * var(--pc-scale)) 0 0;
  color: rgba(29, 74, 158, 0.4);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-about__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: calc(40 * var(--pc-scale));
  width: calc(1270 * var(--pc-scale));
  margin-top: calc(-27 * var(--pc-scale));
}

.home-about__image {
  width: calc(750 * var(--pc-scale));
  height: calc(423 * var(--pc-scale));
  flex: 0 0 auto;
  overflow: hidden;
  background: #d9d9d9;
}

.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about__body {
  display: flex;
  width: calc(480 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(30 * var(--pc-scale));
  padding: calc(20 * var(--pc-scale)) 0;
}

.home-about__copy {
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--pc-scale));
  width: 100%;
}

.home-about__title {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(20 * var(--pc-scale));
  font-weight: 700;
  line-height: 1.6;
}

.home-about__text {
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.home-about__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * var(--pc-scale));
  width: calc(172 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(44 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-about__button::before,
.home-about__button::after {
  position: absolute;
  content: "";
  width: calc(152 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.home-about__button::before {
  top: 0;
  left: 0;
}

.home-about__button::after {
  right: 0;
  bottom: 0;
}

.home-about__button-icon {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-about__button-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
  border-right: calc(2 * var(--pc-scale)) solid var(--color-blue);
  transform: translate(-65%, -50%) rotate(45deg);
}

.home-service {
  background: #fff;
}

.home-service__grid,
.home-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24 * var(--pc-scale));
  margin-top: calc(48 * var(--pc-scale));
}

.service-card {
  display: grid;
  gap: calc(18 * var(--pc-scale));
  min-height: calc(280 * var(--pc-scale));
  padding: calc(34 * var(--pc-scale));
  background: #f5f7f4;
  border: calc(1 * var(--pc-scale)) solid rgba(32, 54, 63, 0.1);
  border-radius: calc(8 * var(--pc-scale));
}

.service-card__title,
.works-card__title {
  margin: 0;
  font-size: calc(23 * var(--pc-scale));
  line-height: 1.45;
}

.service-card__text,
.works-card__text,
.home-works__note,
.home-cta__text {
  margin: 0;
  color: var(--color-muted);
}

.home-works {
  background: #edf2ef;
}

.home-works__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: calc(32 * var(--pc-scale));
}

.home-works__note {
  max-width: calc(420 * var(--pc-scale));
  font-weight: 600;
}

.works-card {
  background: #fff;
  border-radius: calc(8 * var(--pc-scale));
  overflow: hidden;
  box-shadow: 0 calc(18 * var(--pc-scale)) calc(36 * var(--pc-scale)) rgba(24, 38, 45, 0.08);
}

.works-card__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(190 * var(--pc-scale));
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
}

.works-card__compare span {
  display: grid;
  place-items: end start;
  padding: calc(20 * var(--pc-scale));
  background: linear-gradient(135deg, #66767c, #273e47);
}

.works-card__compare span + span {
  background: linear-gradient(135deg, #d68b33, #bf593f);
}

.works-card__body {
  display: grid;
  gap: calc(10 * var(--pc-scale));
  padding: calc(26 * var(--pc-scale));
}

.works-card__area {
  width: fit-content;
  margin: 0;
  padding: calc(4 * var(--pc-scale)) calc(10 * var(--pc-scale));
  color: var(--color-accent);
  background: #f8eee9;
  border-radius: calc(999 * var(--pc-scale));
  font-size: calc(13 * var(--pc-scale));
  font-weight: 800;
}

.section__button {
  display: flex;
  justify-content: center;
  margin-top: calc(46 * var(--pc-scale));
}

.home-news {
  position: relative;
  z-index: 1;
  padding: calc(64 * var(--pc-scale)) 0 calc(80 * var(--pc-scale));
  overflow: hidden;
  background: #f6faff;
  color: #222;
}

.home-news__canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(70 * var(--pc-scale));
  width: calc(964 * var(--pc-scale));
  margin: 0 auto;
}

.home-news__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(20 * var(--pc-scale));
  width: 100%;
}

.home-news__heading {
  position: relative;
  width: calc(964 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-news__heading::before,
.home-news__heading::after {
  position: absolute;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.home-news__heading::before {
  top: calc(16 * var(--pc-scale));
  left: calc(400 * var(--pc-scale));
  width: calc(564 * var(--pc-scale));
}

.home-news__heading::after {
  top: calc(41 * var(--pc-scale));
  left: 0;
  width: calc(564 * var(--pc-scale));
}

.home-news__title-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: calc(164 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  margin-left: calc(400 * var(--pc-scale));
}

.home-news__en,
.home-news__label {
  grid-area: 1 / 1;
  width: 100%;
  text-align: center;
}

.home-news__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-news__label {
  z-index: 1;
  margin: calc(16 * var(--pc-scale)) 0 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.home-news__list {
  display: flex;
  width: calc(964 * var(--pc-scale));
  flex-direction: column;
  align-items: flex-start;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
}

.home-news__row {
  display: flex;
  align-items: center;
  gap: calc(36 * var(--pc-scale));
  width: 100%;
  min-height: calc(88 * var(--pc-scale));
  padding: calc(30 * var(--pc-scale)) calc(314 * var(--pc-scale)) calc(30 * var(--pc-scale)) calc(20 * var(--pc-scale));
  border-bottom: calc(1 * var(--pc-scale)) solid #a8a8a8;
  white-space: nowrap;
}

.home-news__date {
  color: #a8a8a8;
  font-family: var(--font-number);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
}

.home-news__title {
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
}

.home-news__archive {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * var(--pc-scale));
  width: calc(204 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(44 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-news__archive::before,
.home-news__archive::after {
  position: absolute;
  content: "";
  width: calc(184 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.home-news__archive::before {
  top: 0;
  left: 0;
}

.home-news__archive::after {
  right: 0;
  bottom: 0;
}

.home-news__archive-icon {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
}

.home-news__archive-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
  border-right: calc(2 * var(--pc-scale)) solid var(--color-blue);
  transform: translate(-65%, -50%) rotate(45deg);
}

.home-contact {
  position: relative;
  z-index: 1;
  height: calc(457 * var(--pc-scale));
  overflow: hidden;
  color: #fff;
  background: #1754c5;
}

.home-contact__media,
.home-contact__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-contact__media {
  z-index: 0;
}

.home-contact__media img {
  object-fit: cover;
  object-position: center bottom;
}

.home-contact__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: calc(43 * var(--pc-scale));
  width: calc(1091.5 * var(--pc-scale));
  margin-left: calc(50% - (720 * var(--pc-scale)) + (121 * var(--pc-scale)));
  padding-top: calc(73 * var(--pc-scale));
}

.home-contact__message {
  display: flex;
  width: calc(599 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  gap: calc(30 * var(--pc-scale));
}

.home-contact__heading {
  position: relative;
  display: flex;
  width: calc(599 * var(--pc-scale));
  mix-blend-mode: color-dodge;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(3 * var(--pc-scale));
}

.home-contact__title-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(98 * var(--pc-scale));
  padding: 0 calc(14 * var(--pc-scale));
  overflow: hidden;
}

.home-contact__en {
  margin: 0;
  color: var(--color-sub);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(140 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.7;
  white-space: nowrap;
}


.home-contact__line {
  display: block;
  width: calc(599 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid var(--color-sub);
}

.home-contact__lead {
  width: calc(572 * var(--pc-scale));
  margin: 0;
  color: #fff;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

.home-contact__actions {
  display: flex;
  width: calc(449.5 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(29 * var(--pc-scale));
  padding-top: calc(38 * var(--pc-scale));
}

.home-contact__phone-block {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(6 * var(--pc-scale));
}

.home-contact__phone-label,
.home-contact__hours {
  margin: 0;
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}

.home-contact__phone-label {
  font-size: calc(18 * var(--pc-scale));
}

.home-contact__hours {
  font-size: calc(16 * var(--pc-scale));
}

.home-contact__phone {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--pc-scale));
  color: #fff;
}

.home-contact__phone-icon {
  display: block;
  width: calc(34 * var(--pc-scale));
  height: calc(34 * var(--pc-scale));
  background: currentColor;
  -webkit-mask: url('../img/icon-phone.svg') center / contain no-repeat;
  mask: url('../img/icon-phone.svg') center / contain no-repeat;
}

.home-contact__phone-number {
  color: #fff;
  font-family: var(--font-number);
  font-size: calc(60 * var(--pc-scale));
  font-weight: 800;
  line-height: 0.833333;
  white-space: nowrap;
}

.home-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--pc-scale));
  width: calc(447 * var(--pc-scale));
  height: calc(88 * var(--pc-scale));
  padding: calc(24 * var(--pc-scale)) calc(120 * var(--pc-scale)) calc(24 * var(--pc-scale)) calc(119 * var(--pc-scale));
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(calc(2 * var(--pc-scale)));
}

.home-contact__button-icon {
  display: block;
  width: calc(28 * var(--pc-scale));
  height: calc(17.177 * var(--pc-scale));
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url('../img/icon-mail.svg') center / contain no-repeat;
  mask: url('../img/icon-mail.svg') center / contain no-repeat;
}

.home-contact__button-text {
  color: var(--color-blue);
  font-family: var(--font-number), var(--font-base);
  font-size: calc(28 * var(--pc-scale));
  font-weight: 600;
  line-height: 1.428571;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  padding-top: calc(40 * var(--pc-scale));
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--pc-scale));
  color: #222;
  background: #fff;
}

.site-footer__main {
  display: flex;
  width: min(100%, calc(1000 * var(--pc-scale)));
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--pc-scale));
}

.site-footer__logo-link {
  display: block;
  width: calc(300 * var(--pc-scale));
  height: calc(34 * var(--pc-scale));
  flex: 0 0 auto;
}

.site-footer__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__address,
.site-footer__copy {
  margin: 0;
}

.site-footer__address {
  width: calc(480 * var(--pc-scale));
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.site-footer__address-pc-space {
  display: inline;
}

.site-footer__address-sp-break {
  display: none;
}

.site-footer__line {
  display: block;
  width: calc(1000 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: calc(18 * var(--pc-scale));
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__nav a {
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: var(--color-blue);
}

.site-footer__copy-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(53 * var(--pc-scale));
  padding: calc(12 * var(--pc-scale)) 0;
  background: var(--color-blue);
}

.site-footer__copy {
  color: #fff;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}

.page-default {
  padding: calc(var(--header-height) + calc(72 * var(--pc-scale))) 0 calc(96 * var(--pc-scale));
}

.page-default__inner {
  width: min(100% - calc(48 * var(--pc-scale)), calc(920 * var(--pc-scale)));
  margin: 0 auto;
}

.entry {
  padding: calc(44 * var(--pc-scale));
  background: #fff;
  border-radius: calc(8 * var(--pc-scale));
}

.entry__title {
  margin: 0 0 calc(28 * var(--pc-scale));
  font-size: clamp(calc(28 * var(--pc-scale)), 4vw, calc(42 * var(--pc-scale)));
}

@media (max-width: 760px) {
  .site-header__right {
    display: none;
  }

  .drawer-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    overflow: hidden;
    color: #fff;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    isolation: isolate;
  }

  .drawer-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .drawer-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0a2d72;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 76.923%, rgba(0, 0, 0, 0.21) 100%),
      linear-gradient(#1754c5, #1754c5),
      url(../img/sp-drawer-bg-overlay.webp),
      url(../img/sp-drawer-bg.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: normal, hard-light, normal, normal;
  }

  .drawer-menu__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .drawer-menu__vertical {
    position: absolute;
    inset: 0;
    z-index: 1;
    color: rgba(230, 199, 113, 0.9);
    pointer-events: none;
    mix-blend-mode: color-dodge;
  }

  .drawer-menu__vertical-text {
    position: absolute;
    top: 50%;
    left: calc(39 * var(--sp-scale));
    color: currentColor;
    font-family: 'Alumni Sans SC', var(--font-en);
    font-size: calc(72 * var(--sp-scale));
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.7;
    text-transform: none;
    white-space: nowrap;
    mix-blend-mode: color-dodge;
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center;
  }

  .drawer-menu__vertical-line {
    position: absolute;
    top: calc(52 * var(--sp-scale));
    bottom: 0;
    left: calc(64 * var(--sp-scale));
    width: calc(1 * var(--sp-scale));
    background: currentColor;
    opacity: 0.8;
  }

  .drawer-menu__content {
    position: absolute;
    top: 50%;
    left: calc(64 * var(--sp-scale));
    display: flex;
    flex-direction: column;
    gap: calc(60 * var(--sp-scale));
    align-items: center;
    width: calc(100% - calc(64 * var(--sp-scale)));
    max-width: calc(326 * var(--sp-scale));
    transform: translateY(-50%);
  }

  .drawer-menu__nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .drawer-menu__nav a {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(56 * var(--sp-scale));
    padding: 0 calc(20 * var(--sp-scale));
    border-bottom: calc(1 * var(--sp-scale)) solid #e6c771;
    color: #fff;
    background: transparent;
    border-radius: 0;
    font-size: calc(16 * var(--sp-scale));
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
  }

  .drawer-menu__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(12 * var(--sp-scale));
    width: min(calc(272 * var(--sp-scale)), 100%);
    height: calc(60 * var(--sp-scale));
    color: var(--color-blue);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(calc(2 * var(--sp-scale)));
    font-family: var(--font-number);
    font-size: calc(20 * var(--sp-scale));
    font-weight: 600;
    line-height: 1;
  }

  .drawer-menu__contact-icon {
    display: block;
    width: calc(20 * var(--sp-scale));
    height: calc(13 * var(--sp-scale));
    background: currentColor;
    mask: url("../img/icon-mail.svg") center / contain no-repeat;
    -webkit-mask: url("../img/icon-mail.svg") center / contain no-repeat;
  }

}

@media (max-width: 760px) {
  :root {
    --pc-scale: 1px;
    --sp-scale: min(calc(100vw / 390), 1px);
    --header-height: calc(52 * var(--sp-scale));
  }

  body {
    font-size: calc(15 * var(--sp-scale));
  }

  .site-header,
  .site-header.is-scrolled,
  .is-drawer-open .site-header {
    box-shadow: none;
  }

  .site-header__inner {
    width: 100%;
    padding: 0 0 0 calc(16 * var(--sp-scale));
    gap: 0;
  }

  .site-header__brand {
    width: calc(120 * var(--sp-scale));
    min-width: calc(120 * var(--sp-scale));
    height: calc(13 * var(--sp-scale));
  }

  .site-header__logo {
    width: calc(120 * var(--sp-scale));
    height: calc(13 * var(--sp-scale));
  }

  .site-header__mobile-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .site-header__mobile-action,
  .site-header__toggle {
    width: calc(52 * var(--sp-scale));
    height: calc(52 * var(--sp-scale));
    border-radius: 0;
  }

  .site-header__mobile-action--tel {
    background: var(--color-sub);
  }

  .site-header__mobile-action--contact,
  .site-header__toggle {
    background: var(--color-blue);
  }

  .site-header__mobile-action--tel img {
    width: calc(16 * var(--sp-scale));
    height: calc(16 * var(--sp-scale));
  }

  .site-header__mobile-action--contact img {
    width: calc(20 * var(--sp-scale));
    height: calc(12 * var(--sp-scale));
  }

  .site-header__toggle {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--sp-scale));
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    border: 0;
  }

  .site-header__toggle span {
    width: calc(20 * var(--sp-scale));
    height: calc(2 * var(--sp-scale));
    margin: 0;
    background: #fff;
  }

  .site-header__toggle[aria-expanded="true"] {
    background: #fff;
  }

  .site-header__toggle[aria-expanded="true"] span {
    background: var(--color-blue);
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(calc(5 * var(--sp-scale))) rotate(45deg);
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(calc(-5 * var(--sp-scale))) rotate(-45deg);
  }

}


@media (max-width: 760px) {
  .home-hero {
    height: calc(700 * var(--sp-scale));
    padding: 0;
  }

  .home-hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 76.923%, rgba(0, 0, 0, 0.21) 100%);
  }

  .home-hero__inner {
    width: 100%;
    height: 100%;
    padding: calc(297 * var(--sp-scale)) 0 0 calc(64 * var(--sp-scale));
  }

  .home-hero__content {
    width: min(calc(326 * var(--sp-scale)), calc(100% - calc(64 * var(--sp-scale))));
  }

  .home-hero__title {
    display: flex;
    flex-direction: column;
    gap: calc(8 * var(--sp-scale));
    font-size: calc(82 * var(--sp-scale));
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .home-hero__title-row {
    gap: calc(24 * var(--sp-scale));
  }

  .home-hero__cross {
    width: calc(44 * var(--sp-scale));
    height: calc(44 * var(--sp-scale));
  }

  .home-hero__lead {
    width: min(calc(285 * var(--sp-scale)), calc(100vw - calc(105 * var(--sp-scale))));
    margin-top: calc(17 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    line-height: 1.6;
  }

  .home-hero__lead br {
    display: none;
  }

  .home-hero__vertical {
    top: calc(68 * var(--sp-scale));
    right: auto;
    left: calc(14 * var(--sp-scale));
    width: calc(50 * var(--sp-scale));
    height: calc(561 * var(--sp-scale));
    opacity: 1;
  }

  .home-hero__vertical-text {
    color: rgba(230, 199, 113, 0.9);
    font-size: calc(72 * var(--sp-scale));
  }

  .home-hero__vertical-text br {
    display: none;
  }

  .home-hero__vectors {
    width: 100%;
  }

  .home-hero__vector--left {
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    height: calc(648 * var(--sp-scale));
  }

  .home-hero__vector--right {
    top: calc(247 * var(--sp-scale));
    right: calc(16 * var(--sp-scale));
    left: auto;
    display: block;
    height: calc(453 * var(--sp-scale));
  }

  .home-hero__vector--demolition {
    top: calc(297 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(326 * var(--sp-scale));
  }

  .home-hero__vector--estate {
    top: calc(384 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(310 * var(--sp-scale));
  }

  .home-hero__vector--bottom {
    top: calc(471 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(310 * var(--sp-scale));
  }

  .home-hero__vector--center {
    display: none;
  }
}

@media (max-width: 760px) {
  .home-page-line {
    top: calc(700 * var(--sp-scale));
    bottom: auto;
    display: block;
    height: calc(100% - calc(700 * var(--sp-scale)) + calc(1096 * var(--sp-scale)));
    border-left-width: calc(1 * var(--sp-scale));
  }

  .home-page-line--left {
    left: calc(16 * var(--sp-scale));
  }

  .home-page-line--right {
    right: calc(16 * var(--sp-scale));
  }

  .home-beginner {
    --beginner-sp-scale: min(calc(100vw / 390), 1px);
    min-height: calc(625 * var(--beginner-sp-scale));
    padding: 0;
  }

  .home-beginner__canvas {
    display: block;
    width: 100%;
    height: calc(625 * var(--beginner-sp-scale));
    margin: 0;
  }

  .home-beginner__line {
    display: block;
  }

  .home-beginner__line--horizontal {
    top: calc(82 * var(--beginner-sp-scale));
    left: 0;
    width: calc(390 * var(--beginner-sp-scale));
    border-top-width: calc(1 * var(--sp-scale));
  }

  .home-beginner__head {
    position: absolute;
    top: calc(64 * var(--beginner-sp-scale));
    left: calc(16 * var(--beginner-sp-scale));
    width: calc(198 * var(--beginner-sp-scale));
    margin: 0;
  }

  .home-beginner__label {
    font-size: calc(18 * var(--beginner-sp-scale));
    line-height: calc(18 * var(--beginner-sp-scale));
  }

  .home-beginner__en {
    margin-top: calc(5 * var(--beginner-sp-scale));
    margin-left: calc(5 * var(--beginner-sp-scale));
    font-size: calc(48 * var(--beginner-sp-scale));
    line-height: 1;
    white-space: nowrap;
  }

  .home-beginner__row {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

  .home-beginner__image {
    position: absolute;
    z-index: 2;
    top: calc(111 * var(--beginner-sp-scale));
    left: 0;
    width: calc(314 * var(--beginner-sp-scale));
    height: calc(148 * var(--beginner-sp-scale));
    aspect-ratio: auto;
  }

  .home-beginner__body {
    display: block;
    width: 100%;
    margin: 0;
  }

  .home-beginner__copy {
    display: block;
  }

  .home-beginner__heading {
    position: absolute;
    top: calc(283 * var(--beginner-sp-scale));
    left: calc(20 * var(--beginner-sp-scale));
    width: calc(300 * var(--beginner-sp-scale));
    font-size: calc(20 * var(--beginner-sp-scale));
    line-height: 1.6;
  }

  .home-beginner__text {
    position: absolute;
    top: calc(363 * var(--beginner-sp-scale));
    left: calc(20 * var(--beginner-sp-scale));
    width: calc(320 * var(--beginner-sp-scale));
    font-size: calc(16 * var(--beginner-sp-scale));
    line-height: 1.8;
  }

  .home-beginner__button {
    position: absolute;
    top: calc(585 * var(--beginner-sp-scale));
    left: calc(50% - (116 * var(--beginner-sp-scale)));
    width: calc(220 * var(--beginner-sp-scale));
    height: calc(40 * var(--beginner-sp-scale));
    padding: 0 calc(10 * var(--beginner-sp-scale)) 0 calc(54 * var(--beginner-sp-scale));
    gap: calc(14 * var(--beginner-sp-scale));
    font-size: calc(16 * var(--beginner-sp-scale));
  }

  .home-beginner__button::before,
  .home-beginner__button::after {
    width: calc(200 * var(--beginner-sp-scale));
  }

  .home-beginner__button-icon {
    width: calc(20 * var(--beginner-sp-scale));
    height: calc(20 * var(--beginner-sp-scale));
  }

  .home-beginner__button-icon::before {
    width: calc(7 * var(--beginner-sp-scale));
    height: calc(7 * var(--beginner-sp-scale));
  }
}

@media (max-width: 760px) {
  .home-business {
    min-height: calc(1268 * var(--sp-scale));
    padding: calc(64 * var(--sp-scale)) 0;
  }

  .home-business__line {
    display: block;
    border-top-width: calc(1 * var(--sp-scale));
  }

  .home-business__line--right {
    top: calc(64 * var(--sp-scale));
    left: calc(50% - calc(111 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-business__line--left {
    top: calc(82 * var(--sp-scale));
    left: calc(50% - calc(195 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-business__separator {
    display: none;
  }

  .home-business__canvas {
    display: block;
    width: min(100%, calc(390 * var(--sp-scale)));
    min-height: calc(1268 * var(--sp-scale));
    margin: 0 auto;
  }

  .home-business__head {
    gap: calc(10 * var(--sp-scale));
    min-height: calc(348 * var(--sp-scale));
    padding: 0;
  }

  .home-business__title-wrap {
    justify-items: center;
    width: calc(139 * var(--sp-scale));
    height: calc(48 * var(--sp-scale));
  }

  .home-business__en {
    font-size: calc(48 * var(--sp-scale));
    line-height: 1;
  }

  .home-business__label {
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
    line-height: 1;
  }

  .home-business__intro {
    width: calc(290 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
    text-align: center;
  }

  .home-business__intro br {
    display: none;
  }

  .home-business__text br {
    display: inline;
  }

  .home-business__cards {
    display: flex;
    flex-direction: column;
    gap: calc(42 * var(--sp-scale));
    align-items: center;
    width: calc(310 * var(--sp-scale));
    min-height: calc(880 * var(--sp-scale));
    margin: calc(40 * var(--sp-scale)) auto 0;
  }

  .home-business__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(310 * var(--sp-scale));
    min-height: 0;
    overflow: hidden;
  }

  .home-business__image {
    width: calc(310 * var(--sp-scale));
    height: auto;
    aspect-ratio: 479 / 308;
  }

  .home-business__number {
    display: none;
  }

  .home-business__heading {
    width: calc(281 * var(--sp-scale));
    margin-top: calc(15 * var(--sp-scale));
    font-size: calc(24 * var(--sp-scale));
    line-height: 1.6;
  }

  .home-business__text {
    width: calc(281 * var(--sp-scale));
    margin-top: calc(10 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
    letter-spacing: -0.02em;
    line-height: 1.8;
  }

  .home-business__button {
    height: calc(40 * var(--sp-scale));
    margin-top: calc(30 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale)) 0 calc(44 * var(--sp-scale));
    gap: calc(14 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .home-business__button--demolition {
    width: calc(172 * var(--sp-scale));
  }

  .home-business__button--estate {
    width: calc(188 * var(--sp-scale));
  }

  .home-business__button-icon {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .home-business__button-icon::before {
    width: calc(7 * var(--sp-scale));
    height: calc(7 * var(--sp-scale));
  }
}


@media (max-width: 760px) {
  .home-projects {
    padding: calc(72 * var(--sp-scale)) calc(24 * var(--sp-scale)) calc(70 * var(--sp-scale));
  }

  .home-projects__canvas {
    gap: calc(38 * var(--sp-scale));
    width: 100%;
    margin-left: 0;
  }

  .home-projects__content {
    gap: calc(28 * var(--sp-scale));
  }

  .home-projects__heading {
    display: grid;
    justify-items: center;
    width: 100%;
    height: auto;
    min-height: calc(48 * var(--sp-scale));
  }

  .home-projects__heading::before,
  .home-projects__heading::after {
    display: block;
    border-top-width: calc(1 * var(--sp-scale));
  }

  .home-projects__heading::before {
    top: 0;
    left: calc(50% - calc(111 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-projects__heading::after {
    top: calc(18 * var(--sp-scale));
    left: calc(50% - calc(195 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-projects__title-wrap {
    justify-items: center;
    width: 100%;
    height: auto;
    min-height: calc(48 * var(--sp-scale));
    margin-left: 0;
  }

  .home-projects__en {
    font-size: clamp(calc(58 * var(--sp-scale)), 18vw, calc(78 * var(--sp-scale)));
    line-height: 0.95;
  }

  .home-projects__label {
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
  }

  .home-projects__cards {
    width: 100%;
    min-height: 0;
  }

  .home-projects__cards:not(.swiper-initialized) .home-projects__cards-wrapper {
    gap: calc(20 * var(--sp-scale));
  }

  .home-projects__card {
    width: 100%;
    height: auto;
  }

  .home-projects__image {
    height: auto;
    aspect-ratio: 310 / 192;
  }

  .home-projects__body {
    height: auto;
    min-height: calc(233 * var(--sp-scale));
    gap: calc(12 * var(--sp-scale));
    padding: calc(20 * var(--sp-scale));
  }

  .home-projects__card-title,
  .home-projects__text,
  .home-projects__detail {
    width: 100%;
  }

  .home-projects__card-title {
    font-size: clamp(calc(18 * var(--sp-scale)), 5.4vw, calc(22 * var(--sp-scale)));
    white-space: normal;
  }

  .home-projects__area,
  .home-projects__text,
  .home-projects__detail,
  .home-projects__tag {
    font-size: calc(15 * var(--sp-scale));
  }

  .home-projects__detail {
    height: calc(42 * var(--sp-scale));
    gap: 0;
    justify-content: space-between;
    padding: 0 calc(14 * var(--sp-scale)) 0 0;
  }

  .home-projects__detail span:first-child {
    flex: 1 1 auto;
    text-align: center;
  }

  .home-projects__tag {
    width: auto;
    height: calc(25 * var(--sp-scale));
  }

  .home-projects__archive {
    width: calc(284 * var(--sp-scale));
    max-width: 100%;
    height: calc(40 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale)) 0 calc(44 * var(--sp-scale));
    gap: calc(14 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .home-projects__archive::before,
  .home-projects__archive::after {
    width: calc(100% - calc(20 * var(--sp-scale)));
  }

  .home-projects__detail-icon,
  .home-projects__archive-icon {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .home-projects__detail-icon::before,
  .home-projects__archive-icon::before {
    width: calc(7 * var(--sp-scale));
    height: calc(7 * var(--sp-scale));
  }
}


@media (max-width: 760px) {
  .home-about {
    min-height: 0;
    padding: calc(72 * var(--sp-scale)) 0 calc(64 * var(--sp-scale));
  }

  .home-about__line {
    top: calc(90 * var(--sp-scale));
    left: 0;
    display: block;
    width: 100%;
    border-top-width: calc(1 * var(--sp-scale));
  }

  .home-about__canvas {
    width: 100%;
    min-height: 0;
  }

  .home-about__heading {
    width: auto;
    height: auto;
    min-height: calc(80 * var(--sp-scale));
    margin: 0 calc(24 * var(--sp-scale));
  }

  .home-about__label {
    font-size: calc(18 * var(--sp-scale));
  }

  .home-about__en {
    font-size: clamp(calc(56 * var(--sp-scale)), 18vw, calc(76 * var(--sp-scale)));
    line-height: 0.92;
    white-space: normal;
  }

  .home-about__row {
    display: grid;
    width: 100%;
    margin-top: calc(-8 * var(--sp-scale));
    gap: calc(32 * var(--sp-scale));
  }

  .home-about__image {
    width: 100%;
    height: auto;
    aspect-ratio: 750 / 423;
  }

  .home-about__body {
    width: auto;
    margin: 0 calc(24 * var(--sp-scale));
    gap: calc(28 * var(--sp-scale));
    padding: 0;
  }

  .home-about__copy {
    gap: calc(16 * var(--sp-scale));
  }

  .home-about__title {
    font-size: calc(18 * var(--sp-scale));
  }

  .home-about__text {
    font-size: calc(15 * var(--sp-scale));
  }

  .home-about__button {
    width: calc(172 * var(--sp-scale));
    height: calc(40 * var(--sp-scale));
    margin-right: auto;
    margin-left: auto;
    padding: 0 calc(10 * var(--sp-scale)) 0 calc(44 * var(--sp-scale));
    gap: calc(14 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .home-about__button::before,
  .home-about__button::after {
    width: calc(152 * var(--sp-scale));
  }

  .home-about__button-icon {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .home-about__button-icon::before {
    width: calc(7 * var(--sp-scale));
    height: calc(7 * var(--sp-scale));
  }
}


@media (max-width: 760px) {
  .home-faq {
    padding: calc(72 * var(--sp-scale)) calc(24 * var(--sp-scale)) calc(64 * var(--sp-scale));
  }

  .home-faq__canvas {
    gap: calc(28 * var(--sp-scale));
    width: 100%;
  }

  .home-faq__heading {
    display: grid;
    justify-items: center;
    width: 100%;
    height: auto;
    min-height: calc(48 * var(--sp-scale));
  }

  .home-faq__heading::before,
  .home-faq__heading::after {
    display: block;
    border-top-width: calc(1 * var(--sp-scale));
  }

  .home-faq__heading::before {
    top: 0;
    left: calc(50% - calc(111 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-faq__heading::after {
    top: calc(18 * var(--sp-scale));
    left: calc(50% - calc(195 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-faq__title-wrap {
    justify-items: center;
    width: 100%;
    height: auto;
    min-height: calc(48 * var(--sp-scale));
    margin-left: 0;
  }

  .home-faq__en {
    margin-left: 0;
    font-size: clamp(calc(58 * var(--sp-scale)), 18vw, calc(78 * var(--sp-scale)));
    line-height: 0.95;
  }

  .home-faq__label {
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
  }

  .home-faq__list {
    width: 100%;
  }

  .home-faq__question {
    min-height: calc(72 * var(--sp-scale));
    gap: calc(16 * var(--sp-scale));
    padding: calc(18 * var(--sp-scale)) calc(16 * var(--sp-scale));
  }

  .home-faq__item[open] .home-faq__question {
    padding: calc(18 * var(--sp-scale)) calc(16 * var(--sp-scale));
  }

  .home-faq__question-main {
    align-items: flex-start;
    gap: calc(12 * var(--sp-scale));
  }

  .home-faq__badge {
    min-width: calc(35 * var(--sp-scale));
    height: calc(36 * var(--sp-scale));
    border-radius: calc(5 * var(--sp-scale));
    font-size: calc(36 * var(--sp-scale));
  }

  .home-faq__badge--answer {
    min-width: calc(34 * var(--sp-scale));
  }

  .home-faq__question-text {
    font-size: calc(15 * var(--sp-scale));
    line-height: 1.7;
  }

  .home-faq__toggle {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .home-faq__toggle::before {
    width: calc(18 * var(--sp-scale));
  }

  .home-faq__toggle::after {
    height: calc(18 * var(--sp-scale));
  }

  .home-faq__answer {
    min-height: 0;
    gap: calc(12 * var(--sp-scale));
    padding: calc(18 * var(--sp-scale)) calc(16 * var(--sp-scale));
  }

  .home-faq__answer-text {
    width: auto;
    font-size: calc(15 * var(--sp-scale));
  }
}


@media (max-width: 760px) {
  .home-news {
    padding: calc(72 * var(--sp-scale)) calc(24 * var(--sp-scale)) calc(64 * var(--sp-scale));
  }

  .home-news__canvas {
    gap: calc(38 * var(--sp-scale));
    width: 100%;
  }

  .home-news__content {
    align-items: center;
    gap: calc(28 * var(--sp-scale));
  }

  .home-news__heading {
    display: grid;
    justify-items: center;
    width: 100%;
    height: auto;
    min-height: calc(48 * var(--sp-scale));
  }

  .home-news__heading::before,
  .home-news__heading::after {
    display: block;
    border-top-width: calc(1 * var(--sp-scale));
  }

  .home-news__heading::before {
    top: 0;
    left: calc(50% - calc(111 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-news__heading::after {
    top: calc(18 * var(--sp-scale));
    left: calc(50% - calc(195 * var(--sp-scale)));
    width: calc(306 * var(--sp-scale));
  }

  .home-news__title-wrap {
    justify-items: center;
    width: 100%;
    height: auto;
    min-height: calc(48 * var(--sp-scale));
    margin-left: 0;
  }

  .home-news__en {
    font-size: clamp(calc(58 * var(--sp-scale)), 18vw, calc(78 * var(--sp-scale)));
    line-height: 0.95;
  }

  .home-news__label {
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
  }

  .home-news__list {
    width: 100%;
    font-size: calc(15 * var(--sp-scale));
  }

  .home-news__row {
    display: grid;
    gap: calc(6 * var(--sp-scale));
    min-height: auto;
    padding: calc(20 * var(--sp-scale)) 0;
    white-space: normal;
  }

  .home-news__date,
  .home-news__title {
    font-size: calc(15 * var(--sp-scale));
  }

  .home-news__archive {
    width: calc(204 * var(--sp-scale));
    height: calc(40 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale)) 0 calc(44 * var(--sp-scale));
    gap: calc(14 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .home-news__archive::before,
  .home-news__archive::after {
    width: calc(184 * var(--sp-scale));
  }

  .home-news__archive-icon {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .home-news__archive-icon::before {
    width: calc(7 * var(--sp-scale));
    height: calc(7 * var(--sp-scale));
  }
}


@media (max-width: 760px) {
  .home-contact {
    height: auto;
    min-height: 0;
    padding: calc(72 * var(--sp-scale)) calc(24 * var(--sp-scale));
  }

  .home-contact__inner {
    display: grid;
    gap: calc(36 * var(--sp-scale));
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .home-contact__message,
  .home-contact__heading,
  .home-contact__lead,
  .home-contact__actions {
    width: 100%;
  }

  .home-contact__message {
    gap: calc(24 * var(--sp-scale));
  }

  .home-contact__heading {
    gap: calc(10 * var(--sp-scale));
  }

  .home-contact__title-frame {
    height: auto;
    padding: 0;
  }

  .home-contact__en {
    font-size: clamp(calc(86 * var(--sp-scale)), 25vw, calc(118 * var(--sp-scale)));
    line-height: 0.78;
  }

  .home-contact__line {
    width: 100%;
  }

  .home-contact__lead {
    font-size: calc(15 * var(--sp-scale));
    text-align: left;
  }

  .home-contact__lead br {
    display: none;
  }

  .home-contact__actions {
    gap: calc(24 * var(--sp-scale));
    padding-top: 0;
  }

  .home-contact__phone-label {
    font-size: calc(16 * var(--sp-scale));
  }

  .home-contact__phone {
    gap: calc(10 * var(--sp-scale));
  }

  .home-contact__phone-icon {
    width: calc(24 * var(--sp-scale));
    height: calc(24 * var(--sp-scale));
  }

  .home-contact__phone-number {
    font-size: clamp(calc(34 * var(--sp-scale)), 10vw, calc(44 * var(--sp-scale)));
  }

  .home-contact__hours {
    font-size: calc(14 * var(--sp-scale));
  }

  .home-contact__button {
    width: 100%;
    height: calc(72 * var(--sp-scale));
    padding: 0 calc(28 * var(--sp-scale));
  }

  .home-contact__button-icon {
    width: calc(24 * var(--sp-scale));
    height: calc(15 * var(--sp-scale));
  }

  .home-contact__button-text {
    font-size: calc(22 * var(--sp-scale));
  }
}


@media (max-width: 760px) {
  .site-footer {
    gap: calc(20 * var(--sp-scale));
    padding: calc(64 * var(--sp-scale)) 0 0;
  }

  .site-footer__main {
    width: calc(100% - calc(48 * var(--sp-scale)));
    gap: calc(18 * var(--sp-scale));
  }

  .site-footer__logo-link {
    width: min(72vw, calc(300 * var(--sp-scale)));
    height: auto;
    aspect-ratio: 300 / 34;
  }

  .site-footer__address {
    width: 100%;
    font-size: calc(13 * var(--sp-scale));
  }

  .site-footer__address-pc-space {
    display: none;
  }

  .site-footer__address-sp-break {
    display: initial;
  }

  .site-footer__line {
    width: 100%;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(12 * var(--sp-scale)) calc(18 * var(--sp-scale));
    padding-top: 0;
    border-top: 0;
    font-size: calc(14 * var(--sp-scale));
    line-height: 1.4;
    white-space: normal;
  }

  .site-footer__copy-bar {
    min-height: calc(48 * var(--sp-scale));
    padding: calc(10 * var(--sp-scale)) calc(24 * var(--sp-scale));
  }

  .site-footer__copy {
    font-size: calc(12 * var(--sp-scale));
    white-space: normal;
  }
}



.page-beginner-fv {
  position: relative;
  height: calc(427 * var(--pc-scale));
  overflow: hidden;
  color: #fff;
  background: #07244f;
}

.page-beginner-fv__media,
.page-beginner-fv__media img,
.page-beginner-fv__blue,
.page-beginner-fv__shade {
  position: absolute;
  display: block;
}

.page-beginner-fv__media {
  inset: 0;
}

.page-beginner-fv__media img {
  top: -36.96%;
  left: 0;
  width: 100%;
  height: 192.66%;
  max-width: none;
  object-fit: cover;
}

.page-beginner-fv__blue,
.page-beginner-fv__shade {
  inset: 0;
}

.page-beginner-fv__blue {
  background: rgba(23, 84, 197, 0.8);
  mix-blend-mode: hard-light;
}

.page-beginner-fv__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 76.25%);
}

.page-beginner-fv__canvas {
  position: relative;
  width: min(100%, calc(1440 * var(--pc-scale)));
  height: 100%;
  margin: 0 auto;
}

.page-beginner-fv__en {
  position: absolute;
  top: calc(101 * var(--pc-scale));
  left: calc(8 * var(--pc-scale));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(112 * var(--pc-scale));
  margin: 0;
  color: rgba(230, 199, 113, 0.6);
  mix-blend-mode: color-dodge;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(80 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.7;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
  white-space: nowrap;
}

.page-beginner-fv__en span {
  display: block;
}

.page-beginner-fv__line {
  position: absolute;
  display: block;
  pointer-events: none;
  border-color: rgba(230, 199, 113, 0.8);
}

.page-beginner-fv__line--left {
  top: calc(86 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  width: 0;
  height: calc(341 * var(--pc-scale));
  border-left: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-beginner-fv__line--right {
  top: calc(147 * var(--pc-scale));
  left: calc(457 * var(--pc-scale));
  width: 0;
  height: calc(113 * var(--pc-scale));
  border-left: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-beginner-fv__line--top {
  top: calc(197 * var(--pc-scale));
  left: calc(121 * var(--pc-scale));
  width: calc(436 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-beginner-fv__line--bottom {
  top: calc(243 * var(--pc-scale));
  left: calc(68 * var(--pc-scale));
  width: calc(388 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-beginner-fv__title {
  position: absolute;
  top: calc(185 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  margin: 0;
  color: #fff;
  font-size: calc(48 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  white-space: nowrap;
}

.page-beginner-fv__lead {
  position: absolute;
  top: calc(265 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  width: calc(406 * var(--pc-scale));
  margin: 0;
  color: #fff;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: justify;
}


.page-beginner-why {
  position: relative;
  height: calc(651 * var(--pc-scale));
  padding-top: calc(60 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.page-beginner-why::before,
.page-beginner-why::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  display: block;
  width: 0;
  content: "";
  pointer-events: none;
  border-left: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-beginner-why::before {
  left: calc(120 * var(--pc-scale));
}

.page-beginner-why::after {
  right: calc(120 * var(--pc-scale));
}

.page-beginner-why__head {
  position: relative;
  z-index: 2;
  height: calc(100 * var(--pc-scale));
}

.page-beginner-why__title-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  transform: translateX(-50%);
  width: calc(484 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
}

.page-beginner-why__en,
.page-beginner-why__label {
  grid-area: 1 / 1;
}

.page-beginner-why__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-beginner-why__label {
  position: relative;
  z-index: 1;
  margin: calc(16 * var(--pc-scale)) 0 0 calc(134 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.page-beginner-why__head-line,
.page-beginner-why__line {
  position: absolute;
  display: block;
  pointer-events: none;
  border-color: rgba(29, 74, 158, 0.4);
}

.page-beginner-why__head-line--right {
  top: calc(16 * var(--pc-scale));
  left: calc(554 * var(--pc-scale));
  right: 0;
  width: auto;
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-beginner-why__head-line--left {
  top: calc(41 * var(--pc-scale));
  left: 0;
  width: calc(886 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-beginner-why__body {
  position: relative;
  z-index: 2;
  width: calc(1200 * var(--pc-scale));
  height: calc(551 * var(--pc-scale));
  margin: 0 auto;
}

.page-beginner-why__line--top {
  top: calc(30 * var(--pc-scale));
  left: 0;
  width: 100%;
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-beginner-why__line--one,
.page-beginner-why__line--two,
.page-beginner-why__line--three {
  top: 0;
  width: 0;
  height: calc(551 * var(--pc-scale));
  border-left: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-beginner-why__line--one {
  left: calc(299 * var(--pc-scale));
}

.page-beginner-why__line--two {
  left: calc(599 * var(--pc-scale));
}

.page-beginner-why__line--three {
  left: calc(899 * var(--pc-scale));
}

.page-beginner-why__cards {
  position: absolute;
  top: calc(104 * var(--pc-scale));
  left: calc(40 * var(--pc-scale));
  display: flex;
  justify-content: center;
  gap: calc(82 * var(--pc-scale));
  width: calc(1118 * var(--pc-scale));
}

.page-beginner-why__card {
  display: flex;
  width: calc(218 * var(--pc-scale));
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  gap: calc(22 * var(--pc-scale));
  min-width: 0;
  text-align: center;
}

.page-beginner-why__icon {
  display: block;
  object-fit: contain;
}

.page-beginner-why__icon--01 {
  width: calc(120 * var(--pc-scale));
  height: calc(126 * var(--pc-scale));
}

.page-beginner-why__icon--02 {
  width: calc(127 * var(--pc-scale));
  height: calc(127 * var(--pc-scale));
}

.page-beginner-why__icon--03 {
  width: calc(114 * var(--pc-scale));
  height: calc(127 * var(--pc-scale));
}

.page-beginner-why__icon--04 {
  width: calc(181 * var(--pc-scale));
  height: calc(106 * var(--pc-scale));
}

.page-beginner-why__card--support {
  gap: calc(38 * var(--pc-scale));
  overflow: hidden;
}

.page-beginner-why__card-copy {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--pc-scale));
  align-items: center;
  width: 100%;
}

.page-beginner-why__heading {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(20 * var(--pc-scale));
  font-weight: 700;
  line-height: 1.6;
}

.page-beginner-why__text {
  width: calc(218 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 760px) {
  .page-beginner-why {
    height: auto;
    padding: calc(64 * var(--sp-scale)) 0 calc(56 * var(--sp-scale));
    overflow: hidden;
    border-right: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
    border-left: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-beginner-why::before,
  .page-beginner-why::after {
    display: none;
  }

  .page-beginner-why__head {
    position: relative;
    display: flex;
    min-height: calc(64 * var(--sp-scale));
    height: auto;
    overflow: visible;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .page-beginner-why__title-wrap {
    position: relative;
    z-index: 2;
    left: auto;
    display: grid;
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(306 * var(--sp-scale));
    min-height: calc(58 * var(--sp-scale));
    height: auto;
    order: 1;
    transform: none;
    place-items: start center;
  }

  .page-beginner-why__en {
    width: 100%;
    color: rgba(29, 74, 158, 0.18);
    font-size: calc(48 * var(--sp-scale));
    line-height: 1;
    text-align: center;
  }

  .page-beginner-why__label {
    z-index: 2;
    margin: 0;
    color: var(--color-blue);
    font-size: calc(18 * var(--sp-scale));
    line-height: 1;
    text-align: center;
  }

  .page-beginner-why__head-line {
    position: absolute;
    display: block;
    height: 0;
    border-top: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-beginner-why__head-line--right {
    top: 0;
    right: 0;
    left: auto;
    width: calc(306 * var(--sp-scale));
    order: 2;
  }

  .page-beginner-why__head-line--left {
    top: calc(18 * var(--sp-scale));
    left: 0;
    width: calc(306 * var(--sp-scale));
    order: 3;
  }

  .page-beginner-why__body {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin: calc(36 * var(--sp-scale)) 0 0;
  }

  .page-beginner-why__line {
    display: none;
  }

  .page-beginner-why__cards {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    border-top: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
    border-bottom: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-beginner-why__card {
    width: auto;
    max-width: none;
    min-height: calc(296 * var(--sp-scale));
    padding: calc(34 * var(--sp-scale)) calc(17 * var(--sp-scale)) calc(28 * var(--sp-scale));
    margin: 0;
    gap: 0;
  }

  .page-beginner-why__card:nth-child(odd) {
    border-right: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-beginner-why__card:nth-child(-n + 2) {
    border-bottom: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-beginner-why__icon {
    margin: 0 auto calc(24 * var(--sp-scale));
  }

  .page-beginner-why__icon--01 {
    width: calc(76 * var(--sp-scale));
    height: calc(80 * var(--sp-scale));
  }

  .page-beginner-why__icon--02 {
    width: calc(80 * var(--sp-scale));
    height: calc(80 * var(--sp-scale));
  }

  .page-beginner-why__icon--03 {
    width: calc(72 * var(--sp-scale));
    height: calc(80 * var(--sp-scale));
  }

  .page-beginner-why__icon--04 {
    width: calc(111 * var(--sp-scale));
    height: calc(65 * var(--sp-scale));
    margin-bottom: calc(31 * var(--sp-scale));
  }

  .page-beginner-why__card-copy {
    gap: 0;
  }

  .page-beginner-why__heading {
    width: 100%;
    margin: 0 0 calc(10 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    line-height: 1.6;
  }

  .page-beginner-why__text {
    width: 100%;
    font-size: calc(15 * var(--sp-scale));
    line-height: 1.7;
    text-align: justify;
  }
}




.page-beginner-points {
  position: relative;
  height: calc(1844 * var(--pc-scale));
  margin-top: calc(-45 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.page-beginner-points__item {
  position: absolute;
  left: 0;
  width: 100%;
}

.page-beginner-points__item--01 {
  top: 0;
  height: calc(635 * var(--pc-scale));
}

.page-beginner-points__item--02 {
  top: calc(590 * var(--pc-scale));
  height: calc(595 * var(--pc-scale));
}

.page-beginner-points__item--03 {
  top: calc(1140 * var(--pc-scale));
  height: calc(704 * var(--pc-scale));
}

.page-beginner-points__bg {
  position: absolute;
  top: calc(45 * var(--pc-scale));
  left: 0;
  display: block;
  width: 100%;
  height: calc(285 * var(--pc-scale));
  background: #f6faff;
}

.page-beginner-points__inner {
  position: relative;
  width: calc(1200 * var(--pc-scale));
  height: 100%;
  margin: 0 auto;
}

.page-beginner-points__line {
  position: absolute;
  top: calc(330 * var(--pc-scale));
  display: block;
  width: 0;
  height: calc(305 * var(--pc-scale));
  pointer-events: none;
  border-left: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-beginner-points__line--right {
  left: calc(1200 * var(--pc-scale));
}

.page-beginner-points__line--left {
  left: 0;
  height: calc(265 * var(--pc-scale));
}

.page-beginner-points__line--long {
  height: calc(374 * var(--pc-scale));
}

.page-beginner-points__figure {
  position: absolute;
  width: calc(670 * var(--pc-scale));
  margin: 0;
}

.page-beginner-points__figure img {
  width: 100%;
  height: auto;
}

.page-beginner-points__figure--01,
.page-beginner-points__figure--03 {
  top: calc(80 * var(--pc-scale));
  left: calc(-10 * var(--pc-scale));
}

.page-beginner-points__figure--02 {
  top: calc(80 * var(--pc-scale));
  left: calc(540 * var(--pc-scale));
}

.page-beginner-points__copy {
  position: absolute;
  top: 0;
  width: calc(474 * var(--pc-scale));
}

.page-beginner-points__copy--01,
.page-beginner-points__copy--03 {
  left: calc(700 * var(--pc-scale));
}

.page-beginner-points__copy--02 {
  left: 0;
  width: calc(500 * var(--pc-scale));
}

.page-beginner-points__number {
  height: calc(90 * var(--pc-scale));
  margin: 0;
  color: var(--color-blue);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(90 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.page-beginner-points__heading {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(20 * var(--pc-scale));
  font-weight: 700;
  line-height: 1.6;
}

.page-beginner-points__text {
  width: 100%;
  margin: calc(10 * var(--pc-scale)) 0 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.page-beginner-points__note {
  width: calc(617 * var(--pc-scale));
  margin: calc(10 * var(--pc-scale)) 0 0 calc(10 * var(--pc-scale));
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}


@media (max-width: 760px) {
  .page-beginner-points {
    height: auto;
    margin-top: calc(-45 * var(--sp-scale));
    overflow: hidden;
  }

  .page-beginner-points__item {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: calc(45 * var(--sp-scale)) 0 calc(56 * var(--sp-scale));
    background: linear-gradient(180deg, #fff 0, #fff calc(45 * var(--sp-scale)), #f6faff calc(45 * var(--sp-scale)), #f6faff calc(645 * var(--sp-scale)), #fff calc(645 * var(--sp-scale)), #fff 100%);
  }

  .page-beginner-points__item + .page-beginner-points__item {
    padding-top: calc(72 * var(--sp-scale));
  }

  .page-beginner-points__bg,
  .page-beginner-points__line {
    display: none;
  }

  .page-beginner-points__inner {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    margin: 0;
  }

  .page-beginner-points__copy {
    position: relative;
    inset: auto;
    display: flex;
    width: calc(100% - calc(40 * var(--sp-scale)));
    height: auto;
    flex-direction: column;
    margin: 0 auto;
  }

  .page-beginner-points__number {
    align-self: flex-end;
    height: calc(90 * var(--sp-scale));
    font-size: calc(90 * var(--sp-scale));
    line-height: 1;
  }

  .page-beginner-points__heading {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: calc(8 * var(--sp-scale)) 0 0;
    color: var(--color-blue);
    font-size: calc(20 * var(--sp-scale));
    line-height: 1.6;
  }

  .page-beginner-points__item--03 .page-beginner-points__heading {
    width: 100%;
  }

  .page-beginner-points__text {
    width: 100%;
    margin: calc(16 * var(--sp-scale)) 0 0;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
  }

  .page-beginner-points__item--03 .page-beginner-points__text {
    width: 100%;
  }

  .page-beginner-points__figure {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    height: auto;
    margin: calc(32 * var(--sp-scale)) calc(20 * var(--sp-scale)) 0 calc(20 * var(--sp-scale));
    overflow: hidden;
  }

  .page-beginner-points__figure img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .page-beginner-points__figure--01,
  .page-beginner-points__figure--02,
  .page-beginner-points__figure--03 {
    height: auto;
  }

  .page-beginner-points__note {
    width: calc(334 * var(--sp-scale));
    margin: calc(20 * var(--sp-scale)) 0 0;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
  }


  .page-beginner-points__copy--01,
  .page-beginner-points__copy--03 {
    order: 1;
  }

  .page-beginner-points__figure {
    order: 2;
  }

}




.page-service-fv {
  position: relative;
  height: calc(427 * var(--pc-scale));
  overflow: hidden;
  color: #fff;
  background: #07244f;
}

.page-service-fv__media,
.page-service-fv__media img,
.page-service-fv__blue,
.page-service-fv__shade {
  position: absolute;
  display: block;
}

.page-service-fv__media {
  inset: 0;
}

.page-service-fv__media img {
  top: -36.96%;
  left: 0;
  width: 100%;
  height: 192.66%;
  max-width: none;
  object-fit: cover;
}

.page-service-fv__blue,
.page-service-fv__shade {
  inset: 0;
}

.page-service-fv__blue {
  background: rgba(23, 84, 197, 0.8);
  mix-blend-mode: hard-light;
}

.page-service-fv__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 76.25%);
}

.page-service-fv__canvas {
  position: relative;
  width: min(100%, calc(1440 * var(--pc-scale)));
  height: 100%;
  margin: 0 auto;
}

.page-service-fv__en {
  position: absolute;
  top: calc(101 * var(--pc-scale));
  left: calc(8 * var(--pc-scale));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(112 * var(--pc-scale));
  margin: 0;
  color: rgba(230, 199, 113, 0.6);
  mix-blend-mode: color-dodge;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(80 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.7;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
  white-space: nowrap;
}

.page-service-fv__en span {
  display: block;
}

.page-service-fv__line {
  position: absolute;
  display: block;
  pointer-events: none;
  border-color: rgba(230, 199, 113, 0.8);
}

.page-service-fv__line--left {
  top: calc(86 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  width: 0;
  height: calc(341 * var(--pc-scale));
  border-left: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-service-fv__line--right {
  top: calc(147 * var(--pc-scale));
  left: calc(313 * var(--pc-scale));
  width: 0;
  height: calc(113 * var(--pc-scale));
  border-left: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-service-fv__line--top {
  top: calc(197 * var(--pc-scale));
  left: calc(121 * var(--pc-scale));
  width: calc(292 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-service-fv__line--bottom {
  top: calc(243 * var(--pc-scale));
  left: calc(68 * var(--pc-scale));
  width: calc(346 * var(--pc-scale));
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(230, 199, 113, 0.8);
}

.page-service-fv__title {
  position: absolute;
  top: calc(185 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  margin: 0;
  color: #fff;
  font-size: calc(48 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  white-space: nowrap;
}

.page-service-fv__lead {
  position: absolute;
  top: calc(265 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  width: calc(468 * var(--pc-scale));
  margin: 0;
  color: #fff;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: justify;
}


.page-service-demolition {
  position: relative;
  height: calc(3736 * var(--pc-scale));
  padding-top: calc(39 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.page-service-demolition__head {
  position: relative;
  height: calc(200 * var(--pc-scale));
}

.page-service-demolition__en {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(345 * var(--pc-scale));
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-service-demolition__label {
  position: absolute;
  top: calc(16 * var(--pc-scale));
  left: 50%;
  margin: 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-service-demolition__lead {
  position: absolute;
  top: calc(110 * var(--pc-scale));
  left: 50%;
  width: calc(525 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  transform: translateX(-50%);
}

.page-service-demolition__number {
  position: absolute;
  top: 0;
  left: calc(1185 * var(--pc-scale));
  margin: 0;
  color: #a5b7d8;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(200 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.page-service-demolition__items {
  position: relative;
  width: calc(1440 * var(--pc-scale));
  height: calc(3347 * var(--pc-scale));
  margin: 0 auto;
}

.page-service-demolition__item {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(564 * var(--pc-scale));
}

.page-service-demolition__item::before {
  position: absolute;
  z-index: 0;
  top: calc(264 * var(--pc-scale));
  left: 0;
  display: block;
  width: 100%;
  height: calc(300 * var(--pc-scale));
  content: "";
  background: #f6faff;
}

.page-service-demolition__item--01 {
  top: 0;
}

.page-service-demolition__item--02 {
  top: calc(674 * var(--pc-scale));
}

.page-service-demolition__item--03 {
  top: calc(1348 * var(--pc-scale));
  height: calc(651 * var(--pc-scale));
}

.page-service-demolition__item--03::before {
  top: calc(351 * var(--pc-scale));
}

.page-service-demolition__item--04 {
  top: calc(2109 * var(--pc-scale));
}

.page-service-demolition__item--05 {
  top: calc(2783 * var(--pc-scale));
}

.page-service-demolition__image {
  position: absolute;
  z-index: 1;
  top: 0;
  width: calc(856 * var(--pc-scale));
  aspect-ratio: 856 / 561;
  height: auto;
  margin: 0;
  overflow: hidden;
}

.page-service-demolition__image--left {
  left: 0;
}

.page-service-demolition__image--right {
  left: calc(584 * var(--pc-scale));
}

.page-service-demolition__image img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.page-service-demolition__card {
  position: absolute;
  z-index: 2;
  top: calc(40 * var(--pc-scale));
  width: calc(504 * var(--pc-scale));
  min-height: calc(346 * var(--pc-scale));
  padding: calc(36 * var(--pc-scale)) calc(50 * var(--pc-scale));
  background: #fff;
  border: 0;
}

.page-service-demolition__item--01 .page-service-demolition__card {
  top: calc(64 * var(--pc-scale));
  left: calc(766 * var(--pc-scale));
}

.page-service-demolition__item--02 .page-service-demolition__card,
.page-service-demolition__item--04 .page-service-demolition__card {
  left: calc(170 * var(--pc-scale));
}

.page-service-demolition__item--03 .page-service-demolition__card {
  left: calc(668 * var(--pc-scale));
}

.page-service-demolition__item--05 .page-service-demolition__card {
  left: calc(714 * var(--pc-scale));
}

.page-service-demolition__item:nth-child(odd) .page-service-demolition__card {
  border-right: calc(6 * var(--pc-scale)) solid var(--color-blue);
}

.page-service-demolition__item:nth-child(even) .page-service-demolition__card {
  border-left: calc(6 * var(--pc-scale)) solid var(--color-blue);
}

.page-service-demolition__card--wide {
  width: calc(602 * var(--pc-scale));
  min-height: calc(481 * var(--pc-scale));
  padding: calc(40 * var(--pc-scale)) calc(75 * var(--pc-scale));
  border: 0;
}

.page-service-demolition__card--wide::after {
  display: none;
}

.page-service-demolition__card--medium {
  width: calc(556 * var(--pc-scale));
  min-height: calc(404 * var(--pc-scale));
}

.page-service-demolition__heading {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(30 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.page-service-demolition__text {
  margin: calc(15 * var(--pc-scale)) 0 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.page-service-demolition__button {
  position: absolute;
  top: calc(3657 * var(--pc-scale));
  left: calc(610 * var(--pc-scale));
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(14 * var(--pc-scale));
  width: calc(220 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(54 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.page-service-demolition__button::before,
.page-service-demolition__button::after {
  position: absolute;
  display: block;
  width: calc(200 * var(--pc-scale));
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.page-service-demolition__button::before {
  top: 0;
  left: 0;
}

.page-service-demolition__button::after {
  right: 0;
  bottom: 0;
}

.page-service-demolition__button-icon {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
}

.page-service-demolition__button-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
  border-right: calc(2 * var(--pc-scale)) solid var(--color-blue);
  transform: translate(-65%, -50%) rotate(45deg);
}

@media (max-width: 760px) {
  .page-service-demolition {
    height: auto;
    padding: calc(64 * var(--sp-scale)) 0 calc(168 * var(--sp-scale));
    overflow: hidden;
  }

  .page-service-demolition__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    height: auto;
    padding: 0 calc(16 * var(--sp-scale));
    row-gap: calc(18 * var(--sp-scale));
    text-align: center;
  }

  .page-service-demolition__head::before,
  .page-service-demolition__head::after {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
    height: 0;
    content: '';
    border-top: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-service-demolition__head::before {
    width: calc(306 * var(--sp-scale));
    margin-top: 0;
    margin-right: calc(-16 * var(--sp-scale));
    justify-self: end;
  }

  .page-service-demolition__head::after {
    width: calc(306 * var(--sp-scale));
    margin-top: calc(18 * var(--sp-scale));
    margin-left: calc(-16 * var(--sp-scale));
    justify-self: start;
  }

  .page-service-demolition__en,
  .page-service-demolition__label,
  .page-service-demolition__lead,
  .page-service-demolition__number {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .page-service-demolition__en {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    color: rgba(29, 74, 158, 0.15);
    font-size: calc(48 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-demolition__label {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-demolition__lead {
    grid-column: 1 / -1;
    width: min(calc(286 * var(--sp-scale)), calc(100% - calc(48 * var(--sp-scale))));
    margin: 0 auto;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
  }

  .page-service-demolition__number {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin: calc(-10 * var(--sp-scale)) 0 0;
    font-size: calc(60 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-demolition__items {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: calc(48 * var(--sp-scale));
    margin-top: calc(36 * var(--sp-scale));
  }

  .page-service-demolition__item {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0 0 calc(28 * var(--sp-scale));
    background: linear-gradient(180deg, transparent 0, transparent calc(213 * var(--sp-scale)), #f6faff calc(213 * var(--sp-scale)), #f6faff 100%);
  }

  .page-service-demolition__item::before,
  .page-service-demolition__item--03::before {
    display: none;
  }

  .page-service-demolition__image {
    position: relative;
    inset: auto;
    width: calc(334 * var(--sp-scale));
    margin: 0;
    overflow: hidden;
  }

  .page-service-demolition__image--left {
    align-self: flex-start;
  }

  .page-service-demolition__image--right {
    align-self: flex-end;
  }

  .page-service-demolition__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .page-service-demolition__card,
  .page-service-demolition__card--wide,
  .page-service-demolition__card--medium {
    position: relative;
    inset: auto;
    width: calc(308 * var(--sp-scale));
    height: auto;
    min-height: 0;
    margin: calc(-56 * var(--sp-scale)) calc(31 * var(--sp-scale)) 0 auto;
    padding: calc(22 * var(--sp-scale)) calc(18 * var(--sp-scale)) calc(24 * var(--sp-scale));
    border: 0;
  }

  .page-service-demolition__item .page-service-demolition__card {
    inset: auto;
  }

  .page-service-demolition__item:nth-child(even) .page-service-demolition__card {
    margin-right: auto;
    margin-left: calc(31 * var(--sp-scale));
  }

  .page-service-demolition__item:nth-child(odd) .page-service-demolition__card {
    border-right: calc(6 * var(--sp-scale)) solid var(--color-blue);
  }

  .page-service-demolition__item:nth-child(even) .page-service-demolition__card {
    border-left: calc(6 * var(--sp-scale)) solid var(--color-blue);
  }

  .page-service-demolition__card--wide::after {
    display: none;
  }

  .page-service-demolition__heading {
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.55;
  }

  .page-service-demolition__text {
    margin-top: calc(12 * var(--sp-scale));
    font-size: calc(12.5 * var(--sp-scale));
    line-height: 1.8;
  }

  .page-service-demolition__button {
    top: auto;
    bottom: calc(80 * var(--sp-scale));
    left: 50%;
    width: calc(220 * var(--sp-scale));
    height: calc(40 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale)) 0 calc(54 * var(--sp-scale));
    margin: 0;
    gap: calc(14 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
    transform: translateX(-50%);
  }

  .page-service-demolition__button::before,
  .page-service-demolition__button::after {
    display: block;
    width: calc(200 * var(--sp-scale));
  }

  .page-service-demolition__button-icon {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .page-service-demolition__button-icon::before {
    width: calc(7 * var(--sp-scale));
    height: calc(7 * var(--sp-scale));
    border-top-width: calc(2 * var(--sp-scale));
    border-right-width: calc(2 * var(--sp-scale));
  }
}




.page-service-realestate {
  position: relative;
  height: calc(3025 * var(--pc-scale));
  padding-top: calc(90 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.page-service-realestate__head {
  position: relative;
  height: calc(200 * var(--pc-scale));
}

.page-service-realestate__en {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(360 * var(--pc-scale));
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-service-realestate__label {
  position: absolute;
  top: calc(16 * var(--pc-scale));
  left: 50%;
  margin: 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (min-width: 761px) {
  .page-service-demolition__head::before,
  .page-service-demolition__head::after,
  .page-service-realestate__head::before,
  .page-service-realestate__head::after {
    position: absolute;
    display: block;
    height: 0;
    content: "";
    border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-service-demolition__head::before,
  .page-service-realestate__head::before {
    top: calc(16 * var(--pc-scale));
    left: calc(600 * var(--pc-scale));
    right: 0;
    width: auto;
  }

  .page-service-demolition__head::after,
  .page-service-realestate__head::after {
    top: calc(41 * var(--pc-scale));
    left: 0;
    width: calc(840 * var(--pc-scale));
  }
}

.page-service-realestate__lead {
  position: absolute;
  top: calc(130 * var(--pc-scale));
  left: 50%;
  width: calc(590 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  transform: translateX(-50%);
}

.page-service-realestate__number {
  position: absolute;
  top: 0;
  left: calc(1163 * var(--pc-scale));
  margin: 0;
  color: #a5b7d8;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(200 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.page-service-realestate__items {
  position: relative;
  width: calc(1440 * var(--pc-scale));
  height: calc(2586 * var(--pc-scale));
  margin: 0 auto;
}

.page-service-realestate__item {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(564 * var(--pc-scale));
}

.page-service-realestate__item::before {
  position: absolute;
  z-index: 0;
  top: calc(264 * var(--pc-scale));
  left: 0;
  display: block;
  width: 100%;
  height: calc(300 * var(--pc-scale));
  content: "";
  background: #f6faff;
}

.page-service-realestate__item--01 {
  top: 0;
}

.page-service-realestate__item--02 {
  top: calc(674 * var(--pc-scale));
}

.page-service-realestate__item--03 {
  top: calc(1348 * var(--pc-scale));
}

.page-service-realestate__item--04 {
  top: calc(2022 * var(--pc-scale));
}

.page-service-realestate__image {
  position: absolute;
  z-index: 1;
  top: 0;
  width: calc(856 * var(--pc-scale));
  margin: 0;
}

.page-service-realestate__image--left {
  left: 0;
}

.page-service-realestate__image--right {
  left: calc(584 * var(--pc-scale));
}

.page-service-realestate__image img {
  width: 100%;
  max-width: none;
  height: auto;
}

.page-service-realestate__card {
  position: absolute;
  z-index: 2;
  width: calc(504 * var(--pc-scale));
  padding: calc(36 * var(--pc-scale)) calc(50 * var(--pc-scale)) 0;
  background: #fff;
  border: 0;
}

.page-service-realestate__card--01 {
  top: calc(108 * var(--pc-scale));
  left: calc(766 * var(--pc-scale));
  height: calc(259 * var(--pc-scale));
}

.page-service-realestate__card--02 {
  top: calc(55 * var(--pc-scale));
  left: calc(170 * var(--pc-scale));
  height: calc(365 * var(--pc-scale));
}

.page-service-realestate__card--03 {
  top: calc(93 * var(--pc-scale));
  left: calc(766 * var(--pc-scale));
  height: calc(288 * var(--pc-scale));
}

.page-service-realestate__card--04 {
  top: calc(137 * var(--pc-scale));
  left: calc(170 * var(--pc-scale));
  height: calc(201 * var(--pc-scale));
}

.page-service-realestate__card--01,
.page-service-realestate__card--03 {
  border-right: calc(6 * var(--pc-scale)) solid var(--color-blue);
}

.page-service-realestate__card--02,
.page-service-realestate__card--04 {
  border-left: calc(6 * var(--pc-scale)) solid var(--color-blue);
}

.page-service-realestate__heading {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(30 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.page-service-realestate__text {
  margin: calc(15 * var(--pc-scale)) 0 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.page-service-realestate__button {
  position: absolute;
  top: calc(2895 * var(--pc-scale));
  left: calc(610 * var(--pc-scale));
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(14 * var(--pc-scale));
  width: calc(220 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(54 * var(--pc-scale));
  color: var(--color-blue);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.page-service-realestate__button::before,
.page-service-realestate__button::after {
  position: absolute;
  display: block;
  width: calc(200 * var(--pc-scale));
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
}

.page-service-realestate__button::before {
  top: 0;
  left: 0;
}

.page-service-realestate__button::after {
  right: 0;
  bottom: 0;
}

.page-service-realestate__button-icon {
  position: relative;
  display: block;
  width: calc(20 * var(--pc-scale));
  height: calc(20 * var(--pc-scale));
  flex: 0 0 auto;
}

.page-service-realestate__button-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(7 * var(--pc-scale));
  height: calc(7 * var(--pc-scale));
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid var(--color-blue);
  border-right: calc(2 * var(--pc-scale)) solid var(--color-blue);
  transform: translate(-65%, -50%) rotate(45deg);
}

@media (max-width: 760px) {
  .page-service-realestate {
    height: auto;
    padding: calc(80 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
    overflow: hidden;
  }

  .page-service-realestate__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    height: auto;
    padding: 0 calc(16 * var(--sp-scale));
    row-gap: calc(18 * var(--sp-scale));
    text-align: center;
  }

  .page-service-realestate__head::before,
  .page-service-realestate__head::after {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
    height: 0;
    content: '';
    border-top: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-service-realestate__head::before {
    width: calc(306 * var(--sp-scale));
    margin-top: 0;
    margin-right: calc(-16 * var(--sp-scale));
    justify-self: end;
  }

  .page-service-realestate__head::after {
    width: calc(306 * var(--sp-scale));
    margin-top: calc(18 * var(--sp-scale));
    margin-left: calc(-16 * var(--sp-scale));
    justify-self: start;
  }

  .page-service-realestate__en,
  .page-service-realestate__label,
  .page-service-realestate__lead,
  .page-service-realestate__number {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .page-service-realestate__en {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    color: rgba(29, 74, 158, 0.15);
    font-size: calc(48 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-realestate__label {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-realestate__lead {
    grid-column: 1 / -1;
    width: min(calc(286 * var(--sp-scale)), calc(100% - calc(48 * var(--sp-scale))));
    margin: 0 auto;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
  }

  .page-service-realestate__number {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin: calc(-10 * var(--sp-scale)) 0 0;
    font-size: calc(60 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-realestate__items {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: calc(48 * var(--sp-scale));
    margin-top: calc(36 * var(--sp-scale));
  }

  .page-service-realestate__item {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0 0 calc(28 * var(--sp-scale));
    background: linear-gradient(180deg, transparent 0, transparent calc(213 * var(--sp-scale)), #f6faff calc(213 * var(--sp-scale)), #f6faff 100%);
  }

  .page-service-realestate__item::before,
  .page-service-realestate__item--03::before {
    display: none;
  }

  .page-service-realestate__image {
    position: relative;
    inset: auto;
    width: calc(334 * var(--sp-scale));
    height: calc(269 * var(--sp-scale));
    margin: 0;
    overflow: hidden;
  }

  .page-service-realestate__image--left {
    align-self: flex-start;
  }

  .page-service-realestate__image--right {
    align-self: flex-end;
  }

  .page-service-realestate__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .page-service-realestate__card,
  .page-service-realestate__card--01,
  .page-service-realestate__card--02,
  .page-service-realestate__card--03,
  .page-service-realestate__card--04 {
    position: relative;
    inset: auto;
    width: calc(308 * var(--sp-scale));
    height: auto;
    min-height: 0;
    margin: calc(-56 * var(--sp-scale)) calc(31 * var(--sp-scale)) 0 auto;
    padding: calc(22 * var(--sp-scale)) calc(18 * var(--sp-scale)) calc(24 * var(--sp-scale));
    border: 0;
  }

  .page-service-realestate__item:nth-child(even) .page-service-realestate__card {
    margin-right: auto;
    margin-left: calc(31 * var(--sp-scale));
  }

  .page-service-realestate__card--01,
  .page-service-realestate__card--03 {
    border-right: calc(6 * var(--sp-scale)) solid var(--color-blue);
  }

  .page-service-realestate__card--02,
  .page-service-realestate__card--04 {
    border-left: calc(6 * var(--sp-scale)) solid var(--color-blue);
  }

  .page-service-realestate__heading {
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.55;
  }

  .page-service-realestate__text {
    margin-top: calc(12 * var(--sp-scale));
    font-size: calc(12.5 * var(--sp-scale));
    line-height: 1.8;
  }

  .page-service-realestate__button {
    position: relative;
    inset: auto;
    display: flex;
    width: calc(220 * var(--sp-scale));
    height: calc(40 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale)) 0 calc(54 * var(--sp-scale));
    margin: calc(48 * var(--sp-scale)) auto 0;
    gap: calc(14 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .page-service-realestate__button::before,
  .page-service-realestate__button::after {
    display: block;
    width: calc(200 * var(--sp-scale));
    border-top-width: calc(2 * var(--sp-scale));
  }

  .page-service-realestate__button-icon {
    width: calc(20 * var(--sp-scale));
    height: calc(20 * var(--sp-scale));
  }

  .page-service-realestate__button-icon::before {
    width: calc(7 * var(--sp-scale));
    height: calc(7 * var(--sp-scale));
    border-top-width: calc(2 * var(--sp-scale));
    border-right-width: calc(2 * var(--sp-scale));
  }
}




.page-service-process {
  position: relative;
  height: calc(2107 * var(--pc-scale));
  padding-top: calc(120 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.page-service-process__head {
  position: relative;
  height: calc(139 * var(--pc-scale));
}

.page-service-process__head::before,
.page-service-process__head::after {
  position: absolute;
  display: block;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-service-process__head::before {
  top: calc(16 * var(--pc-scale));
  left: calc(600 * var(--pc-scale));
  width: calc(840 * var(--pc-scale));
}

.page-service-process__head::after {
  top: calc(41 * var(--pc-scale));
  left: 0;
  width: calc(840 * var(--pc-scale));
}

.page-service-process__en {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: calc(268 * var(--pc-scale));
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-service-process__label {
  position: absolute;
  top: calc(16 * var(--pc-scale));
  left: 50%;
  z-index: 2;
  margin: 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-service-process__lead {
  position: absolute;
  top: calc(110 * var(--pc-scale));
  left: 50%;
  width: calc(382 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  transform: translateX(-50%);
}

.page-service-process__timeline {
  position: relative;
  width: calc(733 * var(--pc-scale));
  height: auto;
  margin: calc(60 * var(--pc-scale)) auto 0;
}

.page-service-process__timeline-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.page-service-process__timeline::before {
  display: none;
}

.page-service-process__step {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(148 * var(--pc-scale));
}

.page-service-process__step:nth-child(1) {
  top: 0;
}

.page-service-process__step:nth-child(2) {
  top: calc(220 * var(--pc-scale));
}

.page-service-process__step:nth-child(3) {
  top: calc(440 * var(--pc-scale));
}

.page-service-process__step:nth-child(4) {
  top: calc(660 * var(--pc-scale));
}

.page-service-process__step:nth-child(5) {
  top: calc(880 * var(--pc-scale));
}

.page-service-process__step:nth-child(6) {
  top: calc(1100 * var(--pc-scale));
}

.page-service-process__step:nth-child(7) {
  top: calc(1320 * var(--pc-scale));
}

.page-service-process__step:nth-child(8) {
  top: calc(1540 * var(--pc-scale));
}

.page-service-process__step::before {
  position: absolute;
  top: calc(40 * var(--pc-scale));
  display: block;
  width: calc(59 * var(--pc-scale));
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-service-process__step::after {
  position: absolute;
  top: calc(212 * var(--pc-scale));
  left: calc(362 * var(--pc-scale));
  z-index: 2;
  display: block;
  width: calc(8 * var(--pc-scale));
  height: calc(8 * var(--pc-scale));
  content: "";
  background: var(--color-blue);
  border-radius: 50%;
}

.page-service-process__step:last-child::after {
  display: none;
}

.page-service-process__step--right::before {
  left: calc(260 * var(--pc-scale));
}

.page-service-process__step--left::before {
  left: calc(413 * var(--pc-scale));
}

.page-service-process__image {
  position: absolute;
  top: 0;
  width: calc(240 * var(--pc-scale));
  height: calc(148 * var(--pc-scale));
  margin: 0;
}

.page-service-process__step--right .page-service-process__image {
  left: calc(20 * var(--pc-scale));
}

.page-service-process__step--left .page-service-process__image {
  right: calc(20 * var(--pc-scale));
}

.page-service-process__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.page-service-process__number {
  position: absolute;
  top: 0;
  left: calc(335 * var(--pc-scale));
  margin: 0;
  color: var(--color-blue);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(80 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.page-service-process__content {
  position: absolute;
  top: calc(21 * var(--pc-scale));
  width: calc(306 * var(--pc-scale));
}

.page-service-process__step--right .page-service-process__content {
  left: calc(426 * var(--pc-scale));
}

.page-service-process__step--left .page-service-process__content {
  right: calc(426 * var(--pc-scale));
  width: calc(301 * var(--pc-scale));
}

.page-service-process__heading {
  margin: 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.page-service-process__text {
  margin: calc(6 * var(--pc-scale)) 0 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 760px) {
  .page-service-process {
    height: auto;
    padding: calc(80 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
    overflow: hidden;
  }

  .page-service-process__head {
    display: grid;
    width: 100%;
    height: auto;
    padding: 0 calc(16 * var(--sp-scale));
    row-gap: calc(18 * var(--sp-scale));
    text-align: center;
  }

  .page-service-process__head::before,
  .page-service-process__head::after {
    position: relative;
    inset: auto;
    display: block;
    grid-column: 1;
    grid-row: 1;
    height: 0;
    border-top-width: calc(1 * var(--sp-scale));
  }

  .page-service-process__head::before {
    width: calc(306 * var(--sp-scale));
    margin-top: 0;
    margin-right: calc(-16 * var(--sp-scale));
    justify-self: end;
  }

  .page-service-process__head::after {
    width: calc(306 * var(--sp-scale));
    margin-top: calc(18 * var(--sp-scale));
    margin-left: calc(-16 * var(--sp-scale));
    justify-self: start;
  }

  .page-service-process__en,
  .page-service-process__label,
  .page-service-process__lead {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .page-service-process__en {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    color: rgba(29, 74, 158, 0.15);
    font-size: calc(48 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-process__label {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin: calc(10 * var(--sp-scale)) 0 0;
    font-size: calc(18 * var(--sp-scale));
    line-height: 1;
  }

  .page-service-process__lead {
    width: min(calc(286 * var(--sp-scale)), calc(100% - calc(48 * var(--sp-scale))));
    margin: 0 auto;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
  }

  .page-service-process__timeline {
    display: block;
    width: min(calc(330 * var(--sp-scale)), calc(100% - calc(60 * var(--sp-scale))));
    height: auto;
    margin: calc(34 * var(--sp-scale)) auto 0;
    overflow: visible;
  }

  .page-service-process__timeline-image {
    width: 100%;
    height: auto;
  }

  .page-service-process__timeline::before {
    display: none;
  }

  .page-service-process__step,
  .page-service-process__step:nth-child(n) {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: calc(74 * var(--sp-scale)) 1fr;
    width: 100%;
    height: auto;
    min-height: 0;
    column-gap: calc(16 * var(--sp-scale));
  }

  .page-service-process__step::before,
  .page-service-process__step::after {
    display: none;
  }

  .page-service-process__number {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: calc(64 * var(--sp-scale));
    line-height: 0.9;
  }

  .page-service-process__image {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: min(calc(240 * var(--sp-scale)), 100%);
    height: auto;
  }

  .page-service-process__image img {
    height: auto;
  }

  .page-service-process__content,
  .page-service-process__step--right .page-service-process__content,
  .page-service-process__step--left .page-service-process__content {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin-top: calc(12 * var(--sp-scale));
  }

  .page-service-process__heading {
    font-size: calc(22 * var(--sp-scale));
    line-height: 1.55;
  }

  .page-service-process__text {
    margin-top: calc(8 * var(--sp-scale));
    font-size: calc(14 * var(--sp-scale));
    line-height: 1.8;
  }
}




/* Beginner/service SP FV flow layout */
@media (max-width: 760px) {
  .page-beginner .page-beginner-fv__canvas {
    display: grid;
    grid-template-columns: calc(64 * var(--sp-scale)) minmax(0, 1fr);
    grid-template-rows: calc(52 * var(--sp-scale)) calc(123 * var(--sp-scale)) calc(30 * var(--sp-scale)) calc(20 * var(--sp-scale)) auto;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .page-beginner .page-beginner-fv__line,
  .page-beginner .page-beginner-fv__title,
  .page-beginner .page-beginner-fv__lead {
    position: absolute;
    inset: auto;
  }

  .page-beginner .page-beginner-fv__en {
    position: absolute;
    inset: auto;
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(290 * var(--sp-scale));
    height: calc(50 * var(--sp-scale));
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: rotate(90deg);
    transform-origin: left top;
  }

  .page-beginner .page-beginner-fv__line--left {
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: 0;
    height: calc(448 * var(--sp-scale));
    justify-self: auto;
  }

  .page-beginner .page-beginner-fv__line--right {
    top: calc(132 * var(--sp-scale));
    left: calc(267 * var(--sp-scale));
    width: 0;
    height: calc(95 * var(--sp-scale));
    margin-left: 0;
  }

  .page-beginner .page-beginner-fv__line--top {
    top: calc(182 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(253 * var(--sp-scale));
    height: 0;
  }

  .page-beginner .page-beginner-fv__line--bottom {
    top: calc(212 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(203 * var(--sp-scale));
    height: 0;
  }

  .page-beginner .page-beginner-fv__title {
    z-index: 1;
    top: calc(175 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(253 * var(--sp-scale));
    margin: 0;
  }

  .page-beginner .page-beginner-fv__lead {
    top: calc(232 * var(--sp-scale));
    left: calc(65 * var(--sp-scale));
    width: calc(252 * var(--sp-scale));
    margin: 0;
  }

  .page-service .page-service-fv__canvas {
    display: grid;
    grid-template-columns: calc(64 * var(--sp-scale)) minmax(0, 1fr);
    grid-template-rows: calc(52 * var(--sp-scale)) calc(123 * var(--sp-scale)) calc(30 * var(--sp-scale)) calc(20 * var(--sp-scale)) auto;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .page-service .page-service-fv__line,
  .page-service .page-service-fv__title,
  .page-service .page-service-fv__lead {
    position: absolute;
    inset: auto;
  }

  .page-service .page-service-fv__en {
    position: absolute;
    inset: auto;
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(290 * var(--sp-scale));
    height: calc(50 * var(--sp-scale));
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: rotate(90deg);
    transform-origin: left top;
  }

  .page-service .page-service-fv__line--left {
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: 0;
    height: calc(448 * var(--sp-scale));
    justify-self: auto;
  }

  .page-service .page-service-fv__line--right {
    top: calc(132 * var(--sp-scale));
    left: calc(180 * var(--sp-scale));
    width: 0;
    height: calc(95 * var(--sp-scale));
    margin-left: 0;
  }

  .page-service .page-service-fv__line--top {
    top: calc(182 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(166 * var(--sp-scale));
    height: 0;
  }

  .page-service .page-service-fv__line--bottom {
    top: calc(212 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(116 * var(--sp-scale));
    height: 0;
  }

  .page-service .page-service-fv__title {
    z-index: 1;
    top: calc(175 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(253 * var(--sp-scale));
    margin: 0;
  }

  .page-service .page-service-fv__lead {
    top: calc(232 * var(--sp-scale));
    left: calc(65 * var(--sp-scale));
    width: calc(252 * var(--sp-scale));
    margin: 0;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.7;
  }
}
/* End beginner/service SP FV flow layout */

/* Works archive FV */
.archive-works-fv .page-service-fv__line--right {
  left: calc(457 * var(--pc-scale));
}

.archive-works-fv .page-service-fv__line--top {
  width: calc(436 * var(--pc-scale));
}

.archive-works-fv .page-service-fv__line--bottom {
  width: calc(388 * var(--pc-scale));
}

@media (max-width: 760px) {
  .archive-works-fv .page-service-fv__line--right {
    left: min(calc(315 * var(--sp-scale)), calc(100% - calc(40 * var(--sp-scale))));
  }

  .archive-works-fv .page-service-fv__line--top {
    width: min(calc(286 * var(--sp-scale)), calc(100% - calc(82 * var(--sp-scale))));
  }

  .archive-works-fv .page-service-fv__line--bottom {
    width: min(calc(291 * var(--sp-scale)), calc(100% - calc(48 * var(--sp-scale))));
  }

  .archive-works-fv .page-service-fv__title {
    font-size: calc(32 * var(--sp-scale));
  }
}
/* End works archive FV */

/* Works archive list */
.archive-works-list {
  padding: calc(80 * var(--pc-scale)) 0 calc(120 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.archive-works-list__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100%, calc(1199 * var(--pc-scale)));
  margin: 0 auto;
  gap: calc(75 * var(--pc-scale));
}

.archive-works-list__content {
  display: flex;
  width: calc(695 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: calc(80 * var(--pc-scale));
}

.archive-works-list__cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, calc(310 * var(--pc-scale)));
  gap: calc(92 * var(--pc-scale)) calc(75 * var(--pc-scale));
}

.archive-works-card {
  position: relative;
  width: calc(310 * var(--pc-scale));
  min-height: calc(425 * var(--pc-scale));
  filter: drop-shadow(calc(2 * var(--pc-scale)) calc(2 * var(--pc-scale)) calc(5 * var(--pc-scale)) rgba(155, 181, 229, 0.4));
}

.archive-works-card__link {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.archive-works-card__image {
  width: 100%;
  height: calc(192 * var(--pc-scale));
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}

.archive-works-card__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.archive-works-card__body {
  display: flex;
  min-height: calc(233 * var(--pc-scale));
  flex-direction: column;
  align-items: center;
  gap: calc(12 * var(--pc-scale));
  padding: calc(20 * var(--pc-scale));
  background: #fff;
}

.archive-works-card__title {
  width: calc(270 * var(--pc-scale));
  margin: 0;
  color: var(--color-blue);
  font-size: calc(22 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: calc(3 * var(--pc-scale));
  white-space: normal;
}

.archive-works-card__area {
  margin: 0;
  color: #222;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.archive-works-card__text {
  width: calc(270 * var(--pc-scale));
  margin: 0;
  color: #222;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.7;
  text-align: justify;
}

.archive-works-card__text span {
  color: #a8a8a8;
  text-decoration: underline;
}

.archive-works-card__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(76 * var(--pc-scale));
  width: calc(270 * var(--pc-scale));
  height: calc(42 * var(--pc-scale));
  margin-top: auto;
  padding: 0 calc(10 * var(--pc-scale)) 0 calc(91 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.archive-works-card__detail-icon {
  position: relative;
  display: block;
  width: calc(18 * var(--pc-scale));
  height: calc(18 * var(--pc-scale));
  flex: 0 0 auto;
}

.archive-works-card__detail-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(6 * var(--pc-scale));
  height: calc(6 * var(--pc-scale));
  content: "";
  border-top: calc(1.5 * var(--pc-scale)) solid currentColor;
  border-right: calc(1.5 * var(--pc-scale)) solid currentColor;
  transform: translate(-65%, -50%) rotate(45deg);
}

.archive-works-card__tag {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: calc(25 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.archive-works-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(22 * var(--pc-scale));
}

.archive-works-pagination .page-numbers,
.archive-works-pagination__item,
.archive-works-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: calc(10 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  color: var(--color-blue);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.archive-works-pagination .page-numbers.prev,
.archive-works-pagination .page-numbers.next,
.archive-works-pagination__arrow {
  width: calc(40 * var(--pc-scale));
  min-width: calc(40 * var(--pc-scale));
  border: calc(1 * var(--pc-scale)) solid var(--color-blue);
}

.archive-works-pagination .page-numbers.current,
.archive-works-pagination__item.is-current {
  min-width: calc(42 * var(--pc-scale));
  padding: 0 calc(16 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-weight: 800;
}

.archive-works-sidebar {
  display: flex;
  width: calc(369 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(60 * var(--pc-scale));
}

.archive-works-filter {
  width: 100%;
}

.archive-works-filter__title {
  display: flex;
  align-items: center;
  min-height: calc(40 * var(--pc-scale));
  margin: 0;
  padding: 0 0 calc(10 * var(--pc-scale)) calc(10 * var(--pc-scale));
  border-bottom: calc(2 * var(--pc-scale)) solid #a5b7d8;
  color: var(--color-blue);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(30 * var(--pc-scale));
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.archive-works-filter__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20 * var(--pc-scale));
  padding: 0 0 0 calc(10 * var(--pc-scale));
  margin: calc(20 * var(--pc-scale)) 0 0;
  list-style: none;
}

.archive-works-filter__item {
  display: inline-flex;
  color: #111;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.archive-works-filter__item:hover {
  color: #3d71c3;
}

.archive-works-filter__item.is-active {
  color: #3d71c3;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 760px) {
  .archive-works-list {
    padding: calc(56 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
  }

  .archive-works-list__inner {
    width: min(calc(330 * var(--sp-scale)), calc(100% - calc(60 * var(--sp-scale))));
    flex-direction: column;
    gap: calc(48 * var(--sp-scale));
    margin: 0 auto;
  }

  .archive-works-list__content {
    width: 100%;
    gap: calc(48 * var(--sp-scale));
  }

  .archive-works-list__cards {
    justify-content: center;
    grid-template-columns: minmax(0, calc(310 * var(--sp-scale)));
    gap: calc(48 * var(--sp-scale));
  }

  .archive-works-card {
    width: min(calc(310 * var(--sp-scale)), 100%);
    min-height: 0;
    filter: drop-shadow(calc(2 * var(--sp-scale)) calc(2 * var(--sp-scale)) calc(5 * var(--sp-scale)) rgba(155, 181, 229, 0.4));
  }

  .archive-works-card__link {
    display: grid;
    grid-template-rows: auto auto;
    height: auto;
    padding: calc(15 * var(--sp-scale)) calc(15 * var(--sp-scale)) calc(18 * var(--sp-scale));
    background: #fff;
  }

  .archive-works-card__image {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: calc(174 * var(--sp-scale));
    aspect-ratio: auto;
  }

  .archive-works-card__body {
    grid-row: 2;
    grid-column: 1;
    height: auto;
    min-height: 0;
    gap: calc(7 * var(--sp-scale));
    padding: calc(14 * var(--sp-scale)) 0 0;
  }

  .archive-works-card__title,
  .archive-works-card__text,
  .archive-works-card__detail {
    width: 100%;
  }

  .archive-works-card__title {
    font-size: calc(18 * var(--sp-scale));
    line-height: 1.35;
  }

  .archive-works-card__area,
  .archive-works-card__text,
  .archive-works-card__detail,
  .archive-works-card__tag {
    font-size: calc(12 * var(--sp-scale));
  }

  .archive-works-card__text {
    line-height: 1.7;
  }

  .archive-works-card__detail {
    height: calc(32 * var(--sp-scale));
    gap: calc(68 * var(--sp-scale));
    margin-top: calc(5 * var(--sp-scale));
  }

  .archive-works-card__detail-icon {
    width: calc(18 * var(--sp-scale));
    height: calc(18 * var(--sp-scale));
  }

  .archive-works-card__detail-icon::before {
    width: calc(6 * var(--sp-scale));
    height: calc(6 * var(--sp-scale));
  }

  .archive-works-card__tag {
    position: relative;
    inset: auto;
    z-index: 2;
    grid-row: 1;
    grid-column: 1;
    justify-self: end;
    align-self: start;
    width: auto;
    height: calc(22 * var(--sp-scale));
    padding: 0 calc(8 * var(--sp-scale));
  }

  .archive-works-pagination {
    flex-wrap: wrap;
    gap: calc(18 * var(--sp-scale));
  }

  .archive-works-pagination .page-numbers,
  .archive-works-pagination__item {
    min-width: calc(10 * var(--sp-scale));
    height: calc(40 * var(--sp-scale));
    font-size: calc(24 * var(--sp-scale));
  }

  .archive-works-pagination__arrow {
    height: calc(40 * var(--sp-scale));
    font-size: calc(24 * var(--sp-scale));
  }

  .archive-works-pagination .page-numbers.prev,
  .archive-works-pagination .page-numbers.next,
  .archive-works-pagination__arrow {
    width: calc(40 * var(--sp-scale));
    min-width: calc(40 * var(--sp-scale));
  }

  .archive-works-pagination .page-numbers.current,
  .archive-works-pagination__item.is-current {
    min-width: calc(42 * var(--sp-scale));
    padding: 0 calc(16 * var(--sp-scale));
  }

  .archive-works-sidebar {
    width: 100%;
    gap: calc(48 * var(--sp-scale));
  }

  .archive-works-filter__title {
    min-height: calc(40 * var(--sp-scale));
    padding: 0 0 calc(10 * var(--sp-scale)) calc(10 * var(--sp-scale));
    font-size: calc(30 * var(--sp-scale));
  }

  .archive-works-filter__list {
    gap: calc(20 * var(--sp-scale));
    padding-left: calc(10 * var(--sp-scale));
    margin-top: calc(20 * var(--sp-scale));
  }

  .archive-works-filter__item {
    font-size: calc(16 * var(--sp-scale));
  }

  .archive-works-filter__item.is-active {
    font-size: calc(15 * var(--sp-scale));
  }
}

/* End works archive list */

/* Works single detail */
.single-works-detail {
  padding: calc(var(--header-height) + (190 * var(--pc-scale))) 0 calc(120 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.single-works-detail__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100%, calc(1200 * var(--pc-scale)));
  margin: 0 auto;
  gap: calc(74 * var(--pc-scale));
}

.single-works-detail__main {
  display: flex;
  width: calc(696 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: calc(76 * var(--pc-scale));
}

.single-works-detail__article {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(50 * var(--pc-scale));
}

.single-works-detail__primary {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(30 * var(--pc-scale));
}

.single-works-detail__head {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(15 * var(--pc-scale));
}

.single-works-detail__title {
  width: 100%;
  margin: 0;
  padding: 0 calc(16 * var(--pc-scale)) calc(20 * var(--pc-scale)) 0;
  border-bottom: calc(2 * var(--pc-scale)) solid #a5b7d8;
  color: #222;
  font-size: calc(30 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.single-works-detail__meta {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--pc-scale));
}

.single-works-detail__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(80 * var(--pc-scale));
  height: calc(25 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.single-works-detail__date {
  color: #797979;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.single-works-detail__overview {
  display: flex;
  width: 100%;
  min-height: calc(473 * var(--pc-scale));
  align-items: flex-start;
  gap: calc(34 * var(--pc-scale));
  padding: calc(30 * var(--pc-scale)) calc(31 * var(--pc-scale));
  border-left: calc(6 * var(--pc-scale)) solid var(--color-blue);
  background: #f6faff;
}

.single-works-detail__compare {
  display: flex;
  width: calc(300 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: calc(10 * var(--pc-scale));
}

.single-works-detail__photo {
  position: relative;
  width: 100%;
  height: calc(186 * var(--pc-scale));
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}

.single-works-detail__photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.single-works-detail__photo-label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(25 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.single-works-detail__photo-label--after {
  padding-right: calc(16 * var(--pc-scale));
  padding-left: calc(16 * var(--pc-scale));
}

.single-works-detail__arrow {
  display: block;
  width: calc(32 * var(--pc-scale));
  height: calc(21 * var(--pc-scale));
  background: var(--color-blue);
  clip-path: polygon(0 0, 100% 0, 100% 52%, 50% 100%, 0 52%);
}

.single-works-detail__specs {
  display: flex;
  width: calc(300 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  margin: 0;
}

.single-works-detail__spec-row {
  display: grid;
  min-height: calc(44 * var(--pc-scale));
  grid-template-columns: calc(97 * var(--pc-scale)) minmax(0, 1fr);
  border-bottom: calc(1 * var(--pc-scale)) solid #a5b7d8;
}

.single-works-detail__spec-row dt,
.single-works-detail__spec-row dd {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: calc(16 * var(--pc-scale));
  letter-spacing: 0.06em;
  line-height: 1.5;
  white-space: nowrap;
}

.single-works-detail__spec-row dt {
  padding-left: calc(15 * var(--pc-scale));
  color: var(--color-blue);
  font-weight: 700;
}

.single-works-detail__spec-row dd {
  color: #222;
  font-weight: 400;
}

.single-works-detail__text {
  width: 100%;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.single-works-detail__text p {
  margin: 0;
}

.single-works-detail__text p + p {
  margin-top: 1em;
}

.single-works-detail__section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24 * var(--pc-scale));
}

.single-works-detail__section-title {
  display: inline-flex;
  align-items: center;
  min-height: calc(53 * var(--pc-scale));
  margin: 0;
  padding: calc(10 * var(--pc-scale)) 0 calc(10 * var(--pc-scale)) calc(25 * var(--pc-scale));
  border-left: calc(5 * var(--pc-scale)) solid var(--color-blue);
  color: #222;
  font-size: calc(22 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.single-works-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(100 * var(--pc-scale));
}

.single-works-nav__link,
.single-works-nav__back {
  display: inline-flex;
  align-items: center;
  color: var(--color-blue);
  font-size: calc(18 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.single-works-nav__link {
  gap: calc(3 * var(--pc-scale));
}

.single-works-nav__link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.single-works-nav__icon {
  display: block;
  width: calc(10 * var(--pc-scale));
  height: calc(10 * var(--pc-scale));
  border-top: calc(2 * var(--pc-scale)) solid currentColor;
  border-right: calc(2 * var(--pc-scale)) solid currentColor;
}

.single-works-nav__link--prev .single-works-nav__icon {
  transform: rotate(-135deg);
}

.single-works-nav__link--next .single-works-nav__icon {
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .single-works-detail {
    padding: calc(104 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
  }

  .single-works-detail__inner {
    width: min(calc(330 * var(--sp-scale)), calc(100% - calc(60 * var(--sp-scale))));
    flex-direction: column;
    gap: calc(56 * var(--sp-scale));
    margin: 0 auto;
  }

  .single-works-detail__main {
    width: 100%;
    gap: calc(48 * var(--sp-scale));
  }

  .single-works-detail__article {
    gap: calc(42 * var(--sp-scale));
  }

  .single-works-detail__primary {
    gap: calc(24 * var(--sp-scale));
  }

  .single-works-detail__head {
    gap: calc(14 * var(--sp-scale));
  }

  .single-works-detail__title {
    padding: 0 0 calc(10 * var(--sp-scale));
    border-bottom: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.32);
    font-size: calc(22 * var(--sp-scale));
    line-height: 1.5;
  }

  .single-works-detail__meta {
    gap: calc(18 * var(--sp-scale));
  }

  .single-works-detail__tag {
    min-width: calc(80 * var(--sp-scale));
    height: calc(25 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale));
    font-size: calc(15 * var(--sp-scale));
  }

  .single-works-detail__date {
    font-size: calc(16 * var(--sp-scale));
  }

  .single-works-detail__overview {
    flex-direction: column;
    min-height: 0;
    gap: calc(24 * var(--sp-scale));
    padding: calc(18 * var(--sp-scale)) calc(16 * var(--sp-scale)) calc(22 * var(--sp-scale));
    border-left-width: calc(5 * var(--sp-scale));
  }

  .single-works-detail__compare,
  .single-works-detail__specs {
    width: 100%;
  }

  .single-works-detail__compare {
    gap: calc(10 * var(--sp-scale));
  }

  .single-works-detail__photo {
    position: relative;
    inset: auto;
    display: grid;
    height: auto;
    aspect-ratio: 300 / 186;
  }

  .single-works-detail__photo img {
    grid-row: 1;
    grid-column: 1;
  }

  .single-works-detail__photo-label {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-row: 1;
    grid-column: 1;
    width: fit-content;
    height: calc(25 * var(--sp-scale));
    align-self: start;
    justify-self: start;
    padding: 0 calc(10 * var(--sp-scale));
    font-size: calc(15 * var(--sp-scale));
  }

  .single-works-detail__photo-label--after {
    padding-right: calc(16 * var(--sp-scale));
    padding-left: calc(16 * var(--sp-scale));
  }

  .single-works-detail__arrow {
    width: calc(32 * var(--sp-scale));
    height: calc(21 * var(--sp-scale));
  }

  .single-works-detail__spec-row {
    min-height: calc(38 * var(--sp-scale));
    grid-template-columns: calc(84 * var(--sp-scale)) minmax(0, 1fr);
  }

  .single-works-detail__spec-row dt,
  .single-works-detail__spec-row dd {
    font-size: calc(15 * var(--sp-scale));
    white-space: normal;
  }

  .single-works-detail__spec-row dt {
    padding-left: calc(12 * var(--sp-scale));
  }

  .single-works-detail__text {
    font-size: calc(16 * var(--sp-scale));
    line-height: 2;
  }

  .single-works-detail__section {
    gap: calc(20 * var(--sp-scale));
  }

  .single-works-detail__section-title {
    min-height: calc(48 * var(--sp-scale));
    padding: calc(8 * var(--sp-scale)) 0 calc(8 * var(--sp-scale)) calc(16 * var(--sp-scale));
    border-left: calc(6 * var(--sp-scale)) solid var(--color-blue);
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.75;
  }

  .single-works-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: calc(12 * var(--sp-scale));
  }

  .single-works-nav__link,
  .single-works-nav__back {
    font-size: calc(14 * var(--sp-scale));
  }

  .single-works-nav__back {
    width: auto;
    justify-content: center;
  }

  .single-works-nav__icon {
    width: calc(10 * var(--sp-scale));
    height: calc(10 * var(--sp-scale));
  }

  .single-works-detail__sidebar {
    width: 100%;
    margin: 0;
    gap: calc(44 * var(--sp-scale));
  }
}

/* End works single detail */

/* News index FV */
.page-news-fv .page-service-fv__lead {
  width: calc(510 * var(--pc-scale));
}

@media (max-width: 760px) {
  .page-news-fv .page-service-fv__lead {
    width: min(calc(310 * var(--sp-scale)), calc(100% - calc(76 * var(--sp-scale))));
  }
}
/* End news index FV */

/* News index list */
.page-news-list {
  padding: calc(80 * var(--pc-scale)) 0 calc(120 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.page-news-list__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100%, calc(1198 * var(--pc-scale)));
  margin: 0 auto;
  gap: calc(74 * var(--pc-scale));
}

.page-news-list__content {
  display: flex;
  width: calc(696 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: calc(256 * var(--pc-scale));
}

.page-news-list__items {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
}

.page-news-list__row {
  display: flex;
  align-items: center;
  gap: calc(24 * var(--pc-scale));
  width: 100%;
  min-height: calc(69 * var(--pc-scale));
  padding: calc(20 * var(--pc-scale)) calc(62 * var(--pc-scale)) calc(20 * var(--pc-scale)) calc(20 * var(--pc-scale));
  border-bottom: calc(1 * var(--pc-scale)) solid #a8a8a8;
  white-space: nowrap;
}

.page-news-list__date {
  flex: 0 0 calc(81 * var(--pc-scale));
  color: #a8a8a8;
  font-family: var(--font-number);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
}

.page-news-list__title {
  min-width: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(22 * var(--pc-scale));
}

.page-news-pagination .page-numbers,
.page-news-pagination__item,
.page-news-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: calc(10 * var(--pc-scale));
  height: calc(40 * var(--pc-scale));
  color: var(--color-blue);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.page-news-pagination .page-numbers.prev,
.page-news-pagination .page-numbers.next,
.page-news-pagination__arrow {
  width: calc(40 * var(--pc-scale));
  min-width: calc(40 * var(--pc-scale));
  border: calc(1 * var(--pc-scale)) solid var(--color-blue);
}

.page-news-pagination .page-numbers.current,
.page-news-pagination__item.is-current {
  min-width: calc(42 * var(--pc-scale));
  padding: 0 calc(16 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-weight: 800;
}

.page-news-sidebar {
  display: flex;
  width: calc(369 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(60 * var(--pc-scale));
}

.page-news-filter {
  width: 100%;
}

.page-news-filter__title {
  display: flex;
  align-items: center;
  min-height: calc(40 * var(--pc-scale));
  margin: 0;
  padding: 0 0 calc(10 * var(--pc-scale)) calc(10 * var(--pc-scale));
  border-bottom: calc(2 * var(--pc-scale)) solid #a5b7d8;
  color: var(--color-blue);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(30 * var(--pc-scale));
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-news-filter__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20 * var(--pc-scale));
  padding: 0 0 0 calc(10 * var(--pc-scale));
  margin: calc(20 * var(--pc-scale)) 0 0;
  list-style: none;
}

.page-news-filter__item {
  display: inline-flex;
  color: #111;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.page-news-filter__item:hover {
  color: #3d71c3;
}

.page-news-filter__item.is-active {
  color: #3d71c3;
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 760px) {
  .page-news-list {
    padding: calc(58 * var(--sp-scale)) 0 calc(82 * var(--sp-scale));
  }

  .page-news-list__inner {
    width: min(calc(330 * var(--sp-scale)), calc(100% - calc(60 * var(--sp-scale))));
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: calc(56 * var(--sp-scale));
  }

  .page-news-list__content {
    width: 100%;
    align-items: stretch;
    gap: calc(50 * var(--sp-scale));
  }

  .page-news-list__items {
    width: 100%;
    font-size: calc(17 * var(--sp-scale));
    line-height: 1.6;
  }

  .page-news-list__row {
    min-height: calc(87 * var(--sp-scale));
    padding: calc(14 * var(--sp-scale)) 0 calc(15 * var(--sp-scale));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: calc(8 * var(--sp-scale));
    border-bottom: calc(1 * var(--sp-scale)) solid rgba(120, 120, 120, 0.45);
    white-space: normal;
  }

  .page-news-list__date {
    flex: none;
    color: #a8a8a8;
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.4;
  }

  .page-news-list__title {
    width: 100%;
    margin: 0;
    font-size: calc(17 * var(--sp-scale));
    line-height: 1.6;
    overflow: visible;
    text-overflow: clip;
  }

  .page-news-pagination {
    flex-wrap: nowrap;
    gap: calc(18 * var(--sp-scale));
  }

  .page-news-pagination .page-numbers,
  .page-news-pagination__item,
  .page-news-pagination__arrow {
    min-width: calc(10 * var(--sp-scale));
    height: calc(40 * var(--sp-scale));
    font-size: calc(24 * var(--sp-scale));
  }

  .page-news-pagination .page-numbers.prev,
  .page-news-pagination .page-numbers.next,
  .page-news-pagination__arrow {
    width: calc(40 * var(--sp-scale));
    min-width: calc(40 * var(--sp-scale));
  }

  .page-news-pagination .page-numbers.current,
  .page-news-pagination__item.is-current {
    min-width: calc(42 * var(--sp-scale));
    padding: 0 calc(16 * var(--sp-scale));
  }

  .page-news-sidebar {
    width: 100%;
    margin: 0;
    gap: calc(48 * var(--sp-scale));
  }

  .page-news-filter__title {
    min-height: calc(40 * var(--sp-scale));
    padding: 0 0 calc(10 * var(--sp-scale)) calc(10 * var(--sp-scale));
    border-bottom-width: calc(1 * var(--sp-scale));
    font-size: calc(30 * var(--sp-scale));
  }

  .page-news-filter__list {
    gap: calc(20 * var(--sp-scale));
    padding-left: calc(10 * var(--sp-scale));
    margin-top: calc(20 * var(--sp-scale));
  }

  .page-news-filter__item {
    font-size: calc(16 * var(--sp-scale));
    line-height: 1;
  }

  .page-news-filter__item.is-active {
    font-size: calc(15 * var(--sp-scale));
  }
}
/* End news index list */

/* News single detail */
.single-news-detail {
  padding: calc(var(--header-height) + (60 * var(--pc-scale))) 0 calc(120 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
  color: #222;
}

.single-news-heading {
  position: relative;
  width: min(100%, calc(1440 * var(--pc-scale)));
  height: calc(100 * var(--pc-scale));
  margin: 0 auto calc(30 * var(--pc-scale));
}

.single-news-heading::before,
.single-news-heading::after {
  position: absolute;
  display: block;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.single-news-heading::before {
  top: calc(16 * var(--pc-scale));
  left: calc(612 * var(--pc-scale));
  width: calc(828 * var(--pc-scale));
}

.single-news-heading::after {
  top: calc(40 * var(--pc-scale));
  left: 0;
  width: calc(828 * var(--pc-scale));
}

.single-news-heading__title-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: calc(169 * var(--pc-scale));
  height: calc(100 * var(--pc-scale));
  margin-left: calc(636 * var(--pc-scale));
}

.single-news-heading__en,
.single-news-heading__label {
  grid-area: 1 / 1;
  width: 100%;
  text-align: center;
}

.single-news-heading__en {
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.single-news-heading__label {
  z-index: 1;
  margin: calc(16 * var(--pc-scale)) 0 0;
  color: var(--color-blue);
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.single-news-detail__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(100%, calc(1199 * var(--pc-scale)));
  margin: 0 auto;
  gap: calc(74 * var(--pc-scale));
}

.single-news-detail__main {
  display: flex;
  width: calc(696 * var(--pc-scale));
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: calc(80 * var(--pc-scale));
  overflow: hidden;
}

.single-news-detail__article {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(30 * var(--pc-scale));
}

.single-news-detail__primary {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(33 * var(--pc-scale));
}

.single-news-detail__head {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(15 * var(--pc-scale));
}

.single-news-detail__title {
  width: 100%;
  margin: 0;
  padding: 0 calc(16 * var(--pc-scale)) calc(20 * var(--pc-scale)) 0;
  border-bottom: calc(2 * var(--pc-scale)) solid #a5b7d8;
  color: #222;
  font-size: calc(30 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.single-news-detail__meta {
  display: flex;
  align-items: center;
  gap: calc(14 * var(--pc-scale));
}

.single-news-detail__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(90 * var(--pc-scale));
  height: calc(25 * var(--pc-scale));
  padding: 0 calc(10 * var(--pc-scale));
  color: #fff;
  background: var(--color-blue);
  font-size: calc(15 * var(--pc-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.single-news-detail__date {
  color: #797979;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.single-news-detail__image {
  width: 100%;
  height: calc(350 * var(--pc-scale));
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}

.single-news-detail__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.single-news-detail__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(60 * var(--pc-scale));
  overflow: hidden;
}

.single-news-detail__text {
  width: 100%;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.single-news-detail__text p {
  margin: 0;
}

.single-news-detail__text p + p {
  margin-top: 1em;
}

.single-news-detail__section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24 * var(--pc-scale));
}

.single-news-detail__section-title {
  display: inline-flex;
  align-items: center;
  min-height: calc(53 * var(--pc-scale));
  margin: 0;
  padding: calc(10 * var(--pc-scale)) 0 calc(10 * var(--pc-scale)) calc(25 * var(--pc-scale));
  border-left: calc(5 * var(--pc-scale)) solid var(--color-blue);
  color: #222;
  font-size: calc(22 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.single-news-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(100 * var(--pc-scale));
}

.single-news-nav__link,
.single-news-nav__back {
  display: inline-flex;
  align-items: center;
  color: var(--color-blue);
  font-size: calc(18 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.single-news-nav__link {
  gap: calc(3 * var(--pc-scale));
}

.single-news-nav__link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.single-news-nav__icon {
  display: block;
  width: calc(10 * var(--pc-scale));
  height: calc(10 * var(--pc-scale));
  border-top: calc(2 * var(--pc-scale)) solid currentColor;
  border-right: calc(2 * var(--pc-scale)) solid currentColor;
}

.single-news-nav__link--prev .single-news-nav__icon {
  transform: rotate(-135deg);
}

.single-news-nav__link--next .single-news-nav__icon {
  transform: rotate(45deg);
}

@media (max-width: 760px) {

  .single-news-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) calc(132 * var(--sp-scale)) minmax(0, 1fr);
    grid-template-rows: calc(18 * var(--sp-scale)) calc(30 * var(--sp-scale));
    width: 100%;
    height: auto;
    padding-top: calc(12 * var(--sp-scale));
    margin-bottom: calc(10 * var(--sp-scale));
  }

  .single-news-heading::before,
  .single-news-heading::after {
    position: absolute;
    display: block;
    width: calc(306 * var(--sp-scale));
    border-top-width: calc(1 * var(--sp-scale));
  }

  .single-news-heading::before {
    top: calc(12 * var(--sp-scale));
    left: calc(50% - calc(111 * var(--sp-scale)));
  }

  .single-news-heading::after {
    top: calc(30 * var(--sp-scale));
    left: calc(50% - calc(195 * var(--sp-scale)));
  }

  .single-news-heading__title-wrap {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
    width: calc(132 * var(--sp-scale));
    height: calc(48 * var(--sp-scale));
    margin: 0;
  }

  .single-news-heading__en {
    font-size: calc(48 * var(--sp-scale));
    text-align: center;
  }

  .single-news-heading__label {
    margin: 0;
    font-size: calc(18 * var(--sp-scale));
    line-height: 1;
    text-align: center;
  }

  .single-news-detail__inner {
    width: min(calc(310 * var(--sp-scale)), calc(100% - calc(80 * var(--sp-scale))));
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: calc(58 * var(--sp-scale));
  }

  .single-news-detail__main {
    width: 100%;
    align-items: stretch;
    gap: calc(60 * var(--sp-scale));
  }

  .single-news-detail__article {
    gap: calc(15 * var(--sp-scale));
  }

  .single-news-detail__primary {
    gap: calc(15 * var(--sp-scale));
  }

  .single-news-detail__title {
    padding: 0 0 calc(10 * var(--sp-scale));
    border-bottom-width: calc(1 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .single-news-detail__tag {
    min-width: calc(90 * var(--sp-scale));
    height: calc(25 * var(--sp-scale));
    padding: 0 calc(10 * var(--sp-scale));
    font-size: calc(15 * var(--sp-scale));
  }

  .single-news-detail__date {
    font-size: calc(16 * var(--sp-scale));
  }

  .single-news-detail__image {
    height: auto;
    aspect-ratio: 310 / 157;
  }

  .single-news-detail__body {
    gap: calc(36 * var(--sp-scale));
  }

  .single-news-detail__text {
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.8;
  }

  .single-news-detail__section {
    gap: calc(36 * var(--sp-scale));
  }

  .single-news-detail__section-title {
    min-height: auto;
    padding: calc(5 * var(--sp-scale)) 0 calc(5 * var(--sp-scale)) calc(25 * var(--sp-scale));
    border-left-width: calc(5 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.6;
  }

  .single-news-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: calc(34 * var(--sp-scale));
  }

  .single-news-nav__link,
  .single-news-nav__back {
    font-size: calc(16 * var(--sp-scale));
  }

  .single-news-nav__back {
    order: initial;
    width: auto;
    justify-content: center;
  }

  .single-news-nav__icon {
    width: calc(10 * var(--sp-scale));
    height: calc(10 * var(--sp-scale));
    border-top-width: calc(2 * var(--sp-scale));
    border-right-width: calc(2 * var(--sp-scale));
  }

  .single-news-detail__sidebar {
    width: 100%;
    margin: 0;
    gap: calc(60 * var(--sp-scale));
  }
}
/* End news single detail */

/* Company page FV */
.page-company-fv .page-service-fv__lead {
  width: calc(760 * var(--pc-scale));
}

@media (max-width: 760px) {
  .page-company-fv {
    height: calc(480 * var(--sp-scale));
  }

  .page-company-fv .page-service-fv__lead {
    width: min(calc(310 * var(--sp-scale)), calc(100% - calc(76 * var(--sp-scale))));
  }
}
/* End company page FV */

/* Company message */
.page-company-message {
  position: relative;
  overflow: hidden;
  padding: calc(100 * var(--pc-scale)) 0 calc(100 * var(--pc-scale));
  background: #fff;
  color: #222;
}

.page-company-message__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: max-content;
  width: min(100%, calc(1440 * var(--pc-scale)));
  margin: 0 auto calc(-50 * var(--pc-scale));
}

.page-company-message__heading-inner {
  position: relative;
  z-index: 2;
  margin-left: calc(120 * var(--pc-scale));
}

.page-company-message__label {
  margin: 0;
  color: #1d4a9e;
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.page-company-message__en {
  margin: calc(24 * var(--pc-scale)) 0 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-company-message__line {
  position: absolute;
  top: calc(24 * var(--pc-scale));
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 0;
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.3);
  pointer-events: none;
}

.page-company-message__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(1100 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
  margin: 0 auto;
}

.page-company-message__copy {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--pc-scale));
  align-items: flex-end;
  width: calc(537 * var(--pc-scale));
  padding-top: calc(86 * var(--pc-scale));
  overflow: hidden;
}

.page-company-message__text-group {
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--pc-scale));
  align-items: flex-start;
  width: 100%;
}

.page-company-message__catch {
  width: 100%;
  margin: 0;
  color: #1d4a9e;
  font-size: calc(20 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.page-company-message__text {
  width: 100%;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.page-company-message__text p {
  margin: 0;
}

.page-company-message__signature {
  width: calc(265 * var(--pc-scale));
  height: calc(38 * var(--pc-scale));
}

.page-company-message__signature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-company-message__visual {
  flex-shrink: 0;
  width: calc(485 * var(--pc-scale));
  height: auto;
  margin: 0;
}

.page-company-message__visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .page-company-message {
    padding-bottom: calc(70 * var(--sp-scale));
  }

  .page-company-message__heading {
    width: 100%;
    margin-bottom: calc(28 * var(--sp-scale));
  }

  .page-company-message__heading-inner {
    margin-left: calc(24 * var(--sp-scale));
  }

  .page-company-message__label {
    font-size: calc(18 * var(--sp-scale));
  }

  .page-company-message__en {
    margin-top: calc(12 * var(--sp-scale));
    font-size: calc(64 * var(--sp-scale));
    line-height: 0.9;
  }

  .page-company-message__line {
    top: calc(18 * var(--sp-scale));
    border-top-width: calc(1 * var(--sp-scale));
  }

  .page-company-message__body {
    flex-direction: column-reverse;
    gap: calc(30 * var(--sp-scale));
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(520 * var(--sp-scale));
  }

  .page-company-message__copy {
    gap: calc(28 * var(--sp-scale));
    width: 100%;
    padding-top: 0;
  }

  .page-company-message__text-group {
    gap: calc(12 * var(--sp-scale));
  }

  .page-company-message__catch {
    font-size: calc(18 * var(--sp-scale));
  }

  .page-company-message__text {
    font-size: calc(14 * var(--sp-scale));
    text-align: left;
  }

  .page-company-message__signature {
    width: calc(220 * var(--sp-scale));
    height: auto;
  }

  .page-company-message__signature img {
    height: auto;
  }

  .page-company-message__visual {
    width: 100%;
    height: auto;
  }
}
/* End company message */

/* Company values */
.page-company-values {
  position: relative;
  padding: 0 0 calc(120 * var(--pc-scale));
  background: #fff;
  color: #222;
}

.page-company-values__inner {
  display: flex;
  gap: calc(94 * var(--pc-scale));
  align-items: flex-start;
  width: calc(1100 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
  margin: 0 auto;
}

.page-company-values__item {
  display: flex;
  flex-direction: column;
  gap: calc(31 * var(--pc-scale));
  align-items: center;
  width: calc(304 * var(--pc-scale));
  flex-shrink: 0;
}

.page-company-values__media {
  position: relative;
  width: calc(304 * var(--pc-scale));
  height: calc(304 * var(--pc-scale));
  overflow: hidden;
  background: #fff;
}

.page-company-values__photos,
.page-company-values__photos img,
.page-company-values__tint {
  position: absolute;
  inset: 0;
  display: block;
}

.page-company-values__photos img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: bottom;
}

.page-company-values__tint {
  background: rgba(0, 46, 131, 0.7);
  mix-blend-mode: hard-light;
}

.page-company-values__line {
  position: absolute;
  z-index: 2;
  display: block;
  background: rgba(230, 199, 113, 0.9);
  pointer-events: none;
}

.page-company-values__line--top,
.page-company-values__line--bottom {
  left: 0;
  width: 100%;
  height: calc(2 * var(--pc-scale));
}

.page-company-values__line--top {
  top: calc(15 * var(--pc-scale));
}

.page-company-values__line--bottom {
  bottom: calc(15 * var(--pc-scale));
}

.page-company-values__line--right,
.page-company-values__line--left {
  top: 0;
  width: calc(2 * var(--pc-scale));
  height: 100%;
}

.page-company-values__line--right {
  right: calc(15 * var(--pc-scale));
}

.page-company-values__line--left {
  left: calc(15 * var(--pc-scale));
}

.page-company-values__title {
  position: absolute;
  top: calc(104 * var(--pc-scale));
  left: 50%;
  z-index: 3;
  margin: 0;
  color: #e6c771;
  font-size: calc(32 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-company-values__item--appreciate .page-company-values__title {
  top: calc(128 * var(--pc-scale));
}

.page-company-values__en {
  position: absolute;
  bottom: calc(7 * var(--pc-scale));
  left: 50%;
  z-index: 3;
  margin: 0;
  color: rgba(122, 155, 217, 0.4);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(60 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-company-values__text {
  width: 100%;
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 760px) {
  .page-company-values {
    padding-bottom: calc(72 * var(--sp-scale));
  }

  .page-company-values__inner {
    flex-direction: column;
    gap: calc(44 * var(--sp-scale));
    align-items: center;
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(360 * var(--sp-scale));
  }

  .page-company-values__item {
    gap: calc(22 * var(--sp-scale));
    width: min(calc(304 * var(--sp-scale)), 100%);
  }

  .page-company-values__media {
    width: min(calc(304 * var(--sp-scale)), 100%);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .page-company-values__line--top {
    top: calc(15 * var(--sp-scale));
  }

  .page-company-values__line--bottom {
    bottom: calc(15 * var(--sp-scale));
  }

  .page-company-values__line--right {
    right: calc(15 * var(--sp-scale));
  }

  .page-company-values__line--left {
    left: calc(15 * var(--sp-scale));
  }

  .page-company-values__title {
    top: 34.2%;
    font-size: calc(30 * var(--sp-scale));
  }

  .page-company-values__item--appreciate .page-company-values__title {
    top: 42%;
  }

  .page-company-values__en {
    bottom: calc(7 * var(--sp-scale));
    font-size: calc(58 * var(--sp-scale));
  }

  .page-company-values__text {
    font-size: calc(14 * var(--sp-scale));
  }
}
/* End company values */

/* Company outline */
.page-company-outline {
  position: relative;
  padding: 0 0 calc(120 * var(--pc-scale));
  background: #fff;
  color: #222;
}

.page-company-outline__head {
  position: relative;
  width: min(100%, calc(1440 * var(--pc-scale)));
  height: calc(100 * var(--pc-scale));
  margin: 0 auto calc(60 * var(--pc-scale));
}

.page-company-outline__head::before {
  position: absolute;
  top: calc(16 * var(--pc-scale));
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.3);
}

.page-company-outline__en {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-company-outline__label {
  position: absolute;
  top: calc(16 * var(--pc-scale));
  left: 50%;
  z-index: 2;
  margin: 0;
  color: #1d4a9e;
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (min-width: 761px) {
  .page-company-outline__head::before,
  .page-company-outline__head::after {
    position: absolute;
    display: block;
    height: 0;
    content: "";
    border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-company-outline__head::before {
    top: calc(16 * var(--pc-scale));
    left: calc(612 * var(--pc-scale));
    width: calc(828 * var(--pc-scale));
  }

  .page-company-outline__head::after {
    top: calc(40 * var(--pc-scale));
    left: 0;
    width: calc(828 * var(--pc-scale));
  }
}

.page-company-outline__table {
  width: calc(1101 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
  margin: 0 auto calc(60 * var(--pc-scale));
}

.page-company-outline__row {
  display: grid;
  grid-template-columns: calc(304 * var(--pc-scale)) 1fr;
  border-bottom: calc(1 * var(--pc-scale)) solid #a5b7d8;
}

.page-company-outline__row dt,
.page-company-outline__row dd {
  display: flex;
  align-items: center;
  min-height: calc(67 * var(--pc-scale));
  margin: 0;
  padding: calc(20 * var(--pc-scale)) 0;
  font-size: calc(18 * var(--pc-scale));
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.page-company-outline__row dt {
  padding-left: calc(15 * var(--pc-scale));
  color: #1d4a9e;
  font-weight: 700;
  white-space: nowrap;
}

.page-company-outline__row dd {
  color: #222;
  font-weight: 400;
}

.page-company-outline__row a {
  color: inherit;
  text-decoration: none;
}

.page-company-outline__contact-lines {
  display: block;
  line-height: 1.6;
}

.page-company-outline__row dd.page-company-outline__locations {
  display: block;
}

.page-company-outline__location {
  display: block;
}

.page-company-outline__location + .page-company-outline__location {
  margin-top: calc(14 * var(--pc-scale));
}

.page-company-outline__location-name {
  display: block;
  color: #1d4a9e;
  font-weight: 700;
}


.page-company-outline__map {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--pc-scale));
  align-items: center;
  width: calc(1100 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
  margin: 0 auto;
}

.page-company-outline__map-image {
  position: relative;
  width: 100%;
  height: calc(607 * var(--pc-scale));
  margin: 0;
  overflow: hidden;
}

.page-company-outline__map-image iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-company-outline__address {
  width: 100%;
  margin: 0;
  color: #222;
  font-size: calc(18 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 760px) {
  .page-company-outline {
    padding-bottom: calc(72 * var(--sp-scale));
  }

  .page-company-outline__head {
    width: 100%;
    height: calc(76 * var(--sp-scale));
    margin-bottom: calc(34 * var(--sp-scale));
  }

  .page-company-outline__head::before,
  .page-company-outline__head::after {
    position: absolute;
    display: block;
    height: 0;
    content: "";
    border-top: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.4);
  }

  .page-company-outline__head::before {
    top: 0;
    right: 0;
    left: auto;
    width: calc(306 * var(--sp-scale));
  }

  .page-company-outline__head::after {
    top: calc(18 * var(--sp-scale));
    left: 0;
    width: calc(306 * var(--sp-scale));
  }

  .page-company-outline__en {
    font-size: calc(64 * var(--sp-scale));
  }

  .page-company-outline__label {
    top: 0;
    font-size: calc(20 * var(--sp-scale));
  }

  .page-company-outline__table {
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(520 * var(--sp-scale));
    margin-bottom: calc(42 * var(--sp-scale));
  }

  .page-company-outline__row {
    grid-template-columns: 1fr;
    padding: calc(16 * var(--sp-scale)) 0;
  }

  .page-company-outline__row dt,
  .page-company-outline__row dd {
    display: block;
    min-height: 0;
    padding: 0;
    font-size: calc(14 * var(--sp-scale));
    line-height: 1.7;
    white-space: normal;
  }

  .page-company-outline__row dt {
    margin-bottom: calc(8 * var(--sp-scale));
    padding-left: 0;
  }

  .page-company-outline__row dd {
    overflow-wrap: anywhere;
  }

  .page-company-outline__location + .page-company-outline__location {
    margin-top: calc(10 * var(--sp-scale));
  }

  .page-company-outline__location-name {
    margin-bottom: calc(2 * var(--sp-scale));
  }

  .page-company-outline__map {
    gap: calc(18 * var(--sp-scale));
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(520 * var(--sp-scale));
  }

  .page-company-outline__map-image {
    height: auto;
    aspect-ratio: 1100 / 607;
  }

  .page-company-outline__address {
    font-size: calc(13 * var(--sp-scale));
    line-height: 1.7;
  }
}
/* End company outline */

/* Privacy policy page */
.page-privacy-policy {
  padding-top: var(--header-height);
  background: #fff;
}

.page-privacy-policy__content {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--pc-scale));
  align-items: center;
  padding: 0 0 calc(120 * var(--pc-scale));
  color: #222;
}

.page-privacy-policy__head {
  position: relative;
  width: min(100%, calc(1440 * var(--pc-scale)));
  height: calc(100 * var(--pc-scale));
}

.page-privacy-policy__head::before,
.page-privacy-policy__head::after {
  position: absolute;
  display: block;
  height: 0;
  content: "";
  border-top: calc(2 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
}

.page-privacy-policy__head::before {
  top: calc(16 * var(--pc-scale));
  left: calc(612 * var(--pc-scale));
  width: calc(828 * var(--pc-scale));
}

.page-privacy-policy__head::after {
  top: calc(40 * var(--pc-scale));
  left: 0;
  width: calc(828 * var(--pc-scale));
}

.page-privacy-policy__en {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  color: rgba(29, 74, 158, 0.15);
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(100 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-privacy-policy__label {
  position: absolute;
  top: calc(16 * var(--pc-scale));
  left: 50%;
  z-index: 2;
  margin: 0;
  color: #1d4a9e;
  font-size: calc(24 * var(--pc-scale));
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-privacy-policy__body {
  display: flex;
  flex-direction: column;
  gap: calc(60 * var(--pc-scale));
  align-items: flex-start;
  width: calc(1078 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
}

.page-privacy-policy__lead,
.page-privacy-policy__section p,
.page-privacy-policy__section ul {
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.page-privacy-policy__sections {
  display: flex;
  flex-direction: column;
  gap: calc(60 * var(--pc-scale));
  width: 100%;
}

.page-privacy-policy__section {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--pc-scale));
  align-items: flex-start;
  width: 100%;
}

.page-privacy-policy__section--narrow {
  width: calc(900 * var(--pc-scale));
  max-width: 100%;
}

.page-privacy-policy__heading {
  margin: 0;
  padding: calc(10 * var(--pc-scale)) 0 calc(10 * var(--pc-scale)) calc(25 * var(--pc-scale));
  color: #222;
  font-size: calc(22 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  border-left: calc(5 * var(--pc-scale)) solid #1d4a9e;
}

.page-privacy-policy__section ul {
  padding: 0;
  list-style: none;
}

.page-privacy-policy__section li::before {
  content: "・";
}

.page-privacy-policy__section a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.page-privacy-policy__company {
  margin-top: 0;
}

@media (max-width: 760px) {
  .page-privacy-policy__content {
    gap: calc(26 * var(--sp-scale));
    padding-bottom: calc(72 * var(--sp-scale));
  }

  .page-privacy-policy__head {
    width: 100%;
    height: calc(84 * var(--sp-scale));
  }

  .page-privacy-policy__head::before,
  .page-privacy-policy__head::after {
    display: block;
    width: calc(306 * var(--sp-scale));
    border-top-width: calc(1 * var(--sp-scale));
  }

  .page-privacy-policy__head::before {
    top: 0;
    left: calc(50% - calc(111 * var(--sp-scale)));
  }

  .page-privacy-policy__head::after {
    top: calc(18 * var(--sp-scale));
    left: calc(50% - calc(195 * var(--sp-scale)));
  }

  .page-privacy-policy__en {
    font-size: calc(58 * var(--sp-scale));
  }

  .page-privacy-policy__label {
    top: 0;
    font-size: calc(18 * var(--sp-scale));
  }

  .page-privacy-policy__body {
    gap: calc(44 * var(--sp-scale));
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(520 * var(--sp-scale));
  }

  .page-privacy-policy__lead,
  .page-privacy-policy__section p,
  .page-privacy-policy__section ul {
    font-size: calc(14 * var(--sp-scale));
    text-align: left;
  }

  .page-privacy-policy__sections {
    gap: calc(38 * var(--sp-scale));
  }

  .page-privacy-policy__section {
    gap: calc(16 * var(--sp-scale));
  }

  .page-privacy-policy__heading {
    padding: calc(8 * var(--sp-scale)) 0 calc(8 * var(--sp-scale)) calc(16 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    border-left-width: calc(4 * var(--sp-scale));
    white-space: normal;
  }

  .page-privacy-policy__company {
    margin-top: 0;
  }
}
/* End privacy policy page */

/* Contact page FV */
.page-contact-fv .page-service-fv__lead {
  width: calc(520 * var(--pc-scale));
}

.page-contact-fv__numbers {
  position: absolute;
  top: calc(307 * var(--pc-scale));
  left: calc(132 * var(--pc-scale));
  display: flex;
  gap: calc(20 * var(--pc-scale));
  align-items: flex-start;
  color: #e6c771;
  font-family: "Alumni Sans SC", var(--font-en);
  font-size: calc(40 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.page-contact-fv__number {
  display: flex;
  gap: calc(5 * var(--pc-scale));
  align-items: center;
  width: calc(224 * var(--pc-scale));
  margin: 0;
}

.page-contact-fv__hours {
  position: absolute;
  top: calc(367 * var(--pc-scale));
  left: calc(120 * var(--pc-scale));
  width: calc(540 * var(--pc-scale));
  margin: 0;
  color: #fff;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .page-contact-fv {
    height: calc(450 * var(--sp-scale));
  }

  .page-contact-fv .page-service-fv__lead {
    width: min(calc(300 * var(--sp-scale)), calc(100% - calc(76 * var(--sp-scale))));
  }

  .page-contact-fv .page-service-fv__line--right {
    top: calc(124 * var(--sp-scale));
    height: calc(74 * var(--sp-scale));
  }


  .page-contact-fv__numbers {
    top: calc(276 * var(--sp-scale));
    left: calc(52 * var(--sp-scale));
    flex-direction: column;
    gap: calc(4 * var(--sp-scale));
    font-size: calc(32 * var(--sp-scale));
  }

  .page-contact-fv__number {
    width: auto;
    gap: calc(5 * var(--sp-scale));
  }

  .page-contact-fv__hours {
    top: calc(360 * var(--sp-scale));
    left: calc(52 * var(--sp-scale));
    width: min(calc(300 * var(--sp-scale)), calc(100% - calc(76 * var(--sp-scale))));
    font-size: calc(12 * var(--sp-scale));
    line-height: 1.7;
  }
}
/* End contact page FV */

/* Contact form section */
.page-contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--pc-scale));
  align-items: center;
  padding: calc(70 * var(--pc-scale)) calc(67 * var(--pc-scale)) calc(100 * var(--pc-scale));
  color: #222;
}

.page-contact-form::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: calc(1306 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
  content: "";
  background: #f6faff;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-contact-form > * {
  position: relative;
  z-index: 1;
}

.page-contact-form__lead {
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}

.page-contact-form__form {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--pc-scale));
  align-items: center;
  width: calc(776 * var(--pc-scale));
  max-width: 100%;
  margin: 0;
}

.page-contact-form__field {
  display: grid;
  grid-template-columns: calc(200 * var(--pc-scale)) calc(576 * var(--pc-scale));
  align-items: center;
  width: 100%;
  margin: 0;
}

.page-contact-form__label-group {
  display: flex;
  gap: calc(10 * var(--pc-scale));
  align-items: center;
}

.page-contact-form__label,
.page-contact-form__post-label {
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  white-space: nowrap;
}

.page-contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(2 * var(--pc-scale)) calc(5 * var(--pc-scale));
  color: #fff;
  background: #1d4a9e;
  font-size: calc(14 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.page-contact-form__radios {
  display: flex;
  gap: calc(30 * var(--pc-scale));
  align-items: center;
}

.page-contact-form__radio,
.page-contact-form__agree {
  display: inline-flex;
  gap: calc(10 * var(--pc-scale));
  align-items: center;
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  white-space: nowrap;
  cursor: pointer;
}

.page-contact-form__radio input,
.page-contact-form__agree input {
  width: calc(16 * var(--pc-scale));
  height: calc(16 * var(--pc-scale));
  margin: 0;
  accent-color: #1d4a9e;
}

.page-contact-form__input,
.page-contact-form__textarea {
  display: block;
  width: 100%;
  color: #222;
  background: #fff;
  border: calc(1 * var(--pc-scale)) solid rgba(29, 74, 158, 0.4);
  border-radius: calc(3 * var(--pc-scale));
  outline: none;
  font-size: calc(16 * var(--pc-scale));
  line-height: 1.6;
}

.page-contact-form__input {
  height: calc(40 * var(--pc-scale));
  padding: 0 calc(12 * var(--pc-scale));
}

.page-contact-form__textarea {
  height: calc(275 * var(--pc-scale));
  padding: calc(12 * var(--pc-scale));
  resize: vertical;
}

.page-contact-form__input:focus,
.page-contact-form__textarea:focus {
  border-color: #1d4a9e;
  box-shadow: 0 0 0 calc(1 * var(--pc-scale)) #1d4a9e;
}

.page-contact-form__field--split {
  grid-template-columns: calc(200 * var(--pc-scale)) 1fr;
}

.page-contact-form__split {
  display: flex;
  gap: calc(14 * var(--pc-scale));
  align-items: center;
}

.page-contact-form__input--department {
  width: calc(336 * var(--pc-scale));
}

.page-contact-form__input--position {
  width: calc(180 * var(--pc-scale));
}

.page-contact-form__input--phone {
  width: calc(240 * var(--pc-scale));
}

.page-contact-form__message {
  display: flex;
  flex-direction: column;
  gap: calc(10 * var(--pc-scale));
  width: 100%;
  margin: 0;
}

.page-contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--pc-scale));
  align-items: center;
  margin-top: 0;
}

.page-contact-form__notice {
  width: calc(710 * var(--pc-scale));
  max-width: 100%;
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}

.page-contact-form__notice a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.page-contact-form__agree {
  font-weight: 700;
}

.page-contact-form__agree input {
  border-radius: calc(3 * var(--pc-scale));
}

.page-contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(269 * var(--pc-scale));
  padding: calc(24 * var(--pc-scale)) calc(60 * var(--pc-scale));
  color: #fff;
  background: #1d4a9e;
  border: 0;
  border-radius: 0;
  font-size: calc(24 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-contact-form__button:hover {
  opacity: 0.82;
}

@media (max-width: 760px) {
  .page-contact-form {
    gap: calc(32 * var(--sp-scale));
    padding: calc(48 * var(--sp-scale)) calc(24 * var(--sp-scale)) calc(72 * var(--sp-scale));
  }

  .page-contact-form__lead {
    font-size: calc(14 * var(--sp-scale));
    white-space: normal;
  }

  .page-contact-form__form {
    gap: calc(22 * var(--sp-scale));
    width: 100%;
  }

  .page-contact-form__field,
  .page-contact-form__field--split {
    display: flex;
    flex-direction: column;
    gap: calc(8 * var(--sp-scale));
    align-items: flex-start;
  }

  .page-contact-form__label,
  .page-contact-form__post-label,
  .page-contact-form__radio,
  .page-contact-form__agree {
    font-size: calc(14 * var(--sp-scale));
  }

  .page-contact-form__required {
    font-size: calc(12 * var(--sp-scale));
  }

  .page-contact-form__radios {
    flex-direction: column;
    gap: calc(8 * var(--sp-scale));
    align-items: flex-start;
  }

  .page-contact-form__input {
    height: calc(40 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .page-contact-form__textarea {
    height: calc(220 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .page-contact-form__split {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(8 * var(--sp-scale));
    width: 100%;
  }

  .page-contact-form__input--department,
  .page-contact-form__input--position,
  .page-contact-form__input--phone {
    width: 100%;
  }

  .page-contact-form__message {
    gap: calc(8 * var(--sp-scale));
  }

  .page-contact-form__footer {
    gap: calc(16 * var(--sp-scale));
  }

  .page-contact-form__notice {
    width: 100%;
    font-size: calc(13 * var(--sp-scale));
  }

  .page-contact-form__notice br {
    display: none;
  }

  .page-contact-form__button {
    width: 100%;
    min-width: 0;
    padding: calc(20 * var(--sp-scale)) calc(24 * var(--sp-scale));
    font-size: calc(20 * var(--sp-scale));
  }
}

/* Contact Form 7 compatibility */
.page-contact-form .wpcf7 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-contact-form .wpcf7 form.page-contact-form__form {
  margin: 0;
}

.page-contact-form .wpcf7-form br {
  display: none;
}

.page-contact-form .wpcf7-form > p,
.page-contact-form__radios > p,
.page-contact-form__field--split > p,
.page-contact-form__split > p,
.page-contact-form__footer > p:not(.page-contact-form__notice),
.page-contact-form__label-group > p:not(.page-contact-form__label) {
  display: contents;
  margin: 0;
}

.page-contact-form .wpcf7-form > p:empty,
.page-contact-form .hidden-fields-container {
  display: none;
}

.page-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.page-contact-form__radios .wpcf7-form-control-wrap,
.page-contact-form__radios .wpcf7-radio {
  display: flex;
  gap: calc(30 * var(--pc-scale));
  align-items: center;
}

.page-contact-form__radios .wpcf7-list-item,
.page-contact-form__agree .wpcf7-list-item {
  margin: 0;
}

.page-contact-form__radios .wpcf7-list-item label,
.page-contact-form__agree .wpcf7-list-item label {
  display: inline-flex;
  gap: calc(10 * var(--pc-scale));
  align-items: center;
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  line-height: 1.6;
  white-space: nowrap;
  cursor: pointer;
}

.page-contact-form__radios .wpcf7-list-item input,
.page-contact-form__agree .wpcf7-list-item input {
  width: calc(16 * var(--pc-scale));
  height: calc(16 * var(--pc-scale));
  margin: 0;
  accent-color: #1d4a9e;
}

.page-contact-form__split .wpcf7-form-control-wrap[data-name="your-department"] {
  flex: 0 0 calc(336 * var(--pc-scale));
  width: calc(336 * var(--pc-scale));
}

.page-contact-form__split .wpcf7-form-control-wrap[data-name="your-position"] {
  flex: 0 0 calc(180 * var(--pc-scale));
  width: calc(180 * var(--pc-scale));
}

.page-contact-form__field--phone .wpcf7-form-control-wrap {
  width: calc(240 * var(--pc-scale));
}

.page-contact-form .wpcf7-not-valid-tip {
  margin-top: calc(4 * var(--pc-scale));
  color: #c32323;
  font-size: calc(13 * var(--pc-scale));
  line-height: 1.6;
}

.page-contact-form .wpcf7-response-output {
  width: 100%;
  margin: calc(4 * var(--pc-scale)) 0 0;
  padding: calc(12 * var(--pc-scale)) calc(16 * var(--pc-scale));
  border-width: calc(1 * var(--pc-scale));
  font-size: calc(14 * var(--pc-scale));
  line-height: 1.7;
}

.page-contact-form .wpcf7-spinner {
  margin: calc(8 * var(--pc-scale)) 0 0;
}

@media (max-width: 760px) {
  .page-contact-form__radios .wpcf7-form-control-wrap,
  .page-contact-form__radios .wpcf7-radio {
    flex-direction: column;
    gap: calc(8 * var(--sp-scale));
    align-items: flex-start;
  }

  .page-contact-form__radios .wpcf7-list-item label,
  .page-contact-form__agree .wpcf7-list-item label {
    gap: calc(10 * var(--sp-scale));
    font-size: calc(14 * var(--sp-scale));
  }

  .page-contact-form__radios .wpcf7-list-item input,
  .page-contact-form__agree .wpcf7-list-item input {
    width: calc(16 * var(--sp-scale));
    height: calc(16 * var(--sp-scale));
  }

  .page-contact-form__split .wpcf7-form-control-wrap[data-name="your-department"],
  .page-contact-form__split .wpcf7-form-control-wrap[data-name="your-position"],
  .page-contact-form__field--phone .wpcf7-form-control-wrap {
    flex: 0 1 auto;
    width: 100%;
  }

  .page-contact-form .wpcf7-not-valid-tip {
    margin-top: calc(4 * var(--sp-scale));
    font-size: calc(12 * var(--sp-scale));
  }

  .page-contact-form .wpcf7-response-output {
    margin-top: calc(4 * var(--sp-scale));
    padding: calc(10 * var(--sp-scale)) calc(12 * var(--sp-scale));
    border-width: calc(1 * var(--sp-scale));
    font-size: calc(13 * var(--sp-scale));
  }

  .page-contact-form .wpcf7-spinner {
    margin: calc(8 * var(--sp-scale)) 0 0;
  }
}
/* End Contact Form 7 compatibility */

/* End contact form section */

/* Thanks page */
.page-thanks {
  padding-top: var(--header-height);
  background: #fff;
}

.page-thanks-message {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--pc-scale));
  width: calc(900 * var(--pc-scale));
  max-width: calc(100% - calc(48 * var(--pc-scale)));
  margin: 0 auto;
  padding: calc(100 * var(--pc-scale)) 0 calc(120 * var(--pc-scale));
  color: #222;
}

.page-thanks-message__head {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0 calc(20 * var(--pc-scale));
  border-bottom: calc(2 * var(--pc-scale)) solid #a5b7d8;
}

.page-thanks-message__title {
  margin: 0;
  color: #222;
  font-size: calc(30 * var(--pc-scale));
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.page-thanks-message__body {
  width: 100%;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.page-thanks-message__body p {
  margin: 0;
}

.page-thanks-message__body p + p {
  margin-top: calc(29 * var(--pc-scale));
}

.page-thanks-message__body p:nth-child(n + 4) {
  margin-top: 0;
}

@media (max-width: 760px) {
  .page-thanks-message {
    gap: calc(28 * var(--sp-scale));
    width: calc(100% - calc(48 * var(--sp-scale)));
    max-width: calc(520 * var(--sp-scale));
    padding: calc(72 * var(--sp-scale)) 0;
  }

  .page-thanks-message__head {
    padding-bottom: calc(16 * var(--sp-scale));
    border-bottom-width: calc(1 * var(--sp-scale));
  }

  .page-thanks-message__title {
    font-size: calc(24 * var(--sp-scale));
    line-height: 1.4;
  }

  .page-thanks-message__body {
    font-size: calc(14 * var(--sp-scale));
    text-align: left;
  }

  .page-thanks-message__body p + p {
    margin-top: calc(20 * var(--sp-scale));
  }

  .page-thanks-message__body p:nth-child(n + 4) {
    margin-top: 0;
  }
}

.home-projects__empty,
.home-news__empty,
.archive-works-list__empty,
.page-news-list__empty {
  margin: 0;
  color: #222;
  font-size: calc(16 * var(--pc-scale));
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.archive-works-list__empty {
  grid-column: 1 / -1;
}

.page-news-list__empty {
  padding: calc(24 * var(--pc-scale)) 0;
}

@media (max-width: 760px) {
  .home-projects__empty,
  .home-news__empty,
  .archive-works-list__empty,
  .page-news-list__empty {
    font-size: calc(14 * var(--sp-scale));
  }

  .page-news-list__empty {
    padding: calc(20 * var(--sp-scale)) 0;
  }
}


/* Button hover animations */
.home-beginner__button,
.home-business__button,
.home-projects__archive,
.home-about__button,
.home-news__archive,
.page-service-demolition__button,
.page-service-realestate__button {
  overflow: hidden;
  background-image: linear-gradient(90deg, var(--color-blue) 0 0);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0 100%;
  transition: color 0.32s cubic-bezier(0.33, 1, 0.68, 1), background-size 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-beginner__button-icon,
.home-business__button-icon,
.home-projects__archive-icon,
.home-about__button-icon,
.home-news__archive-icon,
.page-service-demolition__button-icon,
.page-service-realestate__button-icon {
  z-index: 1;
}

.home-beginner__button-icon::before,
.home-business__button-icon::before,
.home-projects__archive-icon::before,
.home-about__button-icon::before,
.home-news__archive-icon::before,
.page-service-demolition__button-icon::before,
.page-service-realestate__button-icon::before {
  border-color: currentColor;
  transition: border-color 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-beginner__button:hover,
.home-beginner__button:focus-visible,
.home-business__button:hover,
.home-business__button:focus-visible,
.home-projects__archive:hover,
.home-projects__archive:focus-visible,
.home-about__button:hover,
.home-about__button:focus-visible,
.home-news__archive:hover,
.home-news__archive:focus-visible,
.page-service-demolition__button:hover,
.page-service-demolition__button:focus-visible,
.page-service-realestate__button:hover,
.page-service-realestate__button:focus-visible {
  color: #fff;
  background-size: 100% 100%;
}

.home-contact__button {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, var(--color-blue) 0 0);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0 100%;
  transition: color 0.32s cubic-bezier(0.33, 1, 0.68, 1), background-size 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-contact__button-icon,
.home-contact__button-text {
  position: relative;
  z-index: 1;
  transition: color 0.32s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-contact__button:hover,
.home-contact__button:focus-visible {
  color: #fff;
  background-size: 100% 100%;
}

.home-contact__button:hover .home-contact__button-text,
.home-contact__button:focus-visible .home-contact__button-text {
  color: #fff;
}

.home-projects__detail,
.archive-works-card__detail,
.page-contact-form__button {
  background-image: linear-gradient(90deg, #123a80 0 0);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0 100%;
  transition: color 0.32s cubic-bezier(0.33, 1, 0.68, 1), background-size 0.38s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.2s ease;
}

.home-projects__detail:hover,
.home-projects__detail:focus-visible,
.archive-works-card__link:hover .archive-works-card__detail,
.archive-works-card__link:focus-visible .archive-works-card__detail,
.page-contact-form__button:hover,
.page-contact-form__button:focus-visible {
  opacity: 1;
  background-size: 100% 100%;
}
/* End button hover animations */

/* End thanks page */

/* Lower page SP screenshot adjustments */
@media (max-width: 760px) {
  .site-main:not(.home):not(.page-beginner)::before,
  .site-main:not(.home):not(.page-beginner)::after {
    top: var(--common-page-line-top-sp, var(--header-height));
    bottom: 0;
    display: block;
    border-left-width: calc(1 * var(--sp-scale));
  }

  .site-main:not(.home):not(.page-beginner)::before {
    left: calc(16 * var(--sp-scale));
  }

  .site-main:not(.home):not(.page-beginner)::after {
    right: calc(16 * var(--sp-scale));
  }

  .page-service,
  .archive-works,
  .page-news,
  .page-company {
    --common-page-line-top-sp: calc(500 * var(--sp-scale));
  }

  .page-contact {
    --common-page-line-top-sp: calc(500 * var(--sp-scale));
  }

  .single-works,
  .single-news,
  .page-privacy-policy,
  .page-thanks {
    --common-page-line-top-sp: var(--header-height);
  }

  .page-beginner-fv,
  .page-service-fv,
  .page-company-fv,
  .page-contact-fv {
    height: calc(500 * var(--sp-scale));
  }

  .page-beginner-fv__media,
  .page-service-fv__media {
    height: 100%;
  }

  .page-beginner-fv__media img,
  .page-service-fv__media img {
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .page-beginner-fv__blue,
  .page-service-fv__blue {
    background: #1754c5;
    opacity: 1;
  }

  .page-beginner-fv__shade,
  .page-service-fv__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 76.923%, rgba(0, 0, 0, 0.245) 100%);
    opacity: 1;
  }

  .page-beginner-fv__en,
  .page-service-fv__en {
    position: absolute;
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    display: block;
    width: calc(290 * var(--sp-scale));
    height: calc(50 * var(--sp-scale));
    color: rgba(230, 199, 113, 0.9);
    font-size: calc(72 * var(--sp-scale));
    font-style: normal;
    line-height: 0.7;
    letter-spacing: 0;
    text-transform: none;
    transform: rotate(90deg);
    transform-origin: left top;
    mix-blend-mode: color-dodge;
  }

  .page-beginner-fv__en span,
  .page-service-fv__en span {
    display: inline;
  }

  .page-beginner-fv__en span + span::before,
  .page-service-fv__en span + span::before {
    content: ' ';
  }

  .page-beginner-fv__line,
  .page-service-fv__line {
    border-color: rgba(230, 199, 113, 0.8);
    mix-blend-mode: color-dodge;
  }

  .page-beginner-fv__line--left,
  .page-service-fv__line--left {
    top: calc(52 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    height: calc(448 * var(--sp-scale));
    border-left-width: calc(1 * var(--sp-scale));
  }

  .page-beginner-fv__line--right,
  .page-service-fv__line--right {
    top: calc(132 * var(--sp-scale));
    right: auto;
    left: calc(267 * var(--sp-scale));
    height: calc(95 * var(--sp-scale));
    border-left-width: calc(1 * var(--sp-scale));
  }

  .page-beginner-fv__line--top,
  .page-service-fv__line--top {
    top: calc(182 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(253 * var(--sp-scale));
    border-top-width: calc(1 * var(--sp-scale));
  }

  .page-beginner-fv__line--bottom,
  .page-service-fv__line--bottom {
    top: calc(212 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(203 * var(--sp-scale));
    border-top-width: calc(1 * var(--sp-scale));
  }

  .page-beginner-fv__title,
  .page-service-fv__title {
    top: calc(175 * var(--sp-scale));
    left: calc(64 * var(--sp-scale));
    width: calc(253 * var(--sp-scale));
    font-size: calc(29 * var(--sp-scale));
    line-height: 1.5;
  }

  .page-beginner-fv__lead,
  .page-service-fv__lead {
    top: calc(232 * var(--sp-scale));
    left: calc(65 * var(--sp-scale));
    width: calc(252 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    line-height: 1.6;
  }

  .page-contact-fv .page-service-fv__title {
    top: calc(175 * var(--sp-scale));
  }

  .page-contact-fv .page-service-fv__lead {
    top: calc(232 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    line-height: 1.6;
  }

  .page-contact-fv__numbers {
    top: calc(282 * var(--sp-scale));
    left: calc(65 * var(--sp-scale));
    width: calc(252 * var(--sp-scale));
    gap: calc(2 * var(--sp-scale));
  }

  .page-contact-fv__number {
    font-size: calc(29 * var(--sp-scale));
    line-height: 1.25;
  }

  .page-contact-fv__hours {
    top: calc(374 * var(--sp-scale));
    left: calc(65 * var(--sp-scale));
    width: calc(252 * var(--sp-scale));
    font-size: calc(15 * var(--sp-scale));
    line-height: 1.75;
    text-align: center;
  }

  .page-company-message,
  .page-contact-form {
    padding-top: calc(72 * var(--sp-scale));
  }

  .page-company-values,
  .page-company-outline {
    padding-top: calc(80 * var(--sp-scale));
  }

  .page-company-message__head,
  .page-company-values__head,
  .page-company-outline__head,
  .page-contact-form__head,
  .page-company-message__body,
  .page-company-values__inner,
  .page-company-outline__inner,
  .page-contact-form__inner,
  .page-contact-form__lead,
  .page-privacy-policy__content,
  .page-thanks-message {
    width: min(calc(330 * var(--sp-scale)), calc(100% - calc(60 * var(--sp-scale))));
    margin-right: auto;
    margin-left: auto;
  }


  .archive-works-card__title,
  .home-projects__card-title {
    overflow-wrap: anywhere;
    word-break: break-word;
  }



  .page-thanks-message__title {
    padding-bottom: calc(10 * var(--sp-scale));
    border-bottom: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.32);
    font-size: calc(22 * var(--sp-scale));
    line-height: 1.5;
  }

  .page-privacy-policy__heading {
    padding-left: calc(16 * var(--sp-scale));
    border-left: calc(6 * var(--sp-scale)) solid var(--color-blue);
    font-size: calc(16 * var(--sp-scale));
    line-height: 1.75;
  }

  .page-privacy-policy__body,
  .page-thanks-message__body {
    font-size: calc(16 * var(--sp-scale));
    line-height: 2;
  }


  .page-privacy-policy__content {
    padding: calc(102 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
  }

  .page-privacy-policy__lead,
  .page-privacy-policy__section p,
  .page-privacy-policy__section li {
    font-size: calc(16 * var(--sp-scale));
    line-height: 2;
  }

  .page-thanks-message {
    padding: calc(112 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
  }

  .page-thanks-message__body {
    margin-top: calc(24 * var(--sp-scale));
    font-size: calc(18 * var(--sp-scale));
    line-height: 2.05;
  }

  .page-contact-form {
    padding: calc(72 * var(--sp-scale)) 0 calc(80 * var(--sp-scale));
    background-color: #f6faff;
  }

  .page-contact-form__lead {
    font-size: calc(16 * var(--sp-scale));
    line-height: 2;
    text-align: center;
  }

  .page-contact-form__form {
    width: min(calc(330 * var(--sp-scale)), calc(100% - calc(60 * var(--sp-scale))));
    margin: calc(34 * var(--sp-scale)) auto 0;
  }

  .page-contact-form__row {
    margin-top: calc(20 * var(--sp-scale));
  }

  .page-contact-form__label {
    margin-bottom: calc(8 * var(--sp-scale));
    font-size: calc(16 * var(--sp-scale));
  }

  .page-contact-form input[type="text"],
  .page-contact-form input[type="email"],
  .page-contact-form input[type="tel"],
  .page-contact-form textarea,
  .page-contact-form select {
    min-height: calc(38 * var(--sp-scale));
    border: calc(1 * var(--sp-scale)) solid rgba(29, 74, 158, 0.45);
    background-color: #fff;
  }

  .page-contact-form textarea {
    min-height: calc(295 * var(--sp-scale));
  }

  .page-contact-form__agree {
    margin-top: calc(44 * var(--sp-scale));
    text-align: center;
  }

  .page-contact-form__submit {
    width: 100%;
    min-height: calc(76 * var(--sp-scale));
    margin-top: calc(34 * var(--sp-scale));
    font-size: calc(22 * var(--sp-scale));
  }

  .page-company-values__item {
    width: calc(250 * var(--sp-scale));
    margin: calc(48 * var(--sp-scale)) auto 0;
  }

}
