@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes scrollBar {
  0% {
    transform: scaleY(0);
    transform-origin: top center;
  }
  49% {
    transform: scaleY(1);
    transform-origin: top center;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom center;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom center;
  }
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes heroFloatSlow {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
}
@keyframes heroSpin {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(180deg);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
  background: #fefdff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7e5fcb;
  margin-bottom: 12px;
}
.label--white {
  color: rgba(255, 255, 255, 0.8);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header.is-scrolled .header__nav-link {
  color: #444444;
}
.header.is-scrolled .header__nav-link:hover {
  color: #7e5fcb;
  opacity: 1;
}
.header.is-scrolled .header__cta {
  background: #ffffff;
  color: #7e5fcb;
  border-color: #c9b3f5;
}
.header.is-scrolled .header__hamburger span {
  background: #7e5fcb;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 120px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
    height: 60px;
  }
}
.header__logo-wrap {
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: none;
}
.header__logo:hover {
  opacity: 1;
}
.header__logo-img {
  height: 88px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    height: 36px;
  }
}
.header__neko {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 108px;
  width: auto;
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
  transition: transform 0.28s ease-in, opacity 0.2s ease;
  pointer-events: none;
}
.header__logo-wrap:hover .header__neko.is-selected {
  opacity: 1;
  transform: translateY(-50%) translateX(-60%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}
@media screen and (max-width: 768px) {
  .header__neko {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 20px 32px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  .header__nav.is-open {
    display: flex;
  }
}
.header__nav-list {
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 16px;
  }
}
.header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #ea5fc2;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header__nav-link {
    display: block;
    padding: 14px 4px;
    color: #444444;
    border-bottom: 1px solid rgba(126, 95, 203, 0.1);
    font-size: 1rem;
  }
  .header__nav-link:hover {
    color: #7e5fcb;
    opacity: 1;
  }
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 48px;
  background: #ffffff;
  color: #7e5fcb;
  border: 2px solid #c9b3f5;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 0 4px -1px rgba(225, 213, 255, 0.4), 0 0 12px rgba(255, 4, 226, 0.16);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.header__cta:hover {
  background: #7e5fcb;
  color: #ffffff;
  border-color: #7e5fcb;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(126, 95, 203, 0.4);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header__cta {
    width: 100%;
    padding: 14px;
    background: #7e5fcb;
    color: #ffffff;
    border-color: #7e5fcb;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #4a1f8c, #7e5fcb 45%, #c060e0 80%, #ed4dff);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.85;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  .hero__inner {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 768px) {
  .hero__inner {
    padding: 100px 24px 80px;
  }
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 74px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .hero__content {
    flex-direction: column-reverse;
    gap: 40px;
    justify-content: center;
  }
}
.hero__text {
  width: 553px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .hero__text {
    width: 100%;
  }
}
.hero__logo {
  position: relative;
  width: 653px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .hero__logo {
    width: clamp(200px, 60vw, 480px);
  }
}
@media screen and (max-width: 768px) {
  .hero__logo {
    width: clamp(160px, 70vw, 280px);
  }
}
.hero__logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.hero__neko {
  position: absolute;
  top: 50%;
  left: 100%;
  height: 216px;
  width: auto;
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
  transition: transform 0.28s ease-in, opacity 0.2s ease;
  pointer-events: none;
}
.hero__logo:hover .hero__neko.is-selected {
  opacity: 1;
  transform: translateY(-50%) translateX(-60%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}
@media screen and (max-width: 768px) {
  .hero__neko {
    display: none;
  }
}
.hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: #ffffff;
  color: #7e5fcb;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  z-index: 2;
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-bar {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: top center;
  animation: scrollBar 2s ease-in-out infinite;
}
.hero__floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__float {
  position: absolute;
  border-radius: 50%;
  animation: heroFloat 4s ease-in-out infinite;
}
.hero__float--b1 {
  width: 64px;
  height: 64px;
  top: 12%;
  left: 4%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.13), transparent);
  animation-duration: 5.2s;
}
.hero__float--b2 {
  width: 38px;
  height: 38px;
  top: 55%;
  left: 8%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.1), transparent);
  animation-duration: 4.4s;
  animation-delay: 0.8s;
}
.hero__float--b3 {
  width: 90px;
  height: 90px;
  top: 18%;
  right: 4%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.08), transparent);
  animation-name: heroFloatSlow;
  animation-duration: 6s;
  animation-delay: 1.4s;
}
.hero__float--b4 {
  width: 28px;
  height: 28px;
  bottom: 22%;
  right: 12%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.1), transparent);
  animation-duration: 3.8s;
  animation-delay: 0.4s;
}
.hero__float--b5 {
  width: 48px;
  height: 48px;
  top: 40%;
  left: 46%;
  border: 2px solid rgba(255, 200, 255, 0.22);
  background: radial-gradient(circle at 35% 35%, rgba(255, 200, 255, 0.08), transparent);
  animation-duration: 5s;
  animation-delay: 2s;
}
.hero__float--s1, .hero__float--s2, .hero__float--s3 {
  background: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.55);
  animation-name: heroSpin;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__float--s1 {
  font-size: 1.6rem;
  top: 8%;
  left: 22%;
  animation-duration: 5.5s;
  animation-delay: 0.3s;
}
.hero__float--s2 {
  font-size: 0.9rem;
  top: 50%;
  right: 22%;
  animation-duration: 4s;
  animation-delay: 1.6s;
}
.hero__float--s3 {
  font-size: 1.2rem;
  bottom: 18%;
  left: 30%;
  animation-duration: 6.2s;
  animation-delay: 0.9s;
}
.hero__float--d1 {
  width: 8px;
  height: 8px;
  top: 28%;
  left: 38%;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
  animation-duration: 3.5s;
  animation-delay: 0.6s;
}
.hero__float--d2 {
  width: 6px;
  height: 6px;
  top: 65%;
  right: 28%;
  background: rgba(255, 200, 255, 0.75);
  box-shadow: 0 0 6px rgba(255, 200, 255, 0.5);
  animation-duration: 4.2s;
  animation-delay: 1.1s;
}
.hero__float--d3 {
  width: 10px;
  height: 10px;
  bottom: 28%;
  left: 18%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  animation-duration: 5s;
  animation-delay: 0.2s;
}

.about {
  background: #ffffff;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 72px 0;
  }
}
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .about__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding: 0 24px;
  }
}
.about__title {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #364153;
  line-height: 1.5;
  margin-bottom: 40px;
}
.about__flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .about__flex {
    flex-direction: column;
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .about__flex {
    flex-direction: column;
    gap: 40px;
  }
}
.about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__body p {
  font-size: 1rem;
  color: #444444;
  line-height: 1.9;
}
.about__visual {
  flex-shrink: 0;
  width: 448px;
}
@media screen and (max-width: 1024px) {
  .about__visual {
    width: 100%;
    max-width: 448px;
  }
}
@media screen and (max-width: 768px) {
  .about__visual {
    width: 100%;
    max-width: 280px;
  }
}
.about__img {
  width: 100%;
  object-fit: contain;
}

.services {
  position: relative;
}

.panel {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  border-radius: 80px 80px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .panel {
    position: relative;
    top: auto;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .panel {
    border-radius: 0;
  }
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/panel_bg.png") center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.panel--01 {
  background-color: #ed4dff;
  z-index: 10;
}
.panel--02 {
  background-color: #3a06b9;
  z-index: 11;
}
.panel--03 {
  background-color: #008cff;
  z-index: 12;
}
.panel--03::before {
  opacity: 0.08;
  mix-blend-mode: hard-light;
}
.panel--04 {
  background-color: #3bb737;
  z-index: 13;
}
.panel--04::before {
  opacity: 0.08;
  mix-blend-mode: hard-light;
}
.panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 80px;
}
@media screen and (max-width: 768px) {
  .panel__inner {
    flex-direction: column;
    gap: 32px;
    padding: 72px 24px 48px;
  }
}
.panel__left {
  flex-shrink: 0;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .panel__left {
    width: 100%;
  }
}
.panel__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow: hidden;
  min-width: 0;
  max-width: 1012px;
}
.panel__num {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}
.panel__num-digit {
  font-family: "Asimovian", sans-serif;
}
.panel__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .panel__title {
    font-size: 2rem;
  }
}
.panel__lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.panel__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.panel__img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .panel__img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.panel__img-grid img {
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.panel__img-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .panel__img-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.panel__chars {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.panel__chars .char-main {
  flex: 1;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
.panel__chars .char-sub {
  width: 200px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .panel__chars .char-sub {
    display: none;
  }
}
.panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-height: 950px) {
  .panel {
    position: relative;
    top: auto;
    min-height: auto;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #ea5fc2;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
}

.cards {
  display: grid;
  gap: 28px;
}
.cards--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .cards--2col {
    grid-template-columns: 1fr;
  }
}
.cards--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .cards--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 0;
  color: #ffffff;
}
.card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.card__desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 14px;
}

.company {
  background: #ffffff;
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 64px 0 72px;
  }
}
.company__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .company__inner {
    padding: 0 24px;
  }
}
.company__title {
  font-size: 3rem;
  font-weight: 700;
  color: #364153;
  margin-bottom: 56px;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
}
.company__table tr {
  border-bottom: 1px solid rgba(126, 95, 203, 0.1);
}
.company__table tr:first-child {
  border-top: 1px solid rgba(126, 95, 203, 0.1);
}
.company__table th,
.company__table td {
  padding: 20px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .company__table th,
  .company__table td {
    padding: 14px 10px;
    font-size: 0.875rem;
  }
}
.company__table th {
  width: 160px;
  font-weight: 700;
  color: #7e5fcb;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .company__table th {
    width: 90px;
  }
}
.company__table td {
  color: #444444;
}
.company__table td a {
  color: #7e5fcb;
  word-break: break-all;
}
.company__table td a:hover {
  text-decoration: underline;
  opacity: 1;
}

.contact {
  background: #f5ecff;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 72px 0;
  }
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 0 24px;
  }
}
.contact__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #364153;
  margin-bottom: 16px;
}
.contact__lead {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 48px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 48px;
  background: #ffffff;
  color: #7e5fcb;
  border: 2px solid #c9b3f5;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 4px -1px rgba(225, 213, 255, 0.4), 0 0 12px rgba(255, 4, 226, 0.16);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.contact__submit:hover {
  background: #7e5fcb;
  color: #ffffff;
  border-color: #7e5fcb;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(126, 95, 203, 0.4);
}
.contact__submit:active {
  transform: translateY(0);
}
.contact__submit.is-loading {
  pointer-events: none;
  color: transparent;
}
.contact__submit.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(126, 95, 203, 0.3);
  border-top-color: #7e5fcb;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row--submit {
  align-items: center;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #364153;
}

.req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background: #7e5fcb;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  color: #444444;
  outline: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0b0b0;
}
.form-input:focus,
.form-textarea:focus {
  background: #ffffff;
  border-color: #9169f5;
  box-shadow: none;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: #e05252;
  background: #fff8f8;
}

.form-error {
  font-size: 0.8rem;
  color: #e05252;
}
.form-error--global {
  text-align: center;
  padding: 12px 16px;
  background: #fff0f0;
  border-radius: 8px;
  margin-bottom: 8px;
}

.form-success {
  text-align: center;
  padding: 48px 0;
}
.form-success__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #7e5fcb;
  margin: 0 auto 20px;
  position: relative;
}
.form-success__check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -58%) rotate(45deg);
  width: 10px;
  height: 18px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.form-success__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #364153;
  margin-bottom: 12px;
}
.form-success__body {
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.8;
}

.footer {
  background: #364153 url("images/panel_bg.png") center/cover no-repeat;
  padding: 48px 0 32px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 24px;
  }
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo-img {
  height: 36px;
  width: auto;
}
.footer__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}
.footer__address {
  font-size: 0.825rem;
  color: #fff;
  line-height: 1.7;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__address {
    text-align: left;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__link {
  font-size: 0.8rem;
  color: #fff;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #ea5fc2;
  opacity: 1;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.policy-hero {
  background: linear-gradient(160deg, #4a1f8c, #7e5fcb 45%, #c060e0 80%, #ed4dff);
  padding: 180px 0 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .policy-hero {
    padding: 120px 0 56px;
  }
}
.policy-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.policy-hero__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.policy {
  background: #ffffff;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  .policy {
    padding: 48px 0 80px;
  }
}
.policy__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .policy__inner {
    padding: 0 24px;
  }
}
.policy__updated {
  font-size: 0.875rem;
  color: #777777;
  margin-bottom: 48px;
}
.policy__section {
  margin-bottom: 36px;
}
.policy__section:last-child {
  margin-bottom: 0;
}
.policy--standalone {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .policy--standalone {
    padding-top: 120px;
  }
}
.policy__title {
  font-size: 2rem;
  font-weight: 700;
  color: #444444;
  margin-bottom: 32px;
}
.policy__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #7e5fcb;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(126, 95, 203, 0.15);
}
.policy p {
  font-size: 0.875rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 12px;
}
.policy p:last-child {
  margin-bottom: 0;
}
.policy ul, .policy ol {
  margin: 8px 0 8px 1.5em;
}
.policy ul li, .policy ol li {
  font-size: 0.875rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin-bottom: 6px;
}
.policy ul li:last-child, .policy ol li:last-child {
  margin-bottom: 0;
}
.policy ol {
  list-style: decimal;
}
.policy ul {
  list-style: disc;
}
.policy a {
  color: #7e5fcb;
  text-decoration: underline;
}
.policy a:hover {
  opacity: 0.75;
}

.svc-hero {
  position: relative;
  min-height: 52vh;
  background: linear-gradient(160deg, #4a1f8c, #7e5fcb 45%, #c060e0 80%, #ed4dff);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/panel_bg.png") center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 60px 80px;
}
@media screen and (max-width: 1024px) {
  .svc-hero__inner {
    padding: 140px 40px 72px;
  }
}
@media screen and (max-width: 768px) {
  .svc-hero__inner {
    padding: 110px 24px 60px;
  }
}
.svc-hero__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.svc-hero__title {
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  max-width: 640px;
}

.strengths {
  background: #ffffff;
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .strengths {
    padding: 72px 0 0;
  }
}
.strengths__hd {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px 72px;
}
@media screen and (max-width: 1024px) {
  .strengths__hd {
    padding: 0 40px 56px;
  }
}
@media screen and (max-width: 768px) {
  .strengths__hd {
    padding: 0 24px 48px;
  }
}
.strengths__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #364153;
  line-height: 1.4;
  margin-top: 12px;
}

.str-item {
  border-top: 1px solid rgba(126, 95, 203, 0.12);
  background: #ffffff;
}
.str-item--alt {
  background: rgba(126, 95, 203, 0.03);
}
.str-item__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 60px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .str-item__inner {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 768px) {
  .str-item__inner {
    padding: 48px 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.str-item__num-col {
  flex-shrink: 0;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .str-item__num-col {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .str-item__num-col {
    width: auto;
  }
}
.str-item__num {
  font-family: "Asimovian", sans-serif;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 1;
  background: linear-gradient(90deg, #7e5fcb, #ea5fc2, #ed4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
@media screen and (max-width: 768px) {
  .str-item__num {
    font-size: 4rem;
  }
}
.str-item__body {
  flex: 1;
  padding-top: 16px;
  padding-left: 48px;
  border-left: 1px solid rgba(126, 95, 203, 0.12);
}
@media screen and (max-width: 768px) {
  .str-item__body {
    padding-left: 0;
    padding-top: 0;
    border-left: none;
  }
}
.str-item__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 14px;
}
.str-item__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #364153;
  line-height: 1.4;
  margin-bottom: 16px;
}
.str-item__desc {
  font-size: 1rem;
  color: #444444;
  line-height: 1.9;
}

.str-special {
  border-top: 1px solid rgba(126, 95, 203, 0.12);
  background: linear-gradient(160deg, #4a1f8c, #7e5fcb 45%, #c060e0 80%, #ed4dff);
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  .str-special {
    padding: 56px 0 80px;
  }
}
.str-special__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .str-special__inner {
    padding: 0 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .str-special__inner {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
.str-special__seal {
  flex-shrink: 0;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}
@media screen and (max-width: 768px) {
  .str-special__seal {
    width: 96px;
    height: 96px;
  }
}
.str-special__seal-text {
  font-family: "Asimovian", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .str-special__seal-text {
    font-size: 1.4rem;
  }
}
.str-special__seal-sub {
  font-size: 0.475rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.str-special__body {
  flex: 1;
}
.str-special__num {
  font-family: "Asimovian", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
}
.str-special__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
.str-special__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 16px;
}
.str-special__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 24px;
}
.str-special__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.svc-chapters {
  background: #ffffff;
}

.svc-chapter {
  border-top: 1px solid rgba(126, 95, 203, 0.12);
  padding: 88px 0;
}
@media screen and (max-width: 768px) {
  .svc-chapter {
    padding: 56px 0;
  }
}
.svc-chapter:nth-child(even) {
  background: rgba(126, 95, 203, 0.025);
}
.svc-chapter__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .svc-chapter__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .svc-chapter__inner {
    padding: 0 24px;
  }
}
.svc-chapter__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .svc-chapter__head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }
}
.svc-chapter__num {
  font-family: "Asimovian", sans-serif;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 1;
  background: linear-gradient(90deg, #7e5fcb, #ea5fc2, #ed4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 136px;
}
@media screen and (max-width: 1024px) {
  .svc-chapter__num {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .svc-chapter__num {
    width: auto;
    font-size: 3.5rem;
  }
}
.svc-chapter__meta {
  flex: 1;
  padding-left: 48px;
  padding-top: 8px;
  border-left: 1px solid rgba(126, 95, 203, 0.15);
}
@media screen and (max-width: 768px) {
  .svc-chapter__meta {
    padding-left: 0;
    padding-top: 0;
    border-left: none;
  }
}
.svc-chapter__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 8px;
}
.svc-chapter__title {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: #364153;
  line-height: 1.3;
  margin-bottom: 16px;
}
.svc-chapter__lead {
  font-size: 0.975rem;
  color: #444444;
  line-height: 1.85;
  max-width: 640px;
}
.svc-chapter__grid {
  display: grid;
  gap: 20px;
}
.svc-chapter__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .svc-chapter__grid--2col {
    grid-template-columns: 1fr;
  }
}
.svc-chapter__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .svc-chapter__grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .svc-chapter__grid--3col {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  background: #ffffff;
  border: 1px solid rgba(126, 95, 203, 0.12);
  border-radius: 12px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7e5fcb, #ea5fc2, #ed4dff);
}
.svc-card:hover {
  box-shadow: 0 8px 32px rgba(126, 95, 203, 0.1);
  transform: translateY(-2px);
}
.svc-card--wide {
  grid-column: 1/-1;
}
.svc-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #364153;
  line-height: 1.4;
  margin-bottom: 12px;
}
.svc-card__desc {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.85;
}

.svc-cta {
  background: #364153;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .svc-cta {
    padding: 72px 0;
  }
}
.svc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/panel_bg.png") center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.svc-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.svc-cta__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.svc-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 12px;
}
.svc-cta__desc {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 40px;
}
.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 56px;
  background: #ffffff;
  color: #7e5fcb;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.svc-cta__btn:hover {
  background: #ea5fc2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(234, 95, 194, 0.4);
  opacity: 1;
}

.works-section {
  background: #ffffff;
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .works-section {
    padding: 64px 0 80px;
  }
}
.works-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .works-section__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .works-section__inner {
    padding: 0 24px;
  }
}
.works-section__hd {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .works-section__hd {
    margin-bottom: 40px;
  }
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media screen and (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.works-card {
  background: #ffffff;
  border: 1px solid rgba(126, 95, 203, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.works-card:hover {
  box-shadow: 0 8px 32px rgba(126, 95, 203, 0.12);
  transform: translateY(-4px);
}
.works-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(126, 95, 203, 0.06);
  flex-shrink: 0;
}
.works-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.works-card:hover .works-card__img {
  transform: scale(1.03);
}
.works-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.works-card__cat {
  font-size: 0.9rem;
  font-weight: 700;
  color: #7e5fcb;
  margin-bottom: 14px;
}
.works-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #364153;
  line-height: 1.55;
  margin-bottom: 12px;
}
.works-card__desc {
  font-size: 0.855rem;
  color: #777777;
  line-height: 1.85;
  flex: 1;
}
.works-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.works-card__tag {
  font-size: 0.675rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(126, 95, 203, 0.08);
  color: #7e5fcb;
}

.works-clients {
  background: rgba(126, 95, 203, 0.03);
  padding: 80px 0 100px;
  border-top: 1px solid rgba(126, 95, 203, 0.1);
}
@media screen and (max-width: 768px) {
  .works-clients {
    padding: 56px 0 72px;
  }
}
.works-clients__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .works-clients__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .works-clients__inner {
    padding: 0 24px;
  }
}
.works-clients__hd {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .works-clients__hd {
    margin-bottom: 32px;
  }
}
.works-clients__note {
  font-size: 0.8rem;
  color: #777777;
  margin-top: 6px;
}

.works-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .works-client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .works-client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.works-client-item {
  background: #ffffff;
  border: 1px solid rgba(126, 95, 203, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.works-client-item:hover {
  box-shadow: 0 4px 20px rgba(126, 95, 203, 0.1);
  transform: translateY(-2px);
}
.works-client-item__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(126, 95, 203, 0.04);
}
.works-client-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  transition: transform 0.4s ease;
}
.works-client-item:hover .works-client-item__img {
  transform: scale(1.04);
}
.works-client-item__name {
  padding: 10px 12px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #364153;
  text-align: center;
  line-height: 1.4;
  border-top: 1px solid rgba(126, 95, 203, 0.08);
}

.js-hero {
  opacity: 0;
  transform: translateY(40px);
}

.js-fade {
  opacity: 0;
  transform: translateY(40px);
}

.js-tr {
  opacity: 0;
  transform: translateX(-20px);
}

.js-fr {
  opacity: 0;
  transform: translateY(20px);
}

.panel__left,
.panel__right {
  opacity: 0;
  transform: translateY(30px);
}

/*# sourceMappingURL=style.css.map */
