@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Inter:wght@400;500;700&family=Montserrat:wght@700&family=Space+Grotesk:wght@300;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #b0b0b0;
  --color-dark-gray: #565656;
  --color-blue: #003647;
  --color-brown: #330000;
  --color-green: #1c351f;
  --color-purple: #0e0033;
  --color-pink: #390c37;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Space Grotesk", "Inter", sans-serif;
  --font-script: "Caveat", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}

.screen_reader_text,
.skip_link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip_link:focus {
  top: 16px;
  left: 16px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  color: var(--color-white);
  background: var(--color-black);
}

.site_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--color-white);
  background: transparent;
  transition: background 0.24s ease, backdrop-filter 0.24s ease;
}

.site_header.is_scrolled {
  background: rgba(0, 0, 0, 0.6);
}

.site_header.site_header__solid {
  background: #000000;
}

.site_header__inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 28px;
}

.site_logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-family: var(--font-script);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site_logo__mark {
  margin: 0;
  font-size: 13px;
  font-family: var(--font-en);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site_logo__name {
  margin: 0;
  line-height: 1;
}

.global_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.global_nav a {
  position: relative;
  padding: 8px 0;
}

.global_nav p,
.button p,
.skip_link p,
.site_footer__nav p,
.site_footer__actions p {
  margin: 0;
}

.global_nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
  content: "";
}

.global_nav a:hover::after,
.global_nav a:focus-visible::after {
  transform: scaleX(1);
}

.language_switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.language_switch span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 22px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.nav_toggle,
.nav_toggle_button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 40px;
  padding: 8px 24px;
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  opacity: 0.82;
}

.button__dark {
  color: var(--color-white);
  background: var(--color-black);
}

.button__light {
  color: var(--color-white);
  background: var(--color-black);
}

.section_kicker {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section_title {
  margin: 0;
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--color-white);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.44)), url("../images/figma-hero-bg.png");
  background-position: center;
  background-size: cover;
}

.hero__inner {
  padding: 0 0 38px;
	width:90%;
	max-width:100%;
}

.hero__title {
  max-width: 1100px;
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.hero__title p {
  margin: 0;
}

.hero__lead {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.2em;
}

.intro {
  padding: 140px 0 112px;
  text-align: center;
}

.intro__inner {
  max-width: 760px;
}

.intro__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.intro__title p,
.section_title p,
.services__title p,
.follow__title p,
.contact__title p {
  margin: 0;
}
.services__title p{
  font-weight: 600;
}
.section_title p{
	font-size:32px;
	font-weight:bold;
}
.intro__text {
  margin: 0 0 26px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.about_panel {
  display: flex;
  align-items: center;
  min-height: 600px;
  color: var(--color-white);
  overflow: hidden;
  background-position: center calc(50% + var(--about_panel_parallax, 0px));
  background-size: cover;
  will-change: background-position;
}

.about_panel__one {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08)), url("../images/figma-about-01.png");
}

.about_panel__two {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)), url("../images/figma-about-02.png");
}

.about_panel__three {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08)), url("../images/figma-about-03.png");
}

.about_panel__inner {
  display: flex;
}

.about_panel__right .about_panel__inner {
  justify-content: flex-end;
}

.about_card {
  width: min(583px, 100%);
}

.about_card__number {
  display: inline-flex;
  min-width: 270px;
  margin: 0 0 24px;
  padding: 6px 16px;
  background: var(--color-dark-gray);
  font-family: "Montserrat", var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about_card__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.about_card__title p {
  margin: 0;
}

.about_card p:last-child {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.gallery {
  padding: 96px 0 120px;
}
.gallery .container{
	width:100%;
	max-width:100%;
}

.gallery .section_kicker {
  text-align: center;
}

.gallery_list {
  display: grid;
  gap: 75px;
  width: 100%;
  margin-top: 72px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.gallery_card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--color-white);
}

.gallery_card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 79.2%;
  height: 410px;
  background-position: center;
  background-size: cover;
  box-shadow: 15px 15px 4px rgba(0, 0, 0, 0.05);
}

.gallery_card__image::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  content: "";
}

.gallery_card__interior .gallery_card__image,
.gallery_card__window .gallery_card__image {
  right: 0;
  left: auto;
}

.gallery_card__exterior .gallery_card__image {
  background-image: url("../images/figma-gallery-card-exterior-14272b.png");
}

.gallery_card__interior .gallery_card__image {
  background-image: url("../images/figma-gallery-card-interior-24e521.png");
}

.gallery_card__wall .gallery_card__image {
  background-image: url("../images/figma-gallery-card-wall-8a0a46.png");
}

.gallery_card__window .gallery_card__image {
  background-image: url("../images/figma-gallery-card-window.png");
}

.gallery_card__bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: 79.2%;
  height: 100px;
  padding: 0 42px 1px;
  background: linear-gradient(270deg, var(--gallery_card_color) 0%, #535353 50%, var(--gallery_card_color) 100%);
}

.gallery_card__interior .gallery_card__bar,
.gallery_card__window .gallery_card__bar {
  right: 0;
  left: auto;
  align-items: flex-end;
  text-align: right;
}

.gallery_card__number {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 18.9%;
  height: 410px;
  padding: 26px 44px;
  background: var(--gallery_card_color);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
}

.gallery_card__number p {
  margin: 0;
}

.gallery_card__number_img,
.gallery_card__number_img_left {
  display: block;
  width: 60px;
  height: auto;
  margin-top: 31px;
}

.gallery_card__number_img {
  margin-left: auto;
	margin-right:auto;
}

.gallery_card__number_img_left {
  margin-right: auto;
}

.gallery_card__interior .gallery_card__number,
.gallery_card__window .gallery_card__number {
  right: auto;
  left: 3px;
  padding-right: 32px;
  padding-left: 117px;
  text-align: right;
}




.gallery_card__exterior {
  --gallery_card_color: var(--color-brown);
}

.gallery_card__interior {
  --gallery_card_color: var(--color-green);
}

.gallery_card__wall {
  --gallery_card_color: var(--color-purple);
}

.gallery_card__window {
  --gallery_card_color: var(--color-pink);
}



.gallery_card__content {
  position: absolute;
  top: 212px;
  left: 6.7%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.gallery_card__interior .gallery_card__content,
.gallery_card__window .gallery_card__content {
  right: 2.8%;
  left: auto;
  text-align: right;
  align-items: flex-end;
}

.gallery_card__jp {
  margin: 0;
  width: 300px;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
	text-align:center;
	display:inline-block;
}

.gallery_card__title {
  position: relative;
  margin: -2px 0 -7px;
	width:500px;
  font-family: var(--font-script);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: 0.1em;
	text-align:center;
}

.gallery_card__title::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: auto;
	width:250px;
  height: 1px;
  background: currentColor;
  content: "";
}
.gallery_card__title::before{
	position: absolute;
  left: -70px;
  bottom: -3px;
  right: auto;
	width:100px;
  height: 1px;
  background: currentColor;
  content: "";
}

.gallery_card__interior .gallery_card__title::after,
.gallery_card__window .gallery_card__title::after {
  left: -70px;
	right:auto;
  width: 250px;
}
.gallery_card__interior .gallery_card__title::before,
.gallery_card__window .gallery_card__title::before {
  right: -70px;
	left:auto;
  width: 100px;
}

.gallery_card__title p {
  margin: 0;
	text-align:center;
}

.gallery_card p {
  font-weight: 700;
	
}

.gallery_card__content > p {
  margin: 0 0 33px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.gallery_card__content .button {
  width: 177px;
  min-width: 177px;
  min-height: 40px;
  padding: 7px 23px;
}

.news {
  padding: 80px 0;
  background: #d9d9d9;
}

.news__inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 70px;
}

.news__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 40px);
  letter-spacing: 0.15em;
}

.news__title p,
.news_item__title {
  margin: 0;
}

.news__list {
  display: grid;
}

.news__empty {
  margin: 0;
  font-family: "Montserrat", var(--font-en);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.news_item {
  display: grid;
  grid-template-columns: 180px 1fr 36px;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  font-family: "Montserrat", var(--font-en);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.news_item + .news_item {
  border-top: 0;
}

.news_item::after {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  content: "\2197";
	transform:rotate(45deg);
}

.services {
  padding: 0;
  color: var(--color-black);
  background: var(--color-white);
}

.services__inner {
  position: relative;
  width: 100%;
  min-height: 753px;
  margin-left: 0%;
	max-width:100%!important;
}

.services__image {
  position: absolute;
  top: 85px;
  right: 0;
  width: 52.85%;
  min-height: 437px;
  background-image: url("../images/figma-services-main.png");
  background-position: center;
  background-size: cover;
  box-shadow: 15px 15px 4px rgba(0, 0, 0, 0.05);
}

.services__body {
  position: absolute;
  top: 121px;
  left: 67px;
  width: min(588px, calc(100% - 134px));
}

.services__title {
  margin: 0 0 37px;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.services .section_kicker {
  margin-bottom: 25px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.services__body > p {
  width: min(544px, 100%);
  margin: 0 0 37px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.services__body .button {
  width: 177px;
  min-width: 177px;
  min-height: 40px;
  padding: 7px 23px;
}

.follow {
  position: relative;
  min-height: 732px;
	padding:150px 5% 80px;
  overflow: hidden;
  background: var(--color-white);
}

.follow__bg {
  position: absolute;
  inset: -90px 0;
  background-image: url("../images/figma-follow-bg.png");
  background-position: center calc(50% + var(--parallax_y, 0px));
  background-size: cover;
  will-change: background-position;
}

.follow__bg::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.follow__inner {
    display: flex;
    align-items: center;
    width: 100%;
	max-width:100%;
    padding: 40px 2.5% 40px 2.5%;
    background: var(--color-gray);
    justify-content: space-between;
    position: relative;
    z-index: 1;
	margin-bottom: 0;
}
.mg_bottom100{
	margin-bottom:100px;
}

.follow__body {
  width: min(466px, 100%);
}

.follow__hash {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}

.follow__title {
  margin: 0 0 20px;
  font-family: var(--font-script);
  font-size: clamp(42px, 4vw, 48px);
  font-weight: 700;
  line-height: 0.625;
  letter-spacing: 0.15em;
}


.follow p:last-child {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.15em;
	
}
.follow__title p{
	font-size:48px!important;
	font-weight:bold!important;
	line-height:1.2!important;
}

.follow__icons {
  display: flex;
  gap: 20px;
  margin-right: 2px;
}

.follow__icons a {
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--color-white);
  background-image: url("../images/figma-follow-instagram.png");
  background-position: center;
  background-size: 53px;
  background-repeat: no-repeat;
}

.contact {
  padding: 80px 0 72px;
  background: var(--color-gray);
}

.contact__inner {
  display: flex;
  align-items: center;
	max-width:100%;
	width:100%;
  padding:40px 2.5% 40px 2.5%;
  background: var(--color-gray);
  justify-content: space-between;
	position:relative;
	z-index:1;
}

.contact__lead {
  width: min(466px, 100%);
}

.contact__kicker {
  margin: 0 0 34px;
  font-family: var(--font-script);
  font-size: clamp(42px, 4vw, 48px);
  font-weight: 700;
  line-height: 0.625;
  letter-spacing: 0.15em;
	color:#000;
}

.contact__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.15em;
}
.contact__title p{
	padding-right:40px;
	color:#000;
}

.contact__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 353px));
  justify-content: end;
  gap: 0;
}

.contact_card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 153px;
  gap: 33px;
  padding: 28px 24px;
  color: var(--color-white);
  background: #0b0047;
}

.contact_card__light {
  color: var(--color-black);
  background: var(--color-white);
}

.contact_card__label {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.contact_card__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
	color:#fff;
	padding:10px 20px;
	background-color:#000;
	border-radius:30px;
}

.contact_card__action::after {
  content: "\2197";
}

.site_footer {
  padding: 48px 0 40px;
  color: var(--color-white);
  background: var(--color-blue);
}

.site_footer__inner {
  display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
  align-items: start;
}

.site_footer__brand a {
  display: block;
  margin: 40px 0 20px;
  font-family: var(--font-script);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.05em;
}
.cp_text{
	width:100%;
	text-align:right;
}
.site_footer__brand a p {
  margin: 0;
}

.site_footer__brand > p {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.site_footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 10px 34px;
  font-size: 14px;
}

.site_footer__actions {
  display: grid;
  gap: 18px;
}

.site_footer .button {
  min-height: 56px;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-ja);
  letter-spacing: 0.08em;
}
.site_footer__brand{
	width:100%;
	
}

 @media (max-width: 1024px) {
  .container {
    width: 88%;
  }

  .site_header__inner {
    min-height: 74px;
  }

  .global_nav {
    gap: 16px;
  }

  .contact__inner,
  .site_footer__inner {
    grid-template-columns: 1fr;
  }

  .contact__inner {
    width: 88%;
    min-height: auto;
    gap: 36px;
    padding: 56px 0;
  }

  .contact__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .services__inner {
    width: 88%;
    min-height: auto;
    margin: 0 auto;
    transform: none;
  }

  .services__image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 360px;
  }

  .services__body {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 42px;
  }
 }

.gallery_page {
  color: var(--color-white);
  background: var(--color-black);
}

.gallery_page p {
  margin-top: 0;
}

.gallery_page_hero {
  padding: 150px 0 0px;
  background: var(--color-black);
}

.gallery_page_hero__inner {
  text-align: center;
}

.gallery_page_hero__hash {
  margin-bottom: 24px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gallery_page_hero__title {
  font-family: var(--font-script);
  font-size:96px;
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0.15em;
	margin-bottom:-60px;
}

.gallery_page_hero__title p {
  margin: 0;
}

.gallery_page_list {
  display: grid;
  gap: 110px;
  padding-bottom: 120px;
  overflow: hidden;
	padding-top:220px;
	background-color:#003647;
}

.gallery_page_section {
  position: relative;
  min-height: 674px;
  margin: 0 auto;
  width: 100%;
}

.gallery_page_section__images {
  position: absolute;
  inset: 0;
}

@keyframes gallery_page_image_float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

.gallery_page_section__image {
  position: absolute;
  background-position: center;
  background-size: cover;
  animation: gallery_page_image_float 10s ease-in-out infinite;
  will-change: transform;
}

.gallery_page_section__image:after {
	position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    content: "";
}

.gallery_page_section__image__one {
  left: 0;
  bottom: 0;
  width: 20.1%;
  height: 53%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.gallery_page_section__image__two {
  left: 22.6%;
  top: 23%;
  width: 48%;
  height: 74%;
  animation-duration: 10s;
  animation-delay: -2s;
}

.gallery_page_section__image__three {
  left: 7%;
  top: 0;
  width: 31%;
  height: 64%;
  animation-duration: 10s;
  animation-delay: -4s;
}

.gallery_page_section__image__four {
  right: 20.8%;
  top: 0;
  width: 25%;
  height: 65%;
  animation-duration: 10s;
  animation-delay: -1.2s;
}

.gallery_page_section__image__five {
  right: 0;
  top: 4%;
  width: 22%;
  height: 91%;
  animation-duration: 10s;
  animation-delay: -5s;
}

@media (prefers-reduced-motion: reduce) {
  .gallery_page_section__image {
    animation: none;
    will-change: auto;
  }
}

.gallery_page_section__overlay {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 674px;
  padding: 80px 6%;
  text-align: center;
}

.gallery_page_section__title {
  margin-bottom: 52px;
  font-family: var(--font-script);
  font-size: clamp(54px, 7vw, 128px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
}

.gallery_page_section__window .gallery_page_section__title {
  letter-spacing: 0.1em;
}

.gallery_page_section__title p,
.gallery_page_section__button p,
.gallery_page_news__title p,
.gallery_page_news__item p {
  margin: 0;
}
.gallery_page_section__title p::first-letter {
  font-size: 200px;
  line-height: 0.75;
}

.gallery_page_section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 12px 30px;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: background 0.24s ease, transform 0.24s ease;
}

.gallery_page_section__button:hover,
.gallery_page_section__button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.gallery_page_section__exterior .gallery_page_section__image__one {
  background-image: url("../images/figma-gallery-page-exterior-01.png");
}

.gallery_page_section__exterior .gallery_page_section__image__two {
  background-image: url("../images/figma-gallery-page-exterior-02.png");
}

.gallery_page_section__exterior .gallery_page_section__image__three {
  background-image: url("../images/figma-gallery-page-exterior-03.png");
}

.gallery_page_section__exterior .gallery_page_section__image__four {
  background-image: url("../images/figma-gallery-page-exterior-04.png");
}

.gallery_page_section__exterior .gallery_page_section__image__five {
  background-image: url("../images/figma-gallery-page-exterior-05.png");
}

.gallery_page_section__interior .gallery_page_section__image__one {
  background-image: url("../images/figma-gallery-page-exterior-01.png");
}

.gallery_page_section__interior .gallery_page_section__image__two {
  background-image: url("../images/figma-gallery-page-interior-01.png");
}

.gallery_page_section__interior .gallery_page_section__image__three {
  background-image: url("../images/figma-gallery-page-interior-02.png");
}

.gallery_page_section__interior .gallery_page_section__image__four {
  background-image: url("../images/figma-gallery-page-exterior-04.png");
}

.gallery_page_section__interior .gallery_page_section__image__five {
  background-image: url("../images/figma-gallery-page-interior-03.png");
}

.gallery_page_section__wall .gallery_page_section__image__one {
  background-image: url("../images/figma-gallery-page-wall-01.png");
}

.gallery_page_section__wall .gallery_page_section__image__two {
  background-image: url("../images/figma-gallery-page-exterior-04.png");
}

.gallery_page_section__wall .gallery_page_section__image__three {
  background-image: url("../images/figma-gallery-page-wall-02.png");
}

.gallery_page_section__wall .gallery_page_section__image__four {
  background-image: url("../images/figma-gallery-page-wall-03.png");
}

.gallery_page_section__wall .gallery_page_section__image__five {
  background-image: url("../images/figma-gallery-page-wall-04.png");
}

.gallery_page_section__window .gallery_page_section__image__one {
  background-image: url("../images/figma-gallery-page-window-01.png");
}

.gallery_page_section__window .gallery_page_section__image__two {
  background-image: url("../images/figma-gallery-page-window-02.png");
}

.gallery_page_section__window .gallery_page_section__image__three {
  background-image: url("../images/figma-gallery-page-exterior-05.png");
}

.gallery_page_section__window .gallery_page_section__image__four {
  background-image: url("../images/figma-gallery-page-window-03.png");
}

.gallery_page_section__window .gallery_page_section__image__five {
  background-image: url("../images/figma-gallery-page-wall-04.png");
}

.gallery_page_news {
  padding: 80px 0;
  color: var(--color-black);
  background: #d9d9d9;
}

.gallery_page_news__inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 70px;
}

.gallery_page_news__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gallery_page_news__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  font-family: "Montserrat", var(--font-en);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gallery_page_contact {
  color: var(--color-black);
	background-color:#535353;
	padding:80px 5%;
}

 @media (max-width: 1024px) {
  .gallery_page_section {
    min-height: 560px;
  }

  .gallery_page_section__overlay {
    min-height: 560px;
  }

  .gallery_page_news__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
 }

 @media (max-width: 768px) {
  .gallery_page_hero {
    min-height: 460px;
    padding: 118px 0 70px;
  }

  .gallery_page_list {
    gap: 64px;
    padding-bottom: 72px;
  }

  .gallery_page_section {
    min-height: auto;
    width: 88%;
  }

  .gallery_page_section__images {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery_page_section__image,
  .gallery_page_section__image__one,
  .gallery_page_section__image__two,
  .gallery_page_section__image__three,
  .gallery_page_section__image__four,
  .gallery_page_section__image__five {
    position: static;
    width: auto;
    height: 180px;
  }

  .gallery_page_section__image__two {
    grid-column: span 2;
    height: 240px;
  }

  .gallery_page_section__overlay {
    min-height: auto;
    padding: 34px 0 0;
  }

  .gallery_page_section__title {
    margin-bottom: 24px;
  }

  .gallery_page_news {
    padding: 64px 0;
  }

  .gallery_page_news__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }
 }

.service_page {
  color: var(--color-white);
  background: var(--color-black);
}

.service_page p {
  margin-top: 0;
}

.service_page_hero {
  min-height: 900px;
  padding: 160px 0 110px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.9) 100%), url("../images/figma-service-page-hero.png");
  background-position: center;
  background-size: cover;
}

.service_page_hero__inner {
  text-align: center;
}

.service_page_hero__hash {
  margin-bottom: 24px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service_page_hero__title {
  margin: 0 0 70px;
  color: var(--color-white);
  font-family: var(--font-script);
  font-size: clamp(72px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0.15em;
}

.service_page_hero__title p,
.service_page_hero__lead p,
.service_page_hero__text p {
  margin: 0;
}

.service_page_hero__lead {
  margin: 0 0 64px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.service_page_hero__text {
  display: grid;
  gap: 8px;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.15em;
}

.service_offer {
  padding: 120px 0 118px 5%;
	width:85%;
	margin:150px auto 100px 0;
	background-color:#fff;
	position:relative;
}

.service_offer__inner {
	width:100%;
	max-width:100%;
}

.service_offer__script {
  margin-bottom: 28px;
  font-family: var(--font-script);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
	color:#000;
}

.service_offer__label {
  display: inline-flex;
  margin-bottom: 52px;
  padding: 6px 18px;
  min-width: 250px;
  background: var(--color-dark-gray);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
	color:#000;
}

.service_offer__label p,
.service_offer__title p,
.service_offer__text p {
  margin: 0;
}

.service_offer__title {
  margin-bottom: 30px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
	color:#000;
}

.service_offer__text {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
	color:#000;
}

.service_offer__image {
  min-height: 448px;
  background-image: url("../images/figma-service-page-main.png");
  background-position: center;
  background-size: cover;
	position:absolute;
	display:block;
	width:70%;
	top:-240px;
	right:-20%;
}
.service_offer__label,.service_offer__title,.service_offer__text{
	margin-left:10%;
}

.service_lineup {
  padding: 88px 0 118px;
	margin-left:10%;
	margin-right:-10%;
}

.service_lineup .section_kicker,
.service_lineup__title {
  text-align: center;
}

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

.service_lineup_card {
  min-height: 510px;
}

.service_lineup_card__image {
  min-height: 460px;
  background-image: url("../images/figma-service-page-card.png");
  background-position: center;
  background-size: cover;
	position:relative;
}
.service_lineup_card__image:after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.6);
}
.service_lineup_card:nth-child(2) .service_lineup_card__image {
  min-height: 400px;
}

.service_lineup_card:nth-child(3) .service_lineup_card__image {
  min-height: 340px;
}

.service_lineup_card__body {
  position: relative;
  min-height: 50px;
  padding: 4px 0 0 20px;
}

.service_lineup_card__body::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 1px;
  height: 34px;
  background: var(--color-dark-gray);
  content: "";
}

.service_lineup_card__en,
.service_lineup_card__jp {
  margin: 0;
  color: var(--color-dark-gray);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service_reasons {
  padding: 116px 0;
  color: var(--color-black);
  background: var(--color-white);
}

.service_reasons__inner {
  display: grid;
  gap: 72px;
}

.service_reasons__title {
	font-size:48px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  text-align: left;
	margin-bottom:60px;
}

.service_reasons__title p {
  margin: 0;
}

.service_reasons__blocks {
  display: grid;
  gap: 88px;
}

.service_reasons__block {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: 48px;
  align-items: stretch;
}

.service_reasons__image {
  width: 100%;
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.service_reasons__image__one {
  min-height: 520px;
  background-image: url("../images/figma-service-image.png");
}

.service_reasons__image__two {
  min-height: 680px;
  background-image: url("../images/figma-gallery-page-interior-02.png");
}

.service_reasons__items {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service_reasons__block:first-child .service_reasons__items {
  min-height: 520px;
}

.service_reasons__block:last-child .service_reasons__items {
  min-height: 680px;
}

.service_reason {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 0 36px;
  border-top: 1px solid var(--color-black);
}

.service_reason__number {
  margin: 0 0 20px;
  color: var(--color-black);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.service_reason__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.service_reason__title p,
.service_reason > p:last-child {
  margin: 0;
}

.service_reason > p:last-child {
  max-width: 640px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.service_flow {
  padding: 120px 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.74)), url("../images/figma-service-page-flow-bg.png");
  background-position: center;
  background-size: cover;
}

.service_flow__head {
  display: grid;
  justify-items: center;
  margin-bottom: 72px;
  text-align: center;
}

.service_flow__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.service_flow_card {
  color: var(--color-black);
  background: #ececec;
}

.service_flow_card__image {
  min-height: 162px;
  background-image: url("../images/figma-service-page-step.png");
  background-position: center;
  background-size: cover;
}

.service_flow_card__body {
  min-height: 110px;
  padding: 10px;
}

.service_flow_card__step {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 1px 10px;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.service_flow_card__title {
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service_flow_card__body p:last-child {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0.15em;
}

.service_gallery_nav {
  padding: 86px 0;
  background: var(--color-black);
}

.service_gallery_nav__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 60px;
}

.service_gallery_nav__title p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.service_gallery_nav__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service_gallery_nav__links a {
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service_gallery_nav__links p {
  margin: 0;
}

.service_contact {
  color: var(--color-black);
}

 @media (max-width: 1024px) {
  .service_offer__inner,
  .service_gallery_nav__inner {
    grid-template-columns: 1fr;
  }

  .service_reasons__block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service_flow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service_gallery_nav__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
 }

 @media (max-width: 768px) {
  .service_page_hero {
    min-height: 700px;
    padding: 118px 0 72px;
  }

  .service_offer,
  .service_lineup,
  .service_reasons,
  .service_flow,
  .service_gallery_nav {
    padding: 72px 0;
  }

  .service_offer__inner,
  .service_lineup__grid,
  .service_flow__grid,
  .service_gallery_nav__links {
    grid-template-columns: 1fr;
  }

  .service_offer__image,
  .service_lineup_card__image {
    min-height: 300px;
  }

  .service_lineup_card:nth-child(2) .service_lineup_card__image {
    min-height: 250px;
  }

  .service_lineup_card:nth-child(3) .service_lineup_card__image {
    min-height: 200px;
  }

  .service_reasons__image__one,
  .service_reasons__block:first-child .service_reasons__items {
    min-height: 320px;
  }

  .service_reasons__image__two,
  .service_reasons__block:last-child .service_reasons__items {
    min-height: 420px;
  }

  .service_reason {
    padding: 22px 0 28px;
  }
 }

.about_page {
  color: var(--color-white);
  background: var(--color-black);
}

.about_page .section_kicker {
  color: var(--color-white);
}

.about_page_hero {
  display: flex;
  align-items: flex-start;
  min-height: 895px;
  padding-top: 150px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.84) 100%), url("../images/figma-about-page-hero.png");
  background-position: center 295px;
  background-size: 100% 600px;
  background-repeat: no-repeat;
}

.about_page_hero__inner {
  position: relative;
}

.about_page_hero__hash {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about_page_hero__title {
  margin: 0 auto;
  width: fit-content;
  font-family: var(--font-script);
  font-size: clamp(64px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: 0.15em;
}

.about_page_hero__title p {
  margin: 0;
}

.about_page_message {
  padding: 86px 0 118px;
  text-align: center;
}

.about_page_message__lead {
	margin:0 0 120px;
	font-family: var(--font-en);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 0.2em;
}

.about_page_message__title {
  margin: 0 0 120px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  line-height: 3.1;
  letter-spacing: 0.05em;
}

.about_page_message__title p,
.about_page_message__body p {
  margin: 0;
}

.about_page_message__body {
  display: grid;
  gap: 8px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.15em;
}

.about_page_message__signature {
  margin: 240px 0 0;
  font-family: var(--font-script);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.about_page_gallery {
  padding: 70px 0 118px;
	background-color:#D9D9D9;
	margin-bottom:120px;
}

.about_page_gallery .section_kicker,
.about_page_gallery__title {
  text-align: center;
	color:#000!important;
}

.about_page_gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 72px;
}

.about_page_gallery_card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background-position: center;
  background-size: cover;
  box-shadow: 15px 15px 4px rgba(0, 0, 0, 0.05);
}

.about_page_gallery_card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.78) 100%);
  content: "";
}

.about_page_gallery_card__exterior,
.about_page_gallery_card__interior,
.about_page_gallery_card__window {
  background-image: url("../images/figma-about-page-gallery.png");
}

.about_page_gallery_card__wall {
  background-image: url("../images/figma-about-page-gallery-wall-7fe7cd.png");
}

.about_page_gallery_card__inner {
  position: absolute;
  z-index: 1;
  display:block;
	width:100%;
  padding: 34px 12px 19px;
	background-color:rgba(0,0,0,0.2);
	bottom:0;
	left:0;
}

.about_page_gallery_card__jp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.about_page_gallery_card__jp::before,
.about_page_gallery_card__jp::after {
  flex: 1 1 auto;
  height: 1px;
  background: var(--color-white);
  content: "";
}

.about_page_gallery_card__title {
  margin: 0 0 10px;
  font-family: var(--font-script);
  font-size: 1.4vw;
  line-height: 1.26;
  letter-spacing: 0.05em;
}

.about_page_gallery_card__title p,
.about_page_gallery_card__copy {
  margin: 0;
}

.about_page_gallery_card__copy {
	margin: 15px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.about_page_gallery_card .button {
  align-self: flex-start;
  color: var(--color-white);
  background: var(--color-black);
}

.about_company {
  padding: 98px 0 116px;
  border-top: 80px solid var(--color-black);
}

.about_company .section_kicker,
.about_company__title {
  text-align: center;
}

.about_company__lead {
  display: grid;
  max-width: 1010px;
  margin: 64px auto 72px;
  gap: 8px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-align: center;
}

.about_company__lead p {
  margin: 0;
}

.about_company_table {
  display: grid;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
}

.about_company_table div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 54px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.about_company_table dt,
.about_company_table dd {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.about_company_table dt{
	padding-left:40px;
}

.about_service {
  padding: 96px 0;
  background: #fff;
}

.about_service__inner {
  display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width:95%;
	max-width:100%;
	margin:0 0 0 auto;
}

.about_service__body .section_kicker{
	background: var(--color-dark-gray);
	padding:8px 10px;
	display:inline-block;
}
.about_service__brand {
  margin: 22px 0 12px;
  font-family: var(--font-en);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.15em;
	color:#000;
}

.about_service__title {
  display: inline-flex;
  margin: 0 0 28px;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
	color:#000;
}

.about_service__title p,
.about_service__text p {
  margin: 0;
}

.about_service__text {
  display: grid;
  gap: 18px;
  max-width: 544px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
	color:#000;
}

.about_service__image {
	width:50%;
  min-height: 510px;
  background-image: url("../images/figma-about-page-service.png");
  background-position: center;
  background-size: cover;
}

.about_related {
  padding: 92px 0 124px;
  text-align: center;
}

.about_related__inner {
  display: grid;
  justify-items: center;
}

.about_related__title {
  margin-bottom: 42px;
}

.about_related__logo {
  width: 257px;
  height: 102px;
  margin-bottom: 14px;
  background-image: url("../images/figma-about-page-kinseido.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.about_related p:last-child {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.15em;
}

 @media (max-width: 1024px) {
  .about_page_gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

 @media (max-width: 768px) {
  .about_page_hero {
    min-height: 680px;
    padding-top: 118px;
    background-position: center 220px;
    background-size: auto 460px;
  }

  .about_page_message,
  .about_page_gallery,
  .about_company,
  .about_service,
  .about_related {
    padding: 72px 0;
  }

  .about_page_message__lead,
  .about_page_message__title,
  .about_page_message__signature {
    margin-bottom: 44px;
  }

  .about_page_message__body {
    text-align: left;
  }

  .about_page_gallery__grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .about_company_table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about_service__image {
    min-height: 320px;
  }
 }

 @media (max-width: 768px) {
  .site_logo {
    font-size: 26px;
  }

  .site_logo__mark,
  .language_switch {
    display: none;
  }

  .nav_toggle_button {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    cursor: pointer;
  }

  .nav_toggle_button span:not(.screen_reader_text) {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
  }

  .global_nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 20px 6%;
    background: rgba(0, 0, 0, 0.9);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.24s ease;
  }

  .global_nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav_toggle:checked ~ .global_nav {
    transform: scaleY(1);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__inner {
    padding-bottom: 48px;
  }

  .intro,
  .gallery,
  .services {
    padding: 72px 0;
  }

  .follow {
    min-height: 560px;
  }

  .follow__bg {
    inset: -70px 0;
  }

  .contact {
    padding: 72px 0 56px;
  }

  .about_panel {
    min-height: 520px;
  }

  .about_panel__inner,
  .about_panel__right .about_panel__inner {
    justify-content: flex-start;
  }

  .about_card {
    padding: 28px;
    background: rgba(0, 0, 0, 0.46);
  }

  .about_card__number {
    min-width: auto;
    font-size: 16px;
  }

  .gallery_list {
    gap: 36px;
    margin-top: 44px;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .gallery_card {
    min-height: auto;
    padding-top: 260px;
    background: var(--gallery_card_color);
  }

  .gallery_card__image,
  .gallery_card__interior .gallery_card__image,
  .gallery_card__window .gallery_card__image {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 260px;
  }

  .gallery_card__bar,
  .gallery_card__interior .gallery_card__bar,
  .gallery_card__window .gallery_card__bar {
    position: relative;
    right: auto;
    left: auto;
    align-items: flex-start;
    width: 100%;
    height: auto;
    min-height: 96px;
    padding: 18px 24px;
    text-align: left;
  }

  .gallery_card__number,
  .gallery_card__interior .gallery_card__number,
  .gallery_card__window .gallery_card__number {
    position: relative;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 72px;
    padding: 22px 24px;
  }

  .gallery_card__number::after,
  .gallery_card__interior .gallery_card__number::after,
  .gallery_card__window .gallery_card__number::after {
    top: 22px;
    right: 24px;
    left: auto;
    width: 38px;
    height: 28px;
  }

  .gallery_card__jp,
  .gallery_card__title {
    width: 100%;
  }

  .gallery_card__title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .gallery_card__content,
  .gallery_card__interior .gallery_card__content,
  .gallery_card__window .gallery_card__content {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    padding: 32px 24px 40px;
    text-align: left;
    align-items: flex-start;
  }

  .news__inner,
  .news_item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news_item {
    padding: 22px 0;
  }

  .news_item::after {
    display: none;
  }

  .services__image {
    min-height: 300px;
  }

  .follow__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 560px;
  }

  .follow__icons a {
    width: 64px;
    height: 64px;
    background-size: 38px;
  }

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

  .contact_card {
    min-height: 132px;
  }

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

.contact_page {
  background: var(--color-white);
}

.contact_page_hero {
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  padding-top: 100px;
  color: var(--color-white);
  background: var(--color-black);
}

.contact_page_hero__inner {
  padding: 22px 0 28px;
}

.contact_page_hero__title {
  max-width: 590px;
  margin: 0;
  font-size: clamp(30px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.contact_page_hero__title p,
.contact_page_form__intro p,
.contact_page_form__privacy p,
.contact_field__label p,
.contact_form__submit p,
.contact_page_news__title p,
.contact_page_news__item p {
  margin: 0;
}

.contact_page_form {
  padding: 43px 0 96px;
  background: var(--color-white);
}

.contact_page_form__inner {
  max-width: 1080px;
}

.contact_page_form__intro,
.contact_page_form__privacy {
  max-width: 1056px;
  margin-left: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.contact_page_form__intro {
  margin-bottom: 28px;
}

.contact_page_form__privacy {
  margin-bottom: 86px;
}

.contact_page_form__privacy_link {
  display: inline-flex;
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact_form {
  display: grid;
  gap: 34px;
}

.contact_form__grid {
  display: grid;
  gap: 26px;
}

.contact_field {
  display: grid;
  grid-template-columns: minmax(190px, 240px) 1fr;
  align-items: start;
  gap: 28px;
}

.contact_field__label {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 68px;
  gap: 8px;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.contact_field__required {
  display: inline-grid;
  place-items: center;
  width: 56px;
  min-height: 22px;
  color: var(--color-white);
  background: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.contact_field input,
.contact_field textarea {
  width: 100%;
  min-height: 68px;
  padding: 16px 20px;
  border: 0.5px solid #b0b0b0;
  border-radius: 10px;
  color: var(--color-black);
  background: var(--color-white);
  font: inherit;
}

.contact_field textarea {
  min-height: 324px;
  resize: vertical;
}

.contact_field input:focus,
.contact_field textarea:focus {
  border-color: var(--color-black);
  outline: 2px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
}

.contact_field__textarea {
  align-items: stretch;
}

.contact_form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 248px;
  min-height: 64px;
  margin-top: 8px;
  padding: 14px 48px;
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.contact_form__submit:hover,
.contact_form__submit:focus-visible {
  transform: translateY(-2px);
  opacity: 0.82;
}

.contact_page_news {
  padding: 64px 0 82px;
  background: var(--color-white);
}

.contact_page_news__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 112px;
}

.contact_page_news__title {
  font-family: var(--font-en);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.contact_page_news__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  min-height: 111px;
  gap: 76px;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contact_page_news__item::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 1px;
  background: var(--color-black);
  content: "";
}

 @media (max-width: 1024px) {
  .contact_field {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact_page_form__intro,
  .contact_page_form__privacy {
    margin-left: 0;
  }

  .contact_page_news__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
 }

 @media (max-width: 768px) {
  .contact_page_hero {
    min-height: 190px;
  }

  .contact_page_form {
    padding: 56px 0 72px;
  }

  .contact_page_form__privacy {
    margin-bottom: 56px;
  }

  .contact_field__label {
    min-height: auto;
  }

  .contact_field input {
    min-height: 58px;
  }

  .contact_field textarea {
    min-height: 220px;
  }

  .contact_page_news {
    padding: 56px 0 72px;
  }

  .contact_page_news__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .contact_page_news__item::after {
    display: none;
  }
 }

.news_archive {
  color: var(--color-black);
  background: var(--color-white);
}

.news_archive_hero {
  display: flex;
  align-items: flex-end;
  min-height: 360px;
  padding: 140px 0 72px;
  background: #d9d9d9;
}

.news_archive_hero__title {
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.12em;
}

.news_archive_hero__title p,
.news_archive_hero__lead,
.news_archive_list__title p,
.news_archive_categories p,
.news_archive_item p,
.news_archive_empty {
  margin: 0;
}

.news_archive_hero__lead {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.news_archive_list {
  padding: 96px 0 120px;
}

.news_archive_list__inner {
  display: grid;
  gap: 56px;
}

.news_archive_list__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.news_archive_list__title {
  font-family: var(--font-en);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.news_archive_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news_archive_categories p,
.news_archive_item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid var(--color-black);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news_archive_items {
  display: grid;
}

.news_archive_item {
  position: relative;
  display: grid;
  grid-template-columns: 160px 150px 1fr 36px;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  border-top: 1px solid var(--color-black);
  font-family: "Montserrat", var(--font-en);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news_archive_item:last-child {
  border-bottom: 1px solid var(--color-black);
}

.news_archive_item::after {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  content: "\2197";
  transform: rotate(45deg);
}

.news_archive_item__title {
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.news_archive_empty {
  padding: 32px 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  font-family: "Montserrat", var(--font-en);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news_archive_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.news_archive_pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-black);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news_archive_pagination .page-numbers.current {
  color: var(--color-white);
  background: var(--color-black);
}

@media (max-width: 1024px) {
  .news_archive_list__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news_archive_item {
    grid-template-columns: 140px 140px 1fr 36px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .news_archive_hero {
    min-height: 300px;
    padding: 118px 0 56px;
  }

  .news_archive_list {
    padding: 72px 0 88px;
  }

  .news_archive_item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .news_archive_item::after {
    display: none;
  }
}

.news_archive {
  padding-top: 84px;
  background: var(--color-white);
}


.news_archive_list {
  padding: 38px 0 88px;
}

.news_archive_list__inner {
  gap: 45px;
}

.news_archive_hero__title {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(56px, 7vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
}

.news_archive_categories {
  justify-content: flex-start;
  gap: 18px;
}

.news_archive_categories p {
  min-width: 77px;
  min-height: 24px;
  padding: 4px 18px;
  border: 1px solid var(--color-black);
  border-radius: 4px;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-ja);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.news_archive_categories p.is_active {
  color: var(--color-white);
  background: #082f20;
}

.news_archive_item {
  grid-template-columns: 124px 98px 1fr 24px;
  gap: 24px;
  min-height: 82px;
  border-color: var(--color-black);
  font-family: var(--font-ja);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.news_archive_item time {
  font-family: "Montserrat", var(--font-en);
  font-weight: 700;
}

.news_archive_item__category {
  min-width: 70px;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: var(--font-ja);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.news_archive_item__title {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.news_archive_item::after {
  width: 24px;
  height: 24px;
  border: 0;
  font-family: var(--font-en);
  font-size: 18px;
  content: "\2192";
  transform: none;
}

.news_archive_banners {
  padding: 92px 0 96px;
  background: #004b4f;
}

.news_archive_banners__inner {
  display: grid;
  gap: 82px;
  max-width: none;
  width: 94%;
}

.archive_banner {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  align-items: center;
  min-height: 165px;
  padding: 30px 26px;
  background: #d9d9d9;
}

.archive_banner__lead {
  display: grid;
  align-content: center;
  gap: 8px;
}

.archive_banner__title {
  font-family: var(--font-script);
  font-size: clamp(42px, 4vw, 48px);
  font-weight: 700;
  line-height: 0.625;
  letter-spacing: 0.15em;
}

.archive_banner__title p,
.archive_banner__lead p,
.archive_gallery_banner__item p,
.archive_gallery_banner__item span,
.archive_contact_banner__card p,
.archive_contact_banner__card span {
  margin: 0;
	color:#000;
}
.archive_gallery_banner__item_teal p,.archive_gallery_banner__item_dark p{
	color:#fff;
}

.archive_banner__lead > p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
	margin-top:10px;
	margin-left:5px;
}

.archive_contact_banner .archive_banner__lead > p:last-child {
  max-width: 400px;
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.archive_gallery_banner__grid,
.archive_contact_banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-white);
}

.archive_gallery_banner__item,
.archive_contact_banner__card {
  display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 130px;
    gap: 15px;
    padding: 20px 0px;
  color: var(--color-black);
  background: var(--color-white);
  text-align: center;
}

.archive_gallery_banner__item_dark,
.archive_contact_banner__card_dark {
  color: var(--color-white);
  background: #12004d;
}

.archive_gallery_banner__item_teal {
  color: var(--color-white);
  background: #004b4f;
}

.archive_gallery_banner__item_gray {
  background: #bfbfbf;
}

.archive_gallery_banner__item p,
.archive_contact_banner__card p {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
	margin-top:10px;
}

.archive_gallery_banner__item span,
.archive_contact_banner__card span {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff;
    padding: 10px 20px;
    background-color: #000;
    border-radius: 30px;
}

.archive_gallery_banner__item span::after,
.archive_contact_banner__card span::after {
  margin-left: 8px;
  content: "\2197";
}

.archive_contact_banner {
  grid-template-columns: minmax(220px, 430px) 1fr;
}

.archive_contact_banner__actions {
  align-self: stretch;
}

.archive_contact_banner__card {
  min-height: 118px;
}

@media (max-width: 1024px) {
  .archive_banner,
  .archive_contact_banner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .news_archive {
    padding-top: 74px;
  }

  .news_archive_list {
    padding: 34px 0 64px;
  }

  .news_archive_categories {
    gap: 10px;
  }

  .news_archive_item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .news_archive_banners {
    padding: 56px 0;
  }

  .news_archive_banners__inner {
    width: 88%;
    gap: 48px;
  }

  .archive_gallery_banner__grid,
  .archive_contact_banner__actions {
    grid-template-columns: 1fr;
  }
}

.news_single {
  color: var(--color-black);
  background: var(--color-white);
}

.news_single__article {
  padding: 150px 0 96px;
}

.news_single__inner {
  display: grid;
  gap: 28px;
}

.news_single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.news_single__meta time {
  font-family: "Montserrat", var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news_single__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 28px;
  margin: 0;
  padding: 5px 12px;
  border: 1px solid var(--color-black);
  border-radius: 4px;
  font-family: var(--font-ja);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.news_single__title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.news_single__title p {
  margin: 0;
}

.news_single__divider {
  width: 100%;
  height: 0;
  margin: 4px 0 8px;
  border: 0;
  border-top: 1px solid var(--color-black);
}

.news_single__content {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.news_single__content > *:first-child {
  margin-top: 0;
}

.news_single__content > *:last-child {
  margin-bottom: 0;
}

.news_single__content p {
  margin: 0 0 1.4em;
}

.news_single__content img {
  display: block;
  width: 100%;
  height: auto;
}

.news_single__figure {
  margin: 12px 0 0;
}

.news_single__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d9d9d9;
}

.news_single__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  color: var(--color-white);
  background: var(--color-black);
  transition: opacity 0.24s ease;
}

.news_single__back:hover,
.news_single__back:focus-visible {
  opacity: 0.82;
}

.news_single__back p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news_single .news_archive_banners {
  padding: 92px 0 96px;
  background: #004b4f;
}

@media (max-width: 768px) {
  .news_single__article {
    padding: 74px 0 64px;
  }

  .news_single__inner {
    gap: 22px;
  }

  .news_single__title {
    font-size: 22px;
  }

  .news_single__back {
    min-height: 50px;
  }

  .news_single .news_archive_banners {
    padding: 56px 0;
  }
}
