* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #0b0d12;
  color: #f4f4f2;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

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

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

.mobile-container {
  max-width: 500px;
  margin: 0 auto;
  overflow-x: hidden;
}

.inner {
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #c8a96a;
  margin-bottom: 14px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 20px;
  background-color: #bd8700;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.btn:active {
  background-color: #b3945a;
}
.btn .btn-arrow {
  font-size: 15px;
}

.btn-wrap {
  margin-top: 40px;
}

.btn-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(244, 244, 242, 0.64);
}

.fv {
  position: relative;
  min-height: 600px;
  min-height: clamp(520px, 100svh, 680px);
  overflow: hidden;
  background-color: #000;
}

.fv-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 24px 0;
  pointer-events: none;
}

.fv-logo {
  width: 132px;
  margin-bottom: 12px;
}

.fv-title {
  font-size: 20px;
  font-size: clamp(16px, 4.7vw, 26px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #fff;
  margin-top: 20px;
}
.fv-title .em {
  font-size: inherit;
  color: #c8a96a;
}

.fv-slider {
  display: flex;
  align-items: stretch;
  min-height: 600px;
  min-height: clamp(520px, 100svh, 680px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.fv-slider::-webkit-scrollbar {
  display: none;
}

.fv-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 600px;
  min-height: clamp(520px, 100svh, 680px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.fv-slide video,
.fv-slide img.fv-anim {
  position: absolute;
  top: -84px;
  top: calc(clamp(520px, 100svh, 680px) * -0.14);
  left: 0;
  width: 100%;
  height: 684px;
  height: calc(clamp(520px, 100svh, 680px) * 1.14);
  object-fit: cover;
  object-position: top center;
}

.fv-slide.slide-sato video,
.fv-slide.slide-sato img.fv-anim {
  top: 24px;
  top: calc(clamp(520px, 100svh, 680px) * 0.04);
  height: 600px;
  height: clamp(520px, 100svh, 680px);
  object-position: center top;
}

.fv-slide.has-offset video,
.fv-slide.has-offset img.fv-anim {
  top: calc((var(--fv-offset, 0) - 14) * 6px);
  top: calc(clamp(520px, 100svh, 680px) * (var(--fv-offset, 0) - 14) / 100);
  height: 684px;
  height: calc(clamp(520px, 100svh, 680px) * 1.14);
  object-position: top center;
}

.anim-loading {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 3;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.anim-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(200, 169, 106, 0) 0%, rgba(200, 169, 106, 0.9) 50%, rgba(200, 169, 106, 0) 100%);
  animation: anim-loading-slide 1.4s ease-in-out infinite;
}

.fv-slide.anim-ready .anim-loading {
  opacity: 0;
}
.fv-slide.anim-ready .anim-loading::before {
  animation: none;
}

@keyframes anim-loading-slide {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}
.fv-slide.slide-sato .grad {
  background: linear-gradient(to bottom, rgb(6, 8, 12) 0%, rgba(6, 8, 12, 0.85) 9%, rgba(6, 8, 12, 0) 26%, rgba(6, 8, 12, 0) 42%, rgba(6, 8, 12, 0.9) 74%, rgba(6, 8, 12, 0.97) 100%);
}

.scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.28);
}

.grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.55) 0%, rgba(6, 8, 12, 0) 26%, rgba(6, 8, 12, 0) 42%, rgba(6, 8, 12, 0.9) 74%, rgba(6, 8, 12, 0.97) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 32px;
  margin-top: 300px;
  margin-top: calc(clamp(520px, 100svh, 680px) * 0.5);
}

.kicker {
  float: left;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  margin: 0 18px 10px 0;
  background-color: rgba(200, 169, 106, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.speaker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 10px;
}

.speaker-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  white-space: nowrap;
}

.speaker-name-en {
  align-self: flex-end;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(244, 244, 242, 0.64);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .slide-content {
    padding-right: 24px;
    padding-left: 24px;
  }
  .kicker {
    min-height: 32px;
    padding: 6px 8px;
    margin-right: 10px;
    font-size: 12px;
  }
  .speaker-row {
    gap: 6px;
    min-height: 32px;
  }
  .speaker-name {
    font-size: 20px;
  }
  .speaker-name-en {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}
.career {
  clear: both;
  border-left: 1px solid rgba(200, 169, 106, 0.55);
  margin-left: 5px;
}

.career-step {
  position: relative;
  padding: 0 0 8px 16px;
}
.career-step::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c8a96a;
}
.career-step.now::before {
  background-color: #fff;
}
.career-step:last-child {
  padding-bottom: 0;
}

.career-org {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.career-org .sub {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(244, 244, 242, 0.64);
}

.domains-label {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-height: 42px;
  margin-top: 14px;
  background-color: rgba(200, 169, 106, 0.42);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 10px;
}

.domains {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 5px 6px;
  min-height: 42px;
  margin-top: 14px;
  margin-left: 82px;
}

.domain {
  font-size: 11px;
  line-height: 1;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
}

.fv-cta {
  clear: both;
  margin: 42px 8px 0;
}
.fv-cta .fv-cta-note {
  margin-top: 8px;
  text-align: center;
  font-size: 11px;
  color: rgba(244, 244, 242, 0.64);
}

@media (max-width: 480px) {
  .career-step {
    padding: 0 0 4px 14px;
  }
  .career-step::before {
    top: 6px;
    width: 4px;
    height: 4px;
  }
  .career-org {
    font-size: 11px;
    line-height: 1.4;
  }
  .career-org .sub {
    margin-left: 4px;
    font-size: 9px;
  }
  .domains-label {
    width: 72px;
    min-height: 36px;
    margin-top: 10px;
    margin-right: 8px;
    font-size: 11px;
  }
  .domains {
    gap: 5px 4px;
    min-height: 36px;
    margin-top: 10px;
    margin-left: 80px;
  }
  .domain {
    padding: 4px 7px;
    font-size: 9px;
  }
  .fv-cta .btn {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
  }
  .fv-cta .fv-cta-note {
    font-size: 10px;
  }
}
@media (min-width: 481px) {
  .fv-title {
    font-size: 22px;
    line-height: 1.55;
    white-space: nowrap;
  }
  .slide-content {
    padding: 0 32px 24px;
  }
  .kicker {
    min-height: 32px;
    padding: 5px 10px;
    margin-right: 14px;
    font-size: 12px;
  }
  .speaker-row {
    gap: 8px;
    min-height: 32px;
    margin-bottom: 7px;
  }
  .speaker-name {
    font-size: 22px;
  }
  .speaker-name-en {
    font-size: 11px;
  }
  .career-step {
    padding: 0 0 5px 15px;
  }
  .career-step::before {
    top: 8px;
  }
  .career-org {
    font-size: 13px;
    white-space: nowrap;
  }
  .career-org .sub {
    margin-left: 6px;
    font-size: 10px;
    white-space: nowrap;
  }
  .domains-label {
    width: 76px;
    min-height: 38px;
    margin-top: 12px;
    margin-right: 8px;
    font-size: 12px;
  }
  .domains {
    gap: 4px 5px;
    min-height: 38px;
    margin-top: 12px;
    margin-left: 84px;
  }
  .domain {
    padding: 4px 7px;
    font-size: 9px;
  }
  .fv-cta {
    margin-top: 28px;
  }
  .fv-cta .btn {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
  }
  .fv-cta .fv-cta-note {
    font-size: 10px;
  }
}
.fv-dots {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  transition: background-color 0.3s ease;
}
.fv-dot.active {
  background-color: #c8a96a;
}

.fv-tagline {
  padding: 36px 24px 32px;
  background-color: #000;
  text-align: center;
}
.fv-tagline p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
}

.fv-tagline-logo {
  width: 116px;
  margin: 24px auto 0;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.28;
}

.logos {
  background-color: #fff;
  color: #0b0d12;
  padding: 56px 0;
}

.logos-title {
  max-width: 360px;
  margin: 0 auto 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}

.logos-img-crop {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logos-img {
  width: 100%;
  height: auto;
  margin-top: -13%;
}

.problem {
  padding: 38px 0 52px;
  background-color: #000;
}
.problem .inner {
  padding: 0 32px;
}
.problem .section-label {
  display: none;
}
.problem .section-title {
  margin: 0 0 46px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 58px;
  width: 100%;
  max-width: 402px;
  margin: 0 auto;
}

.problem-item {
  position: relative;
}

.problem-num {
  width: 20px;
  margin: 0 auto 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(244, 244, 242, 0.88);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.problem-item-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: #c8a96a;
}

.problem-item-content {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.problem-item-img {
  width: 72px;
  max-height: 78px;
  object-fit: contain;
}

.problem-item-text {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(244, 244, 242, 0.9);
}

.bridge {
  padding: 35px 0 75px;
  background-color: #000;
  text-align: center;
}

.bridge-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.bridge-lead .em {
  font-size: inherit;
  color: #fff;
}

.bridge-logo {
  width: 96px;
  margin: 22px auto 0;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.28;
}

.how {
  padding: 48px 0 30px;
  background-color: #fff;
  color: #0b0d12;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 74px;
}

.how-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  column-gap: 20px;
  align-items: flex-start;
  min-height: 236px;
  padding-left: 26px;
}
.how-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: #b3945a;
}
.how-item:last-child::before {
  bottom: 54px;
}

.how-head {
  min-width: 0;
}

.how-num {
  margin-bottom: 20px;
  font-family: serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(179, 148, 90, 0.72);
}
.how-num::before {
  content: "Point ";
}

.how-shot {
  width: 110px;
}
.how-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(20, 22, 28, 0.12);
  box-shadow: 0 4px 14px rgba(20, 22, 28, 0.1);
  cursor: zoom-in;
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 8, 12, 0.88);
}
.img-modal[hidden] {
  display: none;
}
.img-modal img {
  max-width: min(400px, 100%);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  cursor: zoom-out;
}

.img-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.how-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}

.how-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(20, 22, 28, 0.72);
}

.how-note {
  grid-column: 1/-1;
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(20, 22, 28, 0.5);
}

.value {
  padding: 72px 0;
  background-color: #0b0d12;
  text-align: center;
}

.value-copy {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.value-copy .em {
  font-size: inherit;
  color: #c8a96a;
}

.value-text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  text-align: left;
}

.faq {
  padding: 72px 0;
  background-color: #f6f5f2;
  color: #0b0d12;
}
.faq .section-label {
  color: #b3945a;
}
.faq .section-title {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(20, 22, 28, 0.14);
  padding: 22px 0;
}
.faq-item:first-child {
  border-top: 0;
}

.faq-q {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 8px;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  color: #b3945a;
}

.faq-a {
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(20, 22, 28, 0.72);
}

.footer {
  padding: 32px 0 120px;
  background-color: #0b0d12;
  text-align: center;
}
.footer p {
  font-size: 11px;
  color: rgba(244, 244, 242, 0.4);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  max-width: 500px;
  margin: 0 auto;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background-color: rgba(11, 13, 18, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}

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