@charset "UTF-8";
.front-page .section-title {
  margin-bottom: 0.75em;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
}

.kv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: visible;
}
.kv__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.kv__layer--bottom {
  z-index: 1;
  height: 100%;
  overflow: hidden;
}
.kv__layer--middle {
  z-index: 2;
  height: auto;
  min-height: 100vh;
  overflow: visible;
  position: relative;
  opacity: 0;
}
.kv__layer--top {
  z-index: 3;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
}
.kv__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.kv__layer--bottom, .kv__layer--middle {
  will-change: clip-path;
}
.kv__layer--bottom .kv__bg-image, .kv__layer--middle .kv__bg-image {
  will-change: filter, transform;
}
.kv.kv--bg-reveal .kv__layer--bottom,
.kv.kv--bg-reveal .kv__layer--middle {
  clip-path: circle(10% at 50% 50%);
}
.kv.kv--bg-reveal .kv__layer--bottom .kv__bg-image,
.kv.kv--bg-reveal .kv__layer--middle .kv__bg-image {
  filter: blur(12px);
  transform: scale(1.05);
  transform-origin: center center;
}
.kv__layer--middle {
  overflow: visible;
  height: auto;
  min-height: 100vh;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.kv__layer--middle .kv__bg-image {
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0;
  padding: 0;
}
.kv__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.kv__catch {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kv__catch svg {
  width: auto;
  height: auto;
  max-width: clamp(250px, 35vw, 600px);
  object-fit: contain;
  mix-blend-mode: difference;
}
.kv .kv-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #f9f9f9;
  line-height: 1.1;
}
.kv .kv-catch__line {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-right: 12px;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.kv .kv-catch__text {
  display: inline-block;
  font-size: clamp(22px, 4.2vw, 56px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .kv .kv-catch {
    gap: 12px;
  }
  .kv__bg-image {
    height: 113%;
  }
}
.kv__copy {
  font-size: 2rem;
  line-height: 1.8;
  font-style: italic;
}

.message {
  padding: clamp(240px, 35vh, 400px) 20px 120px;
  background-color: #000;
  background-image: url("../../img/message-back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  color: #fff;
}
.message__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, #000 100%);
  pointer-events: none;
  z-index: 1;
}
.message__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  transition: none;
}
.message__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.message__lead {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.message__text {
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: clamp(20px, 6vw, 50px);
  letter-spacing: 0.2em;
  font-weight: 500;
}
.message__link {
  margin-top: clamp(60px, 8vh, 100px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}
.message__inner.is-visible .message__link {
  opacity: 1;
  transform: translateY(0);
}
.message__link-text {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1.5em;
  padding: 1em 2em;
  background: #fff;
  color: #000;
  border-radius: 4px;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
  border: 1px solid #fff;
}
.message__link-text::after {
  content: none;
}
.message__link-text:active, .message__link-text:focus-visible {
  background: #000;
  color: #fff;
}
.message__link-text:active .message__link-arrow-img, .message__link-text:focus-visible .message__link-arrow-img {
  content: url("../../img/arrow-r-white.svg");
  transform: translateX(6px);
}
@media (hover: hover) and (pointer: fine) {
  .message__link-text:hover {
    background: #000;
    color: #fff;
  }
  .message__link-text:hover .message__link-arrow-img {
    content: url("../../img/arrow-r-white.svg");
    transform: translateX(6px);
  }
}
.message__link-label {
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: 500;
}
.message__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(14px, 1.5vw, 18px);
  height: clamp(14px, 1.5vw, 18px);
}
.message__link-arrow-img {
  width: 18px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .message {
    padding: 80px 16px;
    /* ボタン自体も左寄せ */
  }
  .message__inner {
    width: 85%;
  }
  .message__text {
    line-height: clamp(24px, 8vw, 65px);
    letter-spacing: 0.1em;
  }
  .message__link {
    /* SP時のみ左寄せ + 上余白 */
    justify-content: center;
    text-align: center;
    margin-top: 5rem;
  }
  .message__link-text {
    margin: auto;
    width: 100%;
    justify-content: space-between;
  }
}

.services {
  padding: 45vh 0 160px;
  background-image: url("../../img/message-back.jpeg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.services__inner {
  width: 100%;
}
.services__header {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.services__title-wrapper {
  position: relative;
  text-align: left;
}
.services__title-subtitle {
  display: none;
}
.services__title-en {
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(64px, 12vw, 148px);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  transform: translateX(-1vw);
  color: #333;
}
.services__header-right {
  flex: 1;
  min-width: 260px;
}
.services__label {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 24px;
}
.services__lead {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #333;
}
.services__lead .services__lead-br {
  display: none;
}
.services__label-text {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #333;
}
.services__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #333;
}
.services__steps {
  margin-top: clamp(80px, 10vh, 120px);
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}
.services__steps-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.services__step {
  padding-bottom: 24px;
  padding-left: 0;
  margin-left: 0;
  border-bottom: 1px solid #333;
  width: 100%;
}
.services__steps-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.services__steps-image img {
  display: block;
  width: auto;
  max-width: clamp(160px, 22vw, 260px);
  height: auto;
  margin: auto;
}
.services__step-head {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.services__step-number {
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-2vw);
  transition: font-weight 0.6s ease-out;
  color: #333;
}
.services__step.is-active .services__step-number {
  font-weight: 900;
}
.services__step-content {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.services__step-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.services__step-text {
  max-width: 600px;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 1400px) {
  .services__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .services__header-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 25vh 0 100px;
  }
  .services__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 50px;
  }
  .services__title-wrapper {
    position: relative;
    text-align: left;
  }
  .services__title-subtitle {
    display: none;
  }
  .services__header-right {
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }
  .services__label {
    width: auto;
    padding-left: 0;
  }
  .services__label::after {
    left: 0;
    right: 0;
    width: auto;
  }
  .services__label-text {
    font-size: 20px;
  }
  .services__lead {
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-left: 0;
  }
  .services__lead .services__lead-br {
    display: inline;
  }
  .services__steps {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    margin-top: clamp(60px, 8vh, 80px);
    overflow-x: hidden;
  }
  .services__steps-list {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
  }
  .services__step {
    width: 85%;
    max-width: 85%;
    margin: 0 auto 24px;
    box-sizing: border-box;
  }
  .services__steps-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin: 0;
    pointer-events: none;
    opacity: 0.1;
  }
  .services__steps-image img {
    max-width: 50%;
    height: auto;
  }
  .services__step-head {
    gap: 40px;
  }
  .services__step-number {
    font-size: clamp(56px, 9vw, 96px);
    transform: translateX(0);
  }
  .services__step-title {
    font-size: clamp(14px, 1.8vw, 20px);
  }
  .services__step-text {
    font-size: clamp(11px, 1.2vw, 13px);
  }
}

.artists {
  padding: 160px 0;
}
.artists__inner {
  width: 100%;
}
.artists__header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 60px;
  padding: 0 20px;
}
.artists__title-wrapper {
  position: relative;
  text-align: right;
}
.artists__title-jp {
  position: absolute;
  top: -32px;
  left: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 0;
  white-space: nowrap;
  color: #333;
}
.artists__title-en {
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(64px, 12vw, 148px);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  transform: translateX(2vw);
  color: #333;
}
.artists__content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.artists__image {
  flex: 0 0 55%;
  position: relative;
  z-index: 1;
  max-width: 55%;
}
.artists__image img {
  display: block;
  width: 100%;
  height: auto;
}
.artists__info {
  position: absolute;
  left: 40%;
  bottom: -10%;
  width: 45%;
  min-height: 500px;
  z-index: 2;
}
.artists__info-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.artists__info-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .artists__info {
    bottom: -20%;
    width: 55%;
  }
}
@media (max-width: 1200px) {
  .artists__image {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .artists__info {
    width: 60%;
  }
}
@media (max-width: 850px) {
  .artists__info {
    width: 60%;
    bottom: -35%;
  }
}
.artists__sns {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 12px;
  margin-bottom: 16px;
}
.artists__sns-link {
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
.artists__sns-link:hover {
  opacity: 0.7;
}
.artists__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.artists__name {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: #fff;
}
.artists__description {
  font-size: clamp(11px, 1.3vw, 14px);
  line-height: 1.7;
  color: #fff;
  max-width: 100%;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .artists {
    padding: 100px 0;
  }
  .artists__header {
    justify-content: flex-end;
  }
  .artists__title-wrapper {
    width: auto;
  }
  .artists__title-en {
    transform: translateX(1vw);
  }
  .artists__content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0;
    overflow-x: visible;
  }
  .artists__image {
    flex: 0 0 auto;
    width: 90%;
    max-width: none;
    margin: 0 auto;
  }
  .artists__info {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    background-color: #673592;
  }
  .artists__info-bg {
    display: none;
  }
  .artists__info-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: clamp(24px, 5vw, 36px) clamp(20px, 6vw, 32px);
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
  }
  .artists__name {
    font-size: clamp(16px, 4.2vw, 18px);
  }
  .artists__info-content {
    display: flex;
    flex-direction: column;
  }
  .artists__name {
    order: 1;
  }
  .artists__description {
    order: 2;
  }
  .artists__sns {
    order: 3;
    margin-top: 16px;
    margin-bottom: 0;
    justify-content: flex-start;
  }
}

.news {
  padding-top: 160px;
  padding-bottom: 120px;
  margin: 8vh 0 10vh;
}
.news__title-area {
  width: 100%;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(16px, 4vw, 80px);
}
.news__inner {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 5em;
}
.news__title-wrapper {
  position: relative;
  text-align: left;
  max-width: none;
  width: 100%;
}
.news__title-jp {
  position: absolute;
  top: -32px;
  left: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  white-space: nowrap;
  color: #333;
}
.news__title {
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(64px, 12vw, 148px);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  transform: translateX(-1vw);
  margin-bottom: 40px;
  color: #333;
}
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.news__item {
  border-bottom: 1px solid #e0e0e0;
}
.news__link {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  padding: 16px 0;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s ease;
  max-width: 950px;
}
.news__link:hover {
  opacity: 0.7;
}
.news__date {
  font-size: clamp(12px, 1.5vw, 16px);
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  min-width: 80px;
  letter-spacing: 0.05em;
}
.news__title-text {
  font-size: clamp(12px, 1.5vw, 16px);
  color: #333;
  flex: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.news__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.news__arrow img {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.news__footer {
  text-align: right;
  margin-top: 75px;
  display: flex;
  justify-content: flex-end;
}
.news__more {
  display: inline-flex;
  align-items: center;
  gap: 1.5em;
  padding: 1em 2.5em;
  background: #333;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #333;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.news__more::after {
  content: none;
}
.news__more .news__more-arrow img {
  content: url("../../img/arrow-r-white.svg");
}
.news__more:active, .news__more:focus-visible {
  background: #fff;
  color: #333;
}
.news__more:active .news__more-arrow img, .news__more:focus-visible .news__more-arrow img {
  content: url("../../img/arrow-r.svg");
  transform: translateX(6px);
}
@media (hover: hover) and (pointer: fine) {
  .news__more:hover {
    background: #fff;
    color: #333;
  }
  .news__more:hover .news__more-arrow img {
    content: url("../../img/arrow-r.svg");
    transform: translateX(6px);
  }
}
.news__more-label {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.15em;
}
.news__more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(14px, 1.5vw, 18px);
  height: clamp(14px, 1.5vw, 18px);
}
.news__more-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .news {
    width: 85%;
    margin: 0 auto;
  }
  .news__title-area {
    padding-left: 0;
    padding-right: 0;
  }
  .news__title-wrapper {
    width: auto;
  }
  .news__inner {
    max-width: 100%;
  }
  .news__title {
    margin-bottom: 32px;
  }
  .news__link {
    gap: 16px;
    padding: 12px 0;
  }
  .news__date {
    font-size: clamp(12px, 1.5vw, 16px);
    min-width: 70px;
  }
  .news__title-text {
    font-size: clamp(12px, 1.5vw, 16px);
  }
  .news__arrow {
    width: 20px;
    height: 20px;
  }
  .news .news__more {
    width: 100%;
    justify-content: space-between;
    padding: 1em 2em;
  }
}

/*# sourceMappingURL=front-page.css.map */
