@charset "UTF-8";

:root {
  --bg: #faf9ff;
  --bg-blue: #f4f8ff;
  --white: #ffffff;
  --text: #302f3b;
  --muted: #77768a;
  --purple: #8878c7;
  --purple-dark: #55458e;
  --purple-light: #e9e4f8;
  --blue: #7398d4;
  --blue-light: #dfeafb;
  --line: rgba(88, 76, 137, .14);
  --shadow: 0 24px 70px rgba(82, 72, 128, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 249, 255, .84);
  border-bottom: 1px solid rgba(88, 76, 137, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 56px), 1320px);
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--purple);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple-dark);
  font-size: 10px;
  letter-spacing: .08em;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #4c4470;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.global-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #5c5a6d;
}

.global-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--purple);
  transition: width .25s ease;
}

.global-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(93, 77, 145, .3);
  border-radius: 99px;
  color: var(--purple-dark) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--purple-dark);
}

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 42%, rgba(221, 214, 250, .7), transparent 27%),
    radial-gradient(circle at 22% 78%, rgba(211, 229, 250, .8), transparent 30%),
    linear-gradient(135deg, #fff 0%, #faf8ff 48%, #f1f7ff 100%);
}

.hero-copy {
  position: relative;
  z-index: 8;
  width: min(47%, 570px);
  margin-left: max(7vw, calc((100vw - 1320px) / 2));
  margin-top: 30px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  line-height: 1.4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.18;
  letter-spacing: .02em;
  font-weight: 500;
}

.hero h1 em {
  color: var(--purple-dark);
  font-style: normal;
  background: linear-gradient(90deg, #735eb0, #769ed7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 30px 0 25px;
  color: #676576;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(85, 69, 142, .45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--purple-dark);
}

.text-link span {
  font-size: 18px;
  line-height: 1;
}

.hero-talents {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.hero-talent {
  position: absolute;
  bottom: -5%;
  width: min(38vw, 570px);
  height: 83%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-talent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 24px rgba(54, 47, 90, .15));
}

.hero-aoi {
  left: 40%;
}

.hero-ol {
  right: -1%;
  width: min(34vw, 510px);
}

.hero-brand {
  position: absolute;
  z-index: 6;
  right: 6%;
  top: 17%;
  width: 190px;
  opacity: .82;
  mix-blend-mode: multiply;
}

.hero-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-a {
  width: 440px;
  height: 440px;
  right: 14%;
  top: 20%;
  border: 1px solid rgba(128, 108, 190, .16);
}

.hero-glow-b {
  width: 300px;
  height: 300px;
  right: 32%;
  bottom: 5%;
  border: 1px solid rgba(111, 150, 207, .12);
}

.hero-stars i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #8b7ac3;
  opacity: .55;
}

.hero-stars i:nth-child(1) { top: 18%; left: 54%; }
.hero-stars i:nth-child(2) { top: 33%; right: 28%; width: 4px; height: 4px; }
.hero-stars i:nth-child(3) { bottom: 23%; left: 48%; width: 3px; height: 3px; }
.hero-stars i:nth-child(4) { top: 22%; right: 11%; }

.scroll-down {
  position: absolute;
  z-index: 10;
  bottom: 28px;
  left: max(7vw, calc((100vw - 1320px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #807c90;
}

.scroll-down span {
  font-size: 8px;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.scroll-down i {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--purple), transparent);
}

.section {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .03em;
}

.centered {
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 10%;
  background: var(--bg);
}

.intro-copy {
  max-width: 590px;
  padding-top: 24px;
  color: #666475;
  font-size: 15px;
}

.intro-copy p {
  margin: 0 0 23px;
}

.intro-copy .lead {
  color: var(--text);
  font-size: 19px;
  line-height: 1.9;
}

.accent-line {
  padding-left: 20px;
  border-left: 2px solid var(--purple);
  color: var(--purple-dark) !important;
  font-weight: 700;
}

.talents {
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100% - var(--max)) / 2));
  padding-right: max(28px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, #f4f1fb 0%, #eef5fd 100%);
}

.talent-grid {
  max-width: var(--max);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.talent-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.65);
}

.aoi-card {
  background: linear-gradient(155deg, #ffffff 0%, #eee9fb 100%);
}

.ol-card {
  background: linear-gradient(155deg, #ffffff 0%, #e7f0fc 100%);
}

.talent-image {
  position: absolute;
  inset: 0 0 190px;
}

.talent-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 25px rgba(62, 57, 88, .16));
}

.talent-orbit {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  left: 15%;
  top: 10%;
  border-radius: 50%;
  border: 1px solid rgba(112, 93, 177, .15);
}

.ol-card .talent-orbit {
  border-color: rgba(94, 132, 192, .18);
}

.talent-info {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 210px;
  padding: 28px 32px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.94) 18%);
}

.talent-label {
  margin: 0 0 2px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.talent-info h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
}

.talent-kana {
  margin: -3px 0 9px;
  color: #8a8795;
  font-size: 10px;
  letter-spacing: .2em;
}

.talent-description {
  margin: 0;
  color: #666474;
  font-size: 12px;
  line-height: 1.8;
}

.talent-links {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}

.talent-links a {
  color: var(--purple-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.project {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10%;
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-item {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  gap: 16px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.project-no {
  color: var(--purple);
  font-size: 10px;
  letter-spacing: .1em;
}

.project-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  letter-spacing: .12em;
}

.project-item p {
  margin: 0;
  color: #777585;
  font-size: 13px;
  line-height: 1.75;
}

.project-arrow {
  color: var(--purple-dark);
  font-size: 17px;
}

.works {
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100% - var(--max)) / 2));
  padding-right: max(28px, calc((100% - var(--max)) / 2));
  background: #fff;
}

.works-empty {
  max-width: var(--max);
  min-height: 250px;
  margin: 65px auto 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #777585;
  background: linear-gradient(145deg, #fff, #faf9ff);
}

.moon-symbol {
  color: var(--purple);
  font-size: 36px;
  margin-bottom: 10px;
}

.works-empty p {
  margin: 0;
  font-size: 14px;
}

.works-empty small {
  margin-top: 8px;
  color: #a09dab;
  font-size: 8px;
  letter-spacing: .22em;
}

.philosophy {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 75% 30%, rgba(207, 195, 246, .52), transparent 25%),
    linear-gradient(135deg, #f5f2fc, #eef5fd);
}

.philosophy-inner {
  width: min(calc(100% - 56px), 930px);
  margin: 0 auto;
  text-align: center;
}

.philosophy blockquote {
  margin: 20px 0 30px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .04em;
}

.philosophy blockquote em {
  color: var(--purple-dark);
  font-style: normal;
}

.philosophy-copy {
  margin: 0 auto;
  max-width: 680px;
  color: #696777;
  font-size: 13px;
}

.news {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 10%;
}

.news-empty {
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news-row time {
  color: var(--purple);
  font-size: 11px;
  letter-spacing: .08em;
}

.news-row p {
  margin: 0;
  font-size: 13px;
}

.news-row.muted {
  color: #9a98a5;
}

.join {
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100% - var(--max)) / 2));
  padding-right: max(28px, calc((100% - var(--max)) / 2));
  background: #fff;
}

.join-card {
  width: 100%;
  max-width: var(--max);
  min-height: 360px;
  margin: 0 auto;
  padding: 60px 70px;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #eae5f8, #e3effc);
}

.join-card h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
  font-weight: 500;
}

.join-card > div > p:last-child {
  margin: 0;
  color: #686678;
  font-size: 13px;
}

.button {
  flex: 0 0 auto;
  min-width: 185px;
  padding: 17px 23px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  color: var(--purple-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  box-shadow: 0 12px 30px rgba(78, 69, 120, .1);
}

.button span {
  font-size: 17px;
}

.site-footer {
  padding: 65px 28px 35px;
  text-align: center;
  background: #f6f4fc;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 150px;
  margin: 0 auto 16px;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin: 0 0 5px;
  color: #777388;
  font-size: 8px;
  letter-spacing: .24em;
}

.site-footer small {
  color: #a29fac;
  font-size: 8px;
  letter-spacing: .08em;
}

@media (max-width: 980px) {
  .header-inner {
    height: 68px;
  }

  .global-nav {
    gap: 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: 48%;
    margin-left: 5vw;
  }

  .hero-talent {
    width: 43vw;
    height: 72%;
  }

  .hero-aoi {
    left: 35%;
  }

  .hero-ol {
    width: 39vw;
  }

  .hero-brand {
    width: 140px;
    top: 15%;
    right: 4%;
  }

  .talent-card {
    min-height: 620px;
  }

  .talent-info {
    padding: 23px;
  }

  .project,
  .news,
  .intro {
    gap: 7%;
  }
}

@media (max-width: 720px) {
  .desktop-only {
    display: none;
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: .15em;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .global-nav {
    position: fixed;
    z-index: 55;
    top: 68px;
    right: 0;
    left: 0;
    padding: 25px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 249, 255, .97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }

  .menu-open .global-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }

  .global-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
    border: 1px solid rgba(93, 77, 145, .3);
  }

  .hero {
    min-height: 760px;
    height: auto;
    max-height: none;
    padding-top: 95px;
    display: block;
  }

  .hero-copy {
    width: auto;
    margin: 0 24px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero-lead {
    font-size: 12px;
    margin-top: 20px;
  }

  .hero-copy .text-link {
    font-size: 9px;
  }

  .hero-talents {
    position: relative;
    height: 430px;
    margin-top: 10px;
  }

  .hero-talent {
    bottom: 0;
    width: 58vw;
    height: 100%;
  }

  .hero-aoi {
    left: 1%;
  }

  .hero-ol {
    right: -1%;
    width: 57vw;
  }

  .hero-brand {
    width: 110px;
    top: auto;
    right: 50%;
    bottom: 22px;
    transform: translateX(50%);
    opacity: .68;
  }

  .hero-glow-a {
    width: 260px;
    height: 260px;
    right: 2%;
    top: 38%;
  }

  .hero-glow-b {
    width: 180px;
    height: 180px;
    left: 2%;
    bottom: 15%;
  }

  .scroll-down {
    display: none;
  }

  .section {
    width: calc(100% - 40px);
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .intro {
    display: block;
  }

  .intro-copy {
    padding-top: 35px;
    font-size: 13px;
  }

  .intro-copy .lead {
    font-size: 16px;
  }

  .talents {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .talent-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .talent-card {
    min-height: 610px;
    border-radius: 22px;
  }

  .talent-image {
    inset: 0 0 180px;
  }

  .talent-info h3 {
    font-size: 29px;
  }

  .project,
  .news {
    display: block;
  }

  .project-list,
  .news-empty {
    margin-top: 40px;
  }

  .project-item {
    grid-template-columns: 32px 1fr 20px;
    gap: 9px;
  }

  .project-item p {
    font-size: 12px;
  }

  .works {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .works-empty {
    margin-top: 40px;
    min-height: 210px;
    padding: 20px;
  }

  .philosophy {
    width: 100%;
  }

  .philosophy-inner {
    width: calc(100% - 40px);
  }

  .philosophy blockquote {
    font-size: 29px;
  }

  .philosophy-copy {
    font-size: 12px;
    text-align: left;
  }

  .news-row {
    grid-template-columns: 75px 1fr;
    gap: 10px;
  }

  .join {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .join-card {
    min-height: auto;
    padding: 40px 25px;
    display: block;
    border-radius: 22px;
  }

  .join-card h2 {
    font-size: 32px;
  }

  .join-card .button {
    margin-top: 30px;
    width: 100%;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 700px;
  }

  .hero-talents {
    height: 370px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .talent-card {
    min-height: 560px;
  }

  .talent-image {
    inset: 0 0 185px;
  }

  .talent-info {
    padding: 20px;
  }
}
