@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: auto;
}

html {
  font-size: 20px;
  scroll-behavior: auto;
}

body {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.is-open {
  overflow: hidden;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

address {
  font-style: normal;
}

.tb {
  dsplay: none;
}

.sp {
  dsplay: none;
}

.pc {
  display: block;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.opening__inner {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}
.opening__name {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.opening__logo {
  order: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.opening.is-show .opening__name, .opening.is-show .opening__logo {
  opacity: 1;
  transform: translateY(0);
}
.opening__logo-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #3a3a3a;
  letter-spacing: 0.05em;
}

.btn-split {
  display: inline-flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8e6e2;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.btn-split:hover {
  opacity: 0.75;
}
.btn-split__label {
  background-color: #636A74;
  color: #ffffff;
  padding: 11px 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-split__arrow {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #888888;
  margin-bottom: 4px;
}

.section-title {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.header {
  position: relative;
  width: 100%;
  height: 72px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  /*&.is-scrolled {
    background-color: $color-white;
    border-bottom: 1px solid $color-gray-light;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }*/
}
.header__inner {
  height: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 1 !important;
}
.header__logo-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 36px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #888888;
}
.header__logo-name {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #3a3a3a;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 68px;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}
.header__nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #3a3a3a;
  transition: opacity 0.3s ease;
  font-weight: 500;
}
.header__nav-link:hover {
  opacity: 0.55;
}
.header__nav-link--contact {
  padding: 7px 14px;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
}

.hamburger {
  position: fixed;
  top: 13px;
  right: 80px;
  z-index: 600;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #636A74;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: background-color 0.3s ease;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 500;
  pointer-events: none;
  overflow: hidden;
  width: 100%;
  max-width: 24vw;
  padding: 50px 60px;
  height: 100lvh;
}

.nav-drawer::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: #636A74;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-drawer.is-open {
  pointer-events: auto;
}

.nav-drawer.is-open::before {
  transform: scale(12);
}

.nav-drawer__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-drawer__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer__link {
  display: block;
  padding: 16px 0 16px 15px;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  color: #ffffff;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.nav-drawer__link:hover {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  padding-left: 8px;
}
.nav-drawer__link--contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 0;
  padding: 16px 72px 16px 24px;
  background-color: #F1F2F3;
  color: #1a1a1a;
  border: none;
  border-bottom: none;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.nav-drawer__link--contact::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b3b3b3;
  color: #ffffff;
  font-size: 1rem;
}
.nav-drawer__link--contact:hover {
  color: #1a1a1a;
  opacity: 0.8;
  padding-left: 28px;
  background-color: #F1F2F3;
}

.nav-drawer.is-open .nav-drawer__link {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  color: #636A74;
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 200px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero__bg-logo {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 95%;
  max-width: 1100px;
  aspect-ratio: 862.76/502.95;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.hero__bg-logo canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.hero__title {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 5.3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero__title span {
  display: block;
}
.hero__lead {
  font-size: 1rem;
  color: #3a3a3a;
  line-height: 2;
  letter-spacing: 0.05em;
}
.hero__news {
  position: absolute;
  right: 80px;
  bottom: 4vh;
  width: 385px;
  background-color: #F1F2F3;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  z-index: 10;
  border-radius: 6px;
}
.hero__news-link {
  display: flex;
  align-items: stretch;
  color: #1a1a1a;
  transition: opacity 0.3s ease;
}
.hero__news-link:hover {
  opacity: 0.8;
}
.hero__news-date {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 16px 0 20px;
  font-size: 0.8rem;
  color: #888888;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.hero__news-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 18px 12px 18px 0;
  font-size: 0.6rem;
  line-height: 1.5;
}
.hero__news-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  background-color: #636A74;
  color: #ffffff;
  font-size: 1rem;
}
.hero__ticker {
  width: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 2;
}
.hero__ticker-inner {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 300;
  color: rgba(26, 26, 26, 0.07);
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 16px 0;
}
.hero__ticker-inner span {
  display: inline-flex;
  align-items: center;
}
.hero__ticker-inner span::after {
  content: "·";
  margin: 0 0.6em;
  font-style: normal;
}

.concept {
  position: relative;
  overflow: hidden;
  padding-top: 75vh;
}
.concept__sticky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.concept__bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}
.concept__bg img,
.concept__bg video {
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  opacity: 0.55;
}
.concept__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(140deg, rgba(12, 10, 10, 0.84) 0%, rgba(22, 18, 18, 0.58) 50%);
}
.concept__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 120px 80px 160px;
  will-change: transform;
}
.concept__heading {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: clamp(1.44rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}
.concept__body {
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: #fff;
  line-height: 2.7;
  letter-spacing: 0.05em;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 80px 140px;
}
.service__left-inner {
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: none;
}
.service__left-inner::-webkit-scrollbar {
  display: none;
}
.service__left-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.service__left-heading {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}
.service__left-names {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #636A74;
  margin-bottom: 36px;
}
.service__left-body p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 14px;
}
.service__left-body p:last-child {
  margin-bottom: 0;
}
.service__card {
  padding: 64px 50px;
  background: #F1F2F3;
  margin-bottom: 10%;
  max-width: 621px;
  border-radius: 16px;
}
.service__card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.service__card-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e8e6e2;
  margin: 0 auto 44px;
}
.service__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service__card-header {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
}
.service__card-num {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #636A74;
  line-height: 1;
  flex-shrink: 0;
  width: 68px;
  padding-top: 2px;
}
.service__card-divider {
  width: 1px;
  align-self: stretch;
  background-color: #e8e6e2;
  margin: 0 24px;
  flex-shrink: 0;
}
.service__card-cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #888888;
  margin-bottom: 8px;
}
.service__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin: 0;
}
.service__card-header > .service__card-cat, .service__card-header > .service__card-title {
  display: block;
}
.service__card-header {
  display: grid;
  grid-template-columns: 68px 1px max-content;
  grid-template-rows: auto auto;
  column-gap: 24px;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}
.service__card-header .service__card-num {
  grid-column: 1;
  grid-row: 1/3;
  align-self: start;
}
.service__card-header .service__card-divider {
  grid-column: 2;
  grid-row: 1/3;
}
.service__card-header .service__card-cat {
  grid-column: 3;
  grid-row: 1;
  padding-left: 20px;
}
.service__card-header .service__card-title {
  grid-column: 3;
  grid-row: 2;
  padding-left: 20px;
}
.service__card-text {
  font-size: 0.9rem;
  color: #3a3a3a;
  line-height: 2;
  margin-bottom: 28px;
}
.service__card-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 0 140px;
}
.works__left {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.works__card {
  border-radius: 16px;
  padding: 24px;
  background-color: #f2f1ef;
}
.works__card-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
}
.works__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.works__card-photo:hover img {
  transform: scale(1.04);
}
.works__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.works__card-logo {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}
.works__card-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.works__card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #F1F2F3;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 12px;
}
.works__card-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.works__card-pin {
  display: block;
  color: #888888;
}
.works__card-area {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.works__card-divider {
  width: 1px;
  align-self: stretch;
  background-color: #e8e6e2;
  flex-shrink: 0;
}
.works__card-desc {
  font-size: 0.85rem;
  color: #3a3a3a;
  line-height: 1.85;
}
.works__right-inner {
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: none;
}
.works__right-inner::-webkit-scrollbar {
  display: none;
}
.works__right-inner {
  padding: 60px 80px;
}
.works__right-body {
  margin-top: 40px;
}
.works__right-body p {
  font-size: 1rem;
  color: #636A74;
  line-height: 2;
  margin-bottom: 24px;
}
.works__right-body p:last-child {
  margin-bottom: 0;
}

.partner-slider {
  overflow: hidden;
  padding: 60px 0;
  background-color: #ffffff;
}
.partner-slider__track {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  width: max-content;
  animation: partner-scroll 38s linear infinite;
  will-change: transform;
}
.partner-slider:hover .partner-slider__track {
  animation-play-state: paused;
}
.partner-slider__item {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.partner-slider__item:hover {
  opacity: 0.7;
}
.partner-slider__item:nth-child(odd) {
  margin-top: 28px;
}
.partner-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

@keyframes partner-scroll {
  to {
    transform: translateX(calc(340px * -6));
  }
}
.cta {
  padding: 120px 80px;
  text-align: center;
  background: #f1f2f3;
  margin: 50px 0 0 0;
}
.cta__link {
  display: block;
  gap: 20px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.1em;
  background-color: #333333;
  border-radius: 16px;
  padding: 22px 52px;
  transition: opacity 0.3s ease;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
  position: relative;
}
.cta__link:hover {
  opacity: 0.7;
}
.cta__arrow {
  position: absolute;
  display: block;
  width: 13.71px;
  height: 34.01px;
  flex-shrink: 0;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.cta__sub {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.company {
  padding: 120px 80px 140px;
  overflow: hidden;
}
.company__header {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  column-gap: 54px;
  margin-bottom: 72px;
}
.company__header-left {
  padding-left: 0;
}
.company__header-line {
  position: relative;
  margin-top: 48px;
  height: 8px;
}
.company__header-line::before, .company__header-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}
.company__header-line::before {
  top: 0;
}
.company__header-line::after {
  top: 4px;
}
.company__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  column-gap: 84px;
  align-items: start;
  max-width: 1440px;
}
.company__image-wrap {
  position: relative;
  width: 100%;
  min-height: 660px;
}
.company__image-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 400px;
  height: 596px;
  background: #a9a9a9;
  border-radius: 16px;
}
.company__image {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 593px;
  margin-left: 80px;
  border-radius: 14px;
  overflow: hidden;
}
.company__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.company__table-wrap {
  padding-top: 8px;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.company__table tbody {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.company__table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.company__table tr:last-child {
  border-bottom: none;
}
.company__table th,
.company__table td {
  padding: 30px 0 28px;
  vertical-align: top;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
  border-bottom: 1px solid #A4A4A4;
}
.company__table th {
  width: 186px;
  padding-right: 64px;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: none;
}
.company__table td {
  color: #636A74;
  font-weight: 500;
  word-break: break-word;
}
@media (max-width: 1200px) {
  .company {
    padding: 100px 0 120px;
  }
  .company__header {
    grid-template-columns: 220px 1fr;
    column-gap: 40px;
  }
  .company__inner {
    grid-template-columns: 430px 1fr;
    column-gap: 56px;
  }
  .company__image-wrap {
    min-height: 560px;
  }
  .company__image-bg {
    width: 340px;
    height: 506px;
    left: 40px;
    top: -36px;
  }
  .company__image {
    width: 340px;
    height: 503px;
    margin-left: 82px;
  }
  .company__table th {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .company {
    padding: 80px 20px 100px;
  }
  .company__header {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 48px;
  }
  .company__header-line {
    margin-top: 0;
  }
  .company__inner {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }
  .company__image-wrap {
    min-height: auto;
    padding-left: 12px;
  }
  .company__image-bg {
    width: calc(100% - 56px);
    max-width: 340px;
    height: 440px;
    left: 0;
    top: -20px;
  }
  .company__image {
    width: calc(100% - 56px);
    max-width: 340px;
    height: 440px;
    margin-left: 44px;
  }
  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
    padding: 14px 0;
  }
  .company__table th {
    padding-bottom: 0;
  }
  .company__table td {
    padding-top: 6px;
  }
}

.faq {
  padding: 120px 0;
  background-color: #F1F2F3;
  border-radius: 16px;
  margin: 0 auto;
  max-width: calc(100% - 80px);
}
.faq__header {
  padding: 0 80px;
  margin-bottom: 56px;
}
.faq__inner {
  padding: 0 80px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
.faq__item {
  border-top: 1px solid #e8e6e2;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0 24px;
}
.faq__item:first-child {
  border-top: none;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.faq__icon::before {
  transform: translateY(-50%) rotate(0deg);
}
.faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq__question[aria-expanded=true] .faq__icon::after {
  transform: translateY(-50%) rotate(0deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq__answer p {
  font-size: 0.9rem;
  color: #636A74;
  line-height: 1.9;
  padding-bottom: 24px;
}
.faq__answer.is-open {
  max-height: 999px;
  opacity: 1;
  padding-bottom: 24px;
}

.news {
  padding: 120px 0;
  background-color: #ffffff;
}
.news__header {
  padding: 0 80px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.news__header-text {
  flex: 1;
}
.news__more {
  flex-shrink: 0;
}
.news__inner {
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.news__item {
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #F1F2F3;
  border-radius: 16px;
}
.news__item:hover {
  transform: translateY(-8px);
}
.news__item a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px;
  border-radius: 16px;
}
.news__item-image {
  overflow: hidden;
  height: 240px;
  border-radius: 16px;
  background-color: #e8e6e2;
}
.news__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news__item-image:hover img {
  transform: scale(1.05);
}
.news__item-body {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news__item-date {
  display: block;
  font-size: 0.8rem;
  color: #888888;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.news__item-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 45px;
  color: #1a1a1a;
}
.news__item-link {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  background: #636A74;
  color: #ffffff;
  border-radius: 100vh;
  padding: 6px 16px;
  align-self: flex-end;
}
.news__item:hover .news__item-link {
  color: #1a1a1a;
}

.footer {
  background-color: #636A74;
  color: #ffffff;
  overflow: hidden;
}
.footer__inner {
  display: flex;
  padding: 56px 80px 40px;
}
.footer__company {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer__address {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
.footer__divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0 80px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 20px 80px;
}
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.footer__nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}
.footer__nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: #ffffff;
}

.footer-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #f1f2f3;
}
.footer-ticker__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  font-family: "Manrope", sans-serif;
  font-size: clamp(80px, 11vw, 150px);
  font-weight: 300;
  color: rgba(26, 26, 26, 0.07);
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 16px 0;
  animation: footer-ticker-scroll 30s linear infinite;
}
.footer-ticker__inner span {
  display: inline-flex;
  align-items: center;
}
.footer-ticker__inner span::after {
  content: "·";
  margin: 0 0.6em;
  font-style: normal;
}

@keyframes footer-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 100;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  background-color: #3a3a3a;
  transform: translateY(-2px);
}
.page-top img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.char {
  display: inline-block;
  will-change: transform, opacity;
}
.char:empty {
  min-width: 0.3em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.page-hero {
  margin-top: 72px;
  padding: 80px 80px 60px;
  background-color: #f2f1ef;
  border-bottom: 1px solid #e8e6e2;
}
.page-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.55rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 80px;
}

.contact-form__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  font-size: 0.85rem;
  color: #3a3a3a;
}

.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #e8e6e2;
}
.form-row:first-of-type {
  border-top: 1px solid #e8e6e2;
}

.form-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  padding-top: 12px;
  letter-spacing: 0.02em;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.badge--required {
  background-color: #b91c1c;
  color: #ffffff;
}
.badge--optional {
  background-color: #e8e6e2;
  color: #888888;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #e8e6e2;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #888888;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #888888;
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1a1a1a;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #1a1a1a;
  cursor: pointer;
}

.form-submit {
  margin-top: 48px;
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #3a3a3a;
}

.privacy-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px 80px;
}
.privacy-note__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 40px;
  border-top: 1px solid #e8e6e2;
}
.privacy-note__body p {
  font-size: 0.85rem;
  color: #3a3a3a;
  line-height: 1.9;
  margin-bottom: 16px;
}
.privacy-note__body ul {
  list-style: disc;
  padding-left: 20px;
}
.privacy-note__body ul li {
  font-size: 0.85rem;
  color: #3a3a3a;
  line-height: 1.9;
  margin-bottom: 8px;
}
.privacy-note__body a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 120px 80px 80px;
  border-bottom: 1px solid #e8e6e2;
}
.page-hero__inner {
  margin: 0 auto;
}
.page-hero--post .section-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.page-content {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 80px 140px;
}

.news-archive {
  margin: 0 auto;
  padding: 80px 80px 140px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list__item a {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #e8e6e2;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.news-list__item a:hover {
  opacity: 0.6;
}
.news-list__item:first-child a {
  border-top: 1px solid #e8e6e2;
}
.news-list__thumb {
  flex: 0 0 140px;
  height: 92px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #e8e6e2;
}
.news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-list__body {
  flex: 1 1 auto;
  min-width: 0;
}
.news-list__date {
  display: block;
  font-size: 0.75rem;
  color: #888888;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.news-list__title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.65;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list__arrow {
  flex: 0 0 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e8e6e2;
  color: #1a1a1a;
  flex-shrink: 0;
}
.news-list__arrow svg {
  width: 8px;
  height: auto;
  display: block;
}

.news-archive .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.news-archive .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.85rem;
  color: #3a3a3a;
  border: 1px solid #e8e6e2;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.news-archive .nav-links .page-numbers.current {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}
.news-archive .nav-links .page-numbers:hover:not(.current) {
  background-color: #e8e6e2;
}

.single-post__inner {
  margin: 0 auto;
  padding: 80px 80px 140px;
}
.single-post__content {
  line-height: 1.9;
  font-size: 0.95rem;
}
.single-post__content p {
  margin-bottom: 1.4em;
}
.single-post__content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2em 0 0.8em;
}
.single-post__content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.8em 0 0.6em;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.6em 0;
}
.single-post__content ul, .single-post__content ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
.single-post__content li {
  margin-bottom: 0.4em;
}
.single-post__back {
  margin-top: 56px;
}

body.contact .footer-ticker {
  background-color: #fff;
}

.smf-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e8e6e2;
}
.smf-item:first-of-type {
  border-top: 1px solid #e8e6e2;
}

.smf-item__col--label {
  flex: 0 0 22vw;
  padding-right: 24px;
}

.smf-item__col--controls {
  flex: 1 1 auto;
  min-width: 0;
}

.smf-item__label__text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}
.smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 2px;
  background-color: #b91c1c;
  color: #ffffff;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 500;
}

.smf-text-control__control,
.smf-email-control__control,
.smf-tel-control__control,
.smf-url-control__control,
.smf-date-control__control,
.smf-month-control__control,
.smf-select-control__control {
  width: 100%;
  padding: 12px 16px;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #e8e6e2;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.smf-text-control__control:focus,
.smf-email-control__control:focus,
.smf-tel-control__control:focus,
.smf-url-control__control:focus,
.smf-date-control__control:focus,
.smf-month-control__control:focus,
.smf-select-control__control:focus {
  border-color: #888888;
}
.smf-text-control__control::placeholder,
.smf-email-control__control::placeholder,
.smf-tel-control__control::placeholder,
.smf-url-control__control::placeholder,
.smf-date-control__control::placeholder,
.smf-month-control__control::placeholder,
.smf-select-control__control::placeholder {
  color: #888888;
}

.smf-textarea-control__control {
  width: 100%;
  padding: 12px 16px;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #e8e6e2;
  border-radius: 4px;
  outline: none;
  min-height: 180px;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.smf-textarea-control__control:focus {
  border-color: #888888;
}
.smf-textarea-control__control::placeholder {
  color: #888888;
}

.smf-action {
  margin-top: 48px;
  text-align: center;
}

.smf-action .smf-button-control {
  display: block;
}

.smf-action .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px 48px;
  background: #1a1a1a !important;
  background-image: none !important;
  color: #ffffff !important;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border: none !important;
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.smf-action .smf-button-control__control:hover {
  background: #3a3a3a !important;
}
.smf-action .smf-button-control__control:nth-of-type(2) {
  margin-top: 25px;
}

.pc {
  display: block;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
}
br.pc {
  display: inline;
}

br.tb {
  display: none;
}

br.sp {
  display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
  br.pc {
    display: none;
  }
  br.tb {
    display: inline;
  }
  br.sp {
    display: none;
  }
}
@media (max-width: 768px) {
  br.pc {
    display: none;
  }
  br.tb {
    display: none;
  }
  br.sp {
    display: inline;
  }
}
@media (max-width: 1200px) {
  :root {
    --side-pad: 48px;
  }
}
@media (max-width: 1024px) {
  :root {
    --side-pad: 32px;
  }
  .hero__inner {
    min-height: calc(100vh - 72px);
  }
  .hero__ticker {
    padding: 16px 0;
  }
  .concept {
    padding-top: 60vh;
  }
  .concept__inner {
    padding: 120px 32px 120px;
  }
  .works__left {
    padding: 60px 40px;
  }
  .works__right-inner {
    padding: 48px 40px;
  }
  .service__left-inner {
    padding: 48px 40px;
  }
  .service__right {
    padding: 60px 40px;
  }
  .service__card-photo {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  :root {
    --side-pad: 15px;
    --header-h: 60px;
  }
  html {
    overflow-x: hidden;
  }
  .header {
    position: relative;
  }
  .header__inner {
    padding: 0 15px;
    justify-content: center;
  }
  .header__logo-name {
    display: none;
  }
  .header__logo-img {
    width: 48px;
    height: 26px;
  }
  .hero {
    margin-top: 0;
  }
  .hamburger {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 600;
    width: 42px;
    height: 42px;
  }
  .page-top {
    display: none !important;
  }
  .nav-drawer {
    max-width: 100%;
    width: 100%;
    left: 0;
    padding: 60px 30px;
  }
  .nav-drawer__link {
    font-size: 1.1rem;
  }
  .hero__inner {
    padding: 170px 15px 60px;
  }
  .hero__ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    padding: 16px 0;
  }
  .concept {
    padding-top: 45vh;
  }
  .concept__inner {
    padding: 80px 15px 100px;
  }
  .works {
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
    overflow-x: hidden;
  }
  .works__right {
    order: 1;
  }
  .works__left {
    order: 2;
  }
  .works__right-inner {
    position: relative;
    top: auto;
    height: auto;
    padding: 60px 15px;
  }
  .works__left {
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 20px 15px 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .works__left::-webkit-scrollbar {
    display: none;
  }
  .works__card {
    flex: 0 0 95%;
    scroll-snap-align: start;
    max-width: 360px;
  }
  .service {
    grid-template-columns: 1fr;
    padding: 40px 15px 0;
    overflow-x: hidden;
  }
  .service__left-inner {
    position: relative;
    top: auto;
    height: auto;
    padding: 60px 0;
  }
  .service__right {
    padding: 20px 0 40px;
  }
  .service__card {
    max-width: 100%;
  }
  .service__card-photo {
    width: 140px;
    height: 140px;
  }
  .service__card-num {
    font-size: 3.6rem;
    width: 82px;
  }
  .service__card-header {
    grid-template-columns: 82px 1px 1fr;
    width: 100%;
  }
  .company {
    padding: 60px 20px 80px;
  }
  .company__header {
    grid-template-columns: 1fr;
  }
  .company__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .company__image-wrap {
    min-height: unset;
    height: 380px;
  }
  .company__image-bg {
    top: -32px;
    left: 0;
    width: calc(100% - 24px);
    height: 100%;
  }
  .company__image {
    width: calc(100% - 24px);
    height: 100%;
    margin-left: 24px;
  }
  .works__card-photo {
    height: 220px;
  }
  .partner-slider__item {
    width: 300px;
  }
  .partner-slider__track {
    gap: 32px;
  }
  .partner-slider__item img {
    height: 110px;
    object-fit: contain;
  }
  @keyframes partner-scroll {
    to {
      transform: translateX(calc(332px * -6));
    }
  }
  .faq {
    padding: 80px 15px 100px;
    max-width: 100%;
    border-radius: 0;
  }
  .news {
    padding: 80px 0 100px 15px;
  }
  .cta {
    padding: 80px 15px;
  }
  .footer__inner {
    justify-content: flex-start;
    padding: 56px 15px 40px;
  }
  .footer__divider {
    margin: 0 15px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 15px;
  }
  .footer__info {
    text-align: left;
  }
  .footer__nav ul {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
  .faq__header {
    padding: 0 15px;
  }
  .faq__inner {
    padding: 0;
  }
  .news__header {
    padding: 0 15px;
  }
  .works__right-inner {
    padding: 0 15px 40px;
  }
  .cta {
    padding: 80px 15px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-hero {
    padding: 100px 15px 60px;
    margin-top: 0;
  }
  .page-content {
    padding: 60px 15px 100px;
  }
  .news-archive {
    padding: 60px 15px 100px;
  }
  .single-post__inner {
    padding: 60px 15px 100px;
  }
  .news-list__thumb {
    flex: 0 0 100px;
    height: 68px;
  }
  .news-list__arrow {
    flex: 0 0 36px;
    height: 36px;
  }
  .news-list__arrow svg {
    width: 7px;
  }
  .news-list__item a {
    gap: 16px;
    padding: 20px 0;
  }
  .smf-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    gap: 10px;
  }
  .smf-item__col--label {
    flex: none;
    width: 100%;
    padding-right: 0;
  }
  .smf-item__col--controls {
    width: 100%;
  }
  .smf-action .smf-button-control__control {
    margin-top: 26px;
  }
  .smf-action .smf-button-control + .smf-button-control {
    margin-left: 0;
  }
  .hero__bg-logo {
    height: 40vh;
    width: auto;
    max-width: none;
    right: -4%;
    opacity: 0.6;
  }
  .hero__news {
    width: calc(100% - 40px);
    right: 20px;
    left: auto;
  }
  .hero__title {
    font-size: clamp(1.4rem, 5vw, 2.4rem);
  }
  .hero__lead {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }
  .faq__question {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }
  .news__item-title {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    margin-bottom: 25px;
  }
  .service__left-body p {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
  .works__right-body p {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
  .service__left-names {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  }
  .news__inner {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 15px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .news__inner::-webkit-scrollbar {
    display: none;
  }
  .news__item {
    flex: 0 0 92%;
    scroll-snap-align: start;
    max-width: 340px;
  }
  .faq__inner {
    padding: 0;
  }
  .service__card {
    border-radius: 6px;
  }
  .works__card {
    border-radius: 6px;
  }
  .works__card-photo {
    border-radius: 6px;
  }
  .cta__link {
    border-radius: 6px;
  }
  .company__image-bg {
    border-radius: 6px;
  }
  .faq {
    border-radius: 6px;
  }
  .news__item,
  .news__item a,
  .news__item-image {
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 17px;
  }
  .nav-drawer__link {
    font-size: 1rem;
  }
  .hero__inner {
    padding: 240px 15px 60px;
  }
  .hero__title {
    font-size: clamp(2rem, 6.5vw, 2rem);
    margin-bottom: 16px;
  }
  .hero__lead {
    font-size: 0.85rem;
  }
  .hero__bg-logo {
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    height: 50%;
    top: 165px;
  }
  .hero__ticker {
    top: 100px;
  }
  .hero__news {
    display: none;
  }
  .service__card {
    padding: 40px 24px;
  }
  .service__card-photo {
    width: 210px;
    height: 210px;
  }
  .service__card-num {
    font-size: 3.6rem;
    width: 82px;
  }
  .service__card-header {
    grid-template-columns: 82px 1px 1fr;
    width: 100%;
    column-gap: 16px;
  }
  .service__left-inner {
    padding: 40px 0;
  }
  .service__right {
    padding: 24px 0 40px;
  }
  .works__card-photo {
    height: 180px;
  }
  .works__card-info {
    padding: 16px 16px 20px;
  }
  .works__card-logo {
    max-width: 80px;
  }
  .faq__question {
    font-size: 0.85rem;
    padding: 18px 16px 18px 0;
  }
  .company {
    padding: 60px 15px 80px;
  }
  .company__image-wrap {
    height: 300px;
  }
  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .concept {
    padding-top: 35vh;
  }
  .page-hero {
    padding: 80px 15px 48px;
  }
  .news-list__thumb {
    flex: 0 0 80px;
    height: 56px;
  }
  .news-list__title {
    font-size: 0.85rem;
  }
  .news-list__item a {
    gap: 14px;
  }
  .smf-text-control__control,
  .smf-email-control__control,
  .smf-tel-control__control,
  .smf-url-control__control,
  .smf-date-control__control,
  .smf-month-control__control,
  .smf-select-control__control,
  .smf-textarea-control__control {
    font-size: 16px;
  }
  .footer__nav ul {
    gap: 12px;
  }
  .footer__copy {
    font-size: 0.65rem;
  }
  .partner-slider__item {
    width: 210px;
  }
  .partner-slider__track {
    gap: 24px;
  }
  .partner-slider__item img {
    height: 113px;
    object-fit: contain;
  }
  @keyframes partner-scroll {
    to {
      transform: translateX(calc(234px * -6));
    }
  }
}
@media (min-width: 769px) and (max-height: 800px) {
  .service {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .service__left-inner {
    padding: 24px 40px;
  }
  .service__left-label {
    margin-bottom: 8px;
  }
  .service__left-heading {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 20px;
  }
  .service__left-names {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .service__left-body p {
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 8px;
  }
}/*# sourceMappingURL=style.css.map */