@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: url("../fonts/sogo/sogo-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: url("../fonts/sogo/sogo-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MaruBuri";
  src: url("../fonts/maruburi/MaruBuri-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: "Pretendard", sans-serif;
  --font-display: "Sogo", serif;
  --font-accent: "MaruBuri", serif;

  --color-white: #ffffff;
  --color-black: #111111;
  --color-dark: #222222;
  --color-gray-1: #444444;
  --color-gray-2: #999999;
  --color-gray-3: #dddddd;
  --color-gold: #816c5b;
  --ease-standard: 0.25s ease;
  --shell-1680: 1680px;
  --shell-1200: 1200px;
  --shell-1400: 1400px;
  --shell-1840: 1840px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-synthesis: none;
  font-kerning: normal;
  color: var(--color-black);
  background: var(--color-white);
}

html.is-modal-open,
body.is-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a,
button {
  color: inherit;
  cursor: pointer;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-page {
  position: relative;
  overflow-x: clip;
}

.l-shell-1680,
.l-shell-1200,
.l-shell-1400,
.l-shell-1840 {
  width: calc(100% - 48px);
  margin: 0 auto;
}

.l-shell-1680 {
  max-width: var(--shell-1680);
}

.l-shell-1200 {
  max-width: var(--shell-1200);
}

.l-shell-1400 {
  max-width: var(--shell-1400);
}

.l-shell-1840 {
  max-width: var(--shell-1840);
}

.c-header {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 20;
  width: 100%;
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.c-logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: 38px;
  color: var(--color-white);
}

.c-logo__image {
  width: 220px;
  height: 38px;
  object-fit: contain;
}

.c-gnb {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.c-gnb__item {
  white-space: nowrap;
  transition: opacity var(--ease-standard);
}

.c-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-white);
}

.c-header__toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/menu-toggle.svg");
  mask: center / contain no-repeat url("../images/common/menu-toggle.svg");
}

.c-header__toggle.is-open .c-header__toggle-icon {
  -webkit-mask-image: url("../images/common/menu-close.svg");
  mask-image: url("../images/common/menu-close.svg");
}

.c-mobile-nav {
  position: absolute;
  top: calc(100% + 16px);
  right: 24px;
  z-index: 31;
  width: min(320px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ease-standard), transform var(--ease-standard), visibility var(--ease-standard);
}

.c-mobile-nav[hidden] {
  display: none !important;
}

.c-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: block;
  background: rgba(17, 17, 17, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease-standard), visibility var(--ease-standard);
}

.c-mobile-nav-backdrop[hidden] {
  display: none !important;
}

.c-mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.c-mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.c-mobile-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--color-black);
  transition: background-color var(--ease-standard), opacity var(--ease-standard);
}

.c-mobile-nav__item + .c-mobile-nav__item {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.c-mobile-nav__item::after {
  content: "";
  width: 12px;
  height: 8px;
  margin-left: auto;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  opacity: 0.64;
  transition: transform var(--ease-standard), opacity var(--ease-standard);
}

.c-mobile-nav__item:hover {
  opacity: 1;
  background: rgba(17, 17, 17, 0.04);
}

.c-mobile-nav__item:hover::after {
  transform: translateX(1px);
  opacity: 1;
}

.c-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.c-bullet-item::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  margin-top: 12px;
  background: currentColor;
}

.c-bullet-item__text {
  min-width: 0;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  word-break: keep-all;
}

.c-circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: currentColor;
  transition: transform var(--ease-standard), opacity var(--ease-standard);
}

.c-circle-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  background: center / contain no-repeat url("../images/common/circle-arrow.svg");
}

.c-circle-arrow--disabled {
  pointer-events: none;
  cursor: default;
}

.c-circle-arrow--disabled::before {
  background-image: url("../images/common/circle-arrow-disabled.svg");
}

.c-circle-arrow--prev {
  transform: rotate(180deg);
}

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
  transition: opacity var(--ease-standard);
}

.c-link-arrow::after {
  content: "";
  width: 14px;
  height: 10px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  transition: transform var(--ease-standard);
}

.c-file-icon {
  flex: none;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/file.svg");
  mask: center / contain no-repeat url("../images/common/file.svg");
}

.c-header__toggle:hover,
.c-gnb__item:hover,
.c-link-arrow:hover,
.c-circle-arrow:not(.c-circle-arrow--disabled):hover,
.investment-modal__close:hover {
  opacity: 0.72;
}

.c-link-arrow:hover::after {
  transform: translateX(2px);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

.page-investment {
  background: var(--color-white);
}

.investment-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 588px);
  gap: 48px;
  align-items: start;
}

.investment-section-head__title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.investment-section-head__desc {
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-black);
  word-break: keep-all;
}

.investment-hero {
  position: relative;
  background: var(--color-black);
  color: var(--color-white);
}

.investment-hero__inner {
  position: relative;
  padding-top: 220px;
  padding-bottom: 0;
  --investment-hero-offset: clamp(120px, calc(50vw - 618px), 342px);
}

.investment-hero__headline {
  position: relative;
  width: 1080px;
  height: 238px;
  margin-left: var(--investment-hero-offset);
}

.investment-hero__title {
  position: absolute;
  font-size: 72px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
}

.investment-hero__title--left {
  top: 0;
  left: 0;
}

.investment-hero__title--right span {
  font-family: var(--font-accent);
  letter-spacing: 0.48px;
}

.investment-hero__title--right {
  top: 96px;
  left: 497px;
}

.investment-hero__line {
  position: absolute;
  top: 135px;
  left: 273px;
  width: 189px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.investment-hero__media {
  width: 996px;
  margin: 120px 0 0 var(--investment-hero-offset);
  aspect-ratio: 996 / 560;
  overflow: hidden;
}

.investment-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-intro {
  background: var(--color-black);
  color: var(--color-white);
  padding: 120px 0 178px;
}

.investment-intro__title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.investment-intro__content {
  display: grid;
  grid-template-columns: 690px 486px;
  gap: 24px;
  align-items: start;
  margin-top: 40px;
}

.investment-intro__media {
  width: 100%;
  aspect-ratio: 690 / 388;
  overflow: hidden;
}

.investment-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-intro__body {
  width: 486px;
  padding-top: 24px;
}

.investment-intro__lead {
  width: 353px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  word-break: keep-all;
}

.investment-intro__list {
  color: var(--color-white);
}

.investment-services {
  padding: 120px 0;
  background: var(--color-white);
}

.investment-services .investment-section-head {
  grid-template-columns: 588px 588px;
  gap: 24px;
}

.investment-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 43px;
}

.investment-service-card__media {
  width: 100%;
  aspect-ratio: 384 / 560;
  overflow: hidden;
}

.investment-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-service-card__body {
  margin-top: 32px;
}

.investment-service-card__title {
  min-height: 94px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  word-break: keep-all;
  color: var(--color-black);
}

.investment-service-card__list {
  margin-top: 20px;
  color: var(--color-gray-1);
}

.investment-track {
  background: var(--color-black);
  color: var(--color-white);
}

.investment-track__inner {
  display: grid;
  grid-template-columns: 948px minmax(0, 972px);
  width: min(1920px, 100%);
  margin: 0 auto;
}

.investment-track__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.investment-track__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-track__panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 255px 60px 72px;
}

.investment-track__eyebrow {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.investment-track__title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 68px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.investment-track__list {
  margin-top: 32px;
  color: var(--color-white);
}

.investment-people {
  padding: 120px 0 120px;
  background: var(--color-white);
}

.investment-people__board {
  margin-top: 48px;
}

.investment-people__board {
  border-top: 2px solid var(--color-black);
}

.investment-people__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray-3);
}

.investment-people__entry {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
}

.investment-people__name {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-black);
}

.investment-people__entry-body {
  min-width: 0;
}

.investment-people__entry-body--wide {
  max-width: 714px;
}

.investment-people__school {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: var(--color-gold);
}

.investment-people__list {
  margin-top: 4px;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-black);
}

.investment-people__list--sub {
  margin-top: 4px;
}

.investment-notice {
  padding: 0 0 120px;
  background: var(--color-white);
}

.investment-notice__board {
  margin-top: 48px;
  border-top: 2px solid var(--color-black);
}

.investment-notice__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 96px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-gray-3);
  text-align: left;
  transition: background-color var(--ease-standard), opacity var(--ease-standard);
}

.investment-notice__row:hover {
  opacity: 1;
  background: rgba(17, 17, 17, 0.02);
}

.investment-notice__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.investment-notice__title {
  min-width: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-black);
  word-break: keep-all;
}

.investment-notice__date {
  flex: none;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray-1);
}

.investment-notice__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.investment-notice__pager-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.investment-notice__pager-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-black);
}

.investment-notice__pager-number--current {
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 600;
}

.investment-notice__pager-number:not(.investment-notice__pager-number--current):not(:disabled):hover {
  background: rgba(17, 17, 17, 0.05);
}

.investment-news {
  padding: 120px 0;
  background: var(--color-black);
}

.investment-news__card {
  display: grid;
  grid-template-columns: 265px 617px;
  align-items: start;
  justify-content: center;
  gap: 167px;
  width: 1200px;
  min-height: 310px;
  margin: 0 auto;
  padding: 60px 73px 60px 78px;
  border-radius: 24px;
  background: var(--color-dark);
  color: var(--color-white);
}

.investment-news__intro {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 16px;
}

.investment-news__title {
  color: var(--color-white);
}

.investment-news__desc {
  margin-top: 0;
  width: 265px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.investment-news__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}

.investment-news__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.investment-news__item::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  margin-top: 13px;
  background: currentColor;
}

.investment-news__item-copy {
  min-width: 0;
}

.investment-news__item-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  word-break: keep-all;
}

.investment-news__item-url {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  word-break: break-all;
}

.investment-contact {
  background: var(--color-dark);
  color: var(--color-white);
}

.investment-contact__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.investment-contact__copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.investment-contact__title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.investment-contact__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.investment-contact__divider {
  width: 1px;
  height: 13px;
  background: rgba(221, 221, 221, 0.4);
}

.investment-contact__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.c-footer {
  padding-bottom: 56px;
  background: var(--color-black);
  color: var(--color-white);
}

.c-footer-brand {
  overflow: hidden;
  padding-top: 64px;
}

.c-footer-brand__track {
  display: flex;
  width: max-content;
  gap: 80px;
  transform: translateX(-160px);
  animation: footer-marquee 32s linear infinite;
}

.c-footer-brand__group {
  display: flex;
  align-items: center;
  gap: 80px;
}

.c-footer-brand__group span {
  flex: none;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.c-footer__legal {
  position: relative;
  margin-top: 64px;
  padding-top: 41px;
}

.c-footer__legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1600px, 100%);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.c-footer__legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.c-footer__legal-row + .c-footer__legal-row {
  margin-top: 8px;
}

.investment-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.investment-modal[hidden] {
  display: none !important;
}

.investment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
}

.investment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(990px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 56px;
  border-radius: 32px;
  background: var(--color-white);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.18);
}

.investment-modal__close {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-black);
}

.investment-modal__close-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/menu-close.svg");
  mask: center / contain no-repeat url("../images/common/menu-close.svg");
}

.investment-modal__header {
  padding-right: 64px;
}

.investment-modal__eyebrow {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  color: var(--color-gold);
}

.investment-modal__title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.investment-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-3);
  font-size: 16px;
  line-height: 28px;
  color: var(--color-gray-1);
}

.investment-modal__meta strong {
  font-weight: 600;
  color: var(--color-black);
}

.investment-modal__body {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-gray-1);
}

.investment-modal__body p + p {
  margin-top: 20px;
}

.investment-modal__attachments {
  margin-top: 16px;
}

.investment-modal__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--color-gray-3);
  border-bottom: 1px solid var(--color-gray-3);
}

.investment-modal__file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.investment-modal__file-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 18px;
  color: var(--color-black);
}

.investment-modal__file-copy {
  min-width: 0;
}

.investment-modal__file-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-black);
  word-break: break-all;
}

.investment-modal__file-meta {
  margin-top: 2px;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-2);
}

.investment-modal__file-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-black);
  cursor: pointer;
  white-space: nowrap;
}

.investment-modal__file-action-icon {
  display: block;
  width: 13px;
  height: 13px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/download.svg");
  mask: center / contain no-repeat url("../images/common/download.svg");
}

@keyframes footer-marquee {
  from {
    transform: translateX(-160px);
  }

  to {
    transform: translateX(calc(-50% - 160px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-footer-brand__track {
    animation: none;
    transform: translateX(0);
  }
}

@media (max-width: 1279px) {
  .l-shell-1680,
  .l-shell-1200,
  .l-shell-1400,
  .l-shell-1840 {
    width: calc(100% - 64px);
    max-width: none;
  }

  .c-header {
    top: 32px;
  }

  .c-gnb {
    display: none;
  }

  .c-header__toggle {
    display: inline-flex;
  }

  .c-mobile-nav {
    right: 32px;
    width: min(400px, calc(100% - 64px));
  }

  .investment-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .investment-section-head__title {
    font-size: 48px;
  }

  .investment-section-head__desc {
    font-size: 20px;
    max-width: 760px;
  }

  .investment-services .investment-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .investment-hero__inner {
    padding-top: clamp(128px, 11vw, 144px);
    padding-bottom: clamp(80px, 8vw, 96px);
  }

  .investment-hero__headline {
    display: grid;
    grid-template-columns: clamp(184px, 22vw, 240px) clamp(104px, 11vw, 140px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(16px, 2vw, 20px);
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-right: clamp(0px, 6vw, 80px);
  }

  .investment-hero__title {
    position: static;
    font-size: clamp(48px, 4.8vw, 56px);
  }

  .investment-hero__title--right {
    margin-top: clamp(56px, 6vw, 72px);
  }

  .investment-hero__line {
    position: static;
    width: clamp(104px, 11vw, 140px);
    margin-top: clamp(88px, 9vw, 112px);
  }

  .investment-hero__media {
    width: 100%;
    max-width: 996px;
    margin: clamp(40px, 4vw, 48px) 0 0;
  }

  .investment-intro {
    padding: clamp(80px, 7vw, 96px) 0 clamp(88px, 7vw, 104px);
  }

  .investment-intro__title {
    font-size: clamp(40px, 4vw, 48px);
  }

  .investment-intro__content {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 32px);
    margin-top: clamp(24px, 3vw, 32px);
  }

  .investment-intro__media {
    max-width: 960px;
  }

  .investment-intro__body {
    width: auto;
    max-width: 760px;
    padding-top: 0;
  }

  .investment-intro__lead {
    width: auto;
  }

  .investment-services {
    padding: clamp(80px, 7vw, 96px) 0 clamp(88px, 7vw, 104px);
  }

  .investment-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 4vw, 40px) 24px;
    margin-top: clamp(32px, 4vw, 43px);
  }

  .investment-service-card:last-child {
    grid-column: 1 / -1;
    max-width: calc((100% - 24px) / 2);
  }

  .investment-track__inner {
    grid-template-columns: 1fr;
  }

  .investment-track__panel {
    padding: clamp(48px, 6vw, 64px) clamp(32px, 5vw, 48px);
  }

  .investment-track__title {
    font-size: clamp(40px, 4.2vw, 48px);
    line-height: 1.2;
  }

  .investment-people {
    padding: clamp(80px, 7vw, 96px) 0;
  }

  .investment-people__row {
    grid-template-columns: 1fr;
  }

  .investment-people__entry-body--wide {
    max-width: none;
  }

  .investment-notice {
    padding-bottom: clamp(80px, 7vw, 96px);
  }

  .investment-news {
    padding-top: clamp(80px, 7vw, 96px);
    padding-bottom: clamp(56px, 5vw, 64px);
  }

  .investment-news__card {
    width: 100%;
    padding: clamp(40px, 5vw, 48px);
  }

  .investment-news__card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .investment-contact__inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: clamp(18px, 2vw, 20px);
    padding-bottom: clamp(18px, 2vw, 20px);
  }

  .investment-contact__copy {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .c-footer {
    padding-top: clamp(48px, 5vw, 56px);
    padding-bottom: clamp(56px, 6vw, 64px);
  }

  .c-footer-brand {
    padding-top: clamp(48px, 5vw, 56px);
  }

  .c-footer-brand__track {
    gap: clamp(48px, 5vw, 64px);
    transform: translateX(clamp(-120px, -10vw, -72px));
  }

  .c-footer-brand__group {
    gap: clamp(48px, 5vw, 64px);
  }

  .c-footer-brand__group span {
    font-size: 72px;
  }

  .c-footer__legal {
    width: calc(100% - 64px);
    margin-top: clamp(40px, 4vw, 48px);
    padding-top: clamp(20px, 2vw, 24px);
  }

  .c-footer__legal-row {
    flex-direction: column;
    width: 100%;
    white-space: normal;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
  }

  .c-footer__legal-row + .c-footer__legal-row {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .l-shell-1680,
  .l-shell-1200,
  .l-shell-1400,
  .l-shell-1840 {
    width: calc(100% - 40px);
  }

  .c-header {
    top: 20px;
  }

  .c-header__inner {
    min-height: 24px;
  }

  .c-logo,
  .c-logo__image {
    width: 120px;
    height: 21px;
  }

  .c-header__toggle {
    width: 24px;
    height: 24px;
  }

  .c-header__toggle-icon {
    width: 24px;
    height: 24px;
  }

  .c-mobile-nav {
    top: calc(100% + 12px);
    right: 20px;
    width: calc(100% - 56px);
    padding: 2px 0;
  }

  .c-mobile-nav__item {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 18px;
    line-height: 26px;
  }

  .investment-section-head__title {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0.64px;
  }

  .investment-section-head__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .investment-hero__inner {
    padding-top: clamp(104px, 24vw, 112px);
    padding-bottom: clamp(48px, 12vw, 56px);
  }

  .investment-hero__headline {
    position: relative;
    width: min(320px, 100%);
    height: clamp(160px, 48vw, 175px);
    margin-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .investment-hero__title {
    position: absolute;
    white-space: nowrap;
    font-size: 32px;
    line-height: 1.2;
  }

  .investment-hero__title--left {
    top: 0;
    left: 0;
    width: clamp(96px, 31vw, 111px);
  }

  .investment-hero__title--right {
    top: clamp(88px, 27vw, 96px);
    left: clamp(84px, 27vw, 97px);
    width: clamp(204px, 68vw, 223px);
    margin-top: 0;
    white-space: normal;
  }

  .investment-hero__title--right span {
    letter-spacing: 0.96px;
  }

  .investment-hero__line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    top: clamp(60px, 19vw, 68px);
    left: clamp(120px, 42vw, 135px);
    width: clamp(150px, 58vw, 185px);
    margin-top: 0;
  }

  .investment-hero__media {
    width: 100%;
    margin-top: 40px;
    aspect-ratio: 320 / 180;
  }

  .investment-intro {
    padding: 0 0 56px;
  }

  .investment-intro__title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .investment-intro__content {
    display: block;
    margin-top: 24px;
  }

  .investment-intro__body,
  .investment-intro__lead {
    width: auto;
  }

  .investment-intro__media {
    width: 100vw;
    height: 202px;
    margin-left: calc(50% - 50vw);
    background: var(--color-black);
    aspect-ratio: auto;
  }

  .investment-intro__image {
    display: none;
  }

  .investment-intro__body {
    width: min(320px, 100%);
    margin: 24px auto 0;
    padding-top: 0;
  }

  .investment-intro__lead {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.3;
  }

  .investment-intro__list {
    gap: 8px;
  }

  .c-bullet-list {
    gap: 8px;
  }

  .c-bullet-item {
    gap: 8px;
  }

  .c-bullet-item::before {
    width: 3px;
    height: 3px;
    margin-top: 10px;
  }

  .c-bullet-item__text {
    font-size: 16px;
    line-height: 24px;
  }

  .investment-intro__list .c-bullet-item__text {
    font-size: 16px;
    line-height: 24px;
  }

  .investment-services {
    padding: 56px 0 48px;
  }

  .investment-services__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 24px;
  }

  .investment-service-card {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .investment-service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .investment-service-card__media {
    aspect-ratio: 320 / 400;
  }

  .investment-service-card__title {
    min-height: 0;
    font-size: 18px;
    line-height: 30px;
  }

  .investment-service-card__list .c-bullet-item__text {
    font-size: 16px;
    line-height: 24px;
  }

  .investment-track__media {
    aspect-ratio: 1 / 1;
  }

  .investment-track__panel {
    padding: 32px 20px 40px;
  }

  .investment-track__eyebrow {
    font-size: 16px;
    line-height: 24px;
  }

  .investment-track__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.02em;
  }

  .investment-track__list .c-bullet-item__text {
    font-size: 16px;
    line-height: 24px;
  }

  .investment-people {
    padding: 56px 0;
  }

  .investment-people__board {
    margin-top: 24px;
  }

  .investment-people__row {
    gap: 0;
    padding: 0;
  }

  .investment-people__entry {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-3);
  }

  .investment-people__row .investment-people__entry:last-child {
    border-bottom: 0;
  }

  .investment-people__name {
    font-size: 18px;
    line-height: 28px;
  }

  .investment-people__entry-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .investment-people__school {
    line-height: 24px;
  }

  .investment-people__list {
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .investment-people__list--sub {
    margin-top: 2px;
  }

  .investment-notice {
    padding-bottom: 56px;
  }

  .investment-notice__board {
    margin-top: 24px;
  }

  .investment-notice__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    grid-template-areas:
      "title title"
      "date icon";
    align-items: start;
    gap: 4px 16px;
    min-height: 0;
    padding: 24px 0;
  }

  .investment-notice__title-wrap {
    display: contents;
  }

  .investment-notice__title {
    grid-area: title;
    font-size: 18px;
    line-height: 26px;
  }

  .investment-notice__title-wrap .c-file-icon {
    grid-area: icon;
    width: 20px;
    height: 20px;
    justify-self: end;
    align-self: center;
  }

  .investment-notice__date {
    grid-area: date;
    padding-left: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .investment-notice__pager {
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .investment-notice__pager-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 20px;
  }

  .c-circle-arrow {
    width: 32px;
    height: 32px;
  }

  .investment-news {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .investment-news__card {
    width: 100%;
    padding: 32px 20px;
    border-radius: 20px;
  }

  .investment-news__intro {
    gap: 12px;
  }

  .investment-news__desc {
    margin-top: 0;
    width: auto;
    font-size: 16px;
    line-height: 24px;
  }

  .investment-news__list {
    margin-top: 24px;
  }

  .investment-news__item-title,
  .investment-news__item-url {
    line-height: 24px;
  }

  .investment-news__item-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .investment-news__item-url {
    font-size: 16px;
  }

  .investment-contact__meta {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .investment-contact__divider {
    display: none;
  }

  .c-footer {
    padding-bottom: 40px;
  }

  .c-footer-brand {
    padding-top: 32px;
  }

  .c-footer-brand__track {
    gap: 48px;
    transform: translateX(-96px);
  }

  .c-footer-brand__group {
    gap: 48px;
  }

  .c-footer-brand__group span {
    font-size: 48px;
    letter-spacing: 0.03em;
  }

  .c-footer__legal {
    width: min(320px, 100%);
    margin-top: 36px;
    padding-top: 20px;
  }

  .c-footer__legal-row {
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    font-size: 13px;
    line-height: 22px;
  }

  .investment-modal {
    padding: 12px;
  }

  .investment-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 40px 28px 28px;
    border-radius: 20px;
  }

  .investment-modal__close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .investment-modal__title {
    font-size: 28px;
  }

  .investment-modal__body {
    font-size: 16px;
    line-height: 1.7;
  }

  .investment-modal__attachments {
    margin-top: 14px;
  }

  .investment-modal__file {
    gap: 12px;
    padding: 12px 0;
  }

  .investment-modal__file-action {
    width: auto;
  }
}
