@charset "UTF-8";
/* Hallmark · pre-emit source critique: P4 H4 E4 S5 R4 V3 (browser QA pending)
 * Existing webinar sequence · theme: supplied InFluK KV
 * White / navy, blue-to-cyan and yellow accents; Noto Sans JP + Prompt.
 * Existing section ownership and form integration retained.
 */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.025em;
  overflow-wrap: anywhere;
}

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

button, a {
  -webkit-tap-highlight-color: var(--color-clear);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 5px;
}

p, h1, h2, h3, dl, dd {
  margin: 0;
}

h1, h2, h3 {
  color: var(--color-navy);
  font-family: var(--font-display);
  font-style: normal;
  min-width: 0;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.045em;
}

h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 4px;
  margin: 1.1rem auto 0;
  background: var(--gradient-highlight);
}

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

picture {
  display: contents;
}

svg.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.br-sp {
  display: none;
}

.header__button, .about__button, .company__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.5rem;
  max-width: 100%;
  padding: 1rem 2.75rem;
  border: 1px solid var(--color-clear);
  border-radius: 4px;
  background: var(--gradient-brand);
  color: var(--color-paper);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
  transition: transform var(--dur-short) var(--ease-out);
}

.header__button::after, .about__button::after, .company__button::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.header__button:hover, .about__button:hover, .company__button:hover {
  background: var(--color-navy);
}

.header__button:active, .about__button:active, .company__button:active {
  transform: translateY(1px);
}

.header__button {
  position: fixed;
  z-index: var(--z-sticky);
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-size: 1rem;
  transition: opacity var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}

.header__button:hover {
  background: var(--color-highlight);
}

.header.is-hidden .header__button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem);
}

.kv {
  width: 100%;
  background: var(--color-surface);
}

.kv__img {
  max-width: 100rem;
  margin: 0 auto;
}

.kv img {
  width: 100%;
  aspect-ratio: 1280/720;
  object-fit: contain;
}

.about {
  padding: var(--space-section) var(--page-gutter);
  text-align: center;
}

.about__text {
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
  font-size: 1.0625rem;
  line-height: 2.05;
}

.about__text p + p {
  margin-top: 1.75rem;
}

.about__opening {
  color: var(--color-navy);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.95;
}

.about__text strong {
  color: var(--color-navy);
  font-weight: 700;
  background: linear-gradient(var(--color-clear) 68%, var(--color-highlight) 68%);
}

.about__source {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.about__source a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.about__button {
  margin-top: 2.75rem;
  min-width: 18rem;
}

.element-img__bar {
  width: 100%;
}

.element-img__bar img {
  width: 100%;
  max-height: 18rem;
  aspect-ratio: 1920/462;
  object-fit: cover;
}

.recommendation {
  background: var(--color-surface-blue);
  padding: var(--space-2xl) var(--page-gutter) var(--space-section);
}

.recommendation__inner {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

.recommendation__inner--item {
  margin-top: 2.5rem;
}

.recommendation__inner--item--text {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-rule);
  font-weight: 500;
}

.recommendation__inner--item--text:first-child {
  padding-top: 0;
}

.recommendation__inner--item--text:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recommendation__inner--item--text svg {
  margin-top: 0.3rem;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--color-cyan);
}

.recommendation__inner--item--text p {
  min-width: 0;
}

.seminar {
  padding: var(--space-section) var(--page-gutter);
}

.seminar__element {
  max-width: 58rem;
  margin: 3rem auto 0;
}

.seminar__element--item {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  column-gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-rule);
}

.seminar__element--item:first-child {
  padding-top: 0;
}

.seminar__element--item:last-child {
  border: 0;
  padding-bottom: 0;
}

.seminar__element--item--icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-paper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seminar__element--item--icon--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seminar__element--item--icon--inner--text1 {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
}

.seminar__element--item--icon--inner--text2 {
  font-family: var(--font-number);
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--color-yellow);
}

.seminar__element--item--text h3 {
  margin: 0.25rem 0 1rem;
  font-size: 1.25rem;
  line-height: 1.65;
  font-weight: 700;
}

.outline {
  background: var(--color-surface);
  padding: var(--space-section) var(--page-gutter);
}

.outline__element {
  max-width: 58rem;
  margin: 2.75rem auto 0;
}

.outline__element--inner--item {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 2rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--color-rule);
}

.outline__element--inner--item:first-child {
  padding-top: 0;
}

.outline__element--inner--item:last-child {
  border: 0;
  padding-bottom: 0;
}

.outline__element--inner--item--title {
  color: var(--color-navy);
  font-weight: 700;
}

.outline__element--inner--item--text {
  min-width: 0;
}

.outline__element--inner--item--text a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.outline__element--inner--item--text time {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.outline__subtitle {
  display: inline-block;
  margin-top: 0.5rem;
}

.company {
  padding: var(--space-section) var(--page-gutter);
  text-align: center;
}

.company__inner {
  max-width: 58rem;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
  text-align: left;
}

.company__inner + .company__inner {
  margin-top: 3.5rem;
}

.company__inner--img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

/* IMG_6971.JPG: frame the face and upper body without modifying the original. */
.company__inner--img--lee {
  aspect-ratio: 1/1;
  overflow: clip;
  border-radius: 4px;
}

.company__inner--img--lee img {
  height: 100%;
  object-position: 49% 12%;
  transform: scale(1.9);
  transform-origin: 49% 12%;
  border-radius: 0;
}

.company__inner--text {
  min-width: 0;
}

.company__inner--text h3 {
  color: var(--color-blue);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
}

.company__inner--text dl {
  margin-top: 0.65rem;
  color: var(--color-navy);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.65;
}

.company__inner--text p {
  margin-top: 1.25rem;
}

.company__button {
  margin-top: 3rem;
  min-width: 18rem;
}

.strength {
  position: relative;
  isolation: isolate;
  padding: var(--space-section) var(--page-gutter);
  background: var(--color-navy);
  color: var(--color-on-dark);
}

.strength::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-blue);
  clip-path: polygon(88% 0, 100% 0, 100% 100%, 68% 100%);
  opacity: 0.45;
}

.strength__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.strength__h2 {
  color: var(--color-paper);
}

.strength__lead {
  max-width: 44rem;
  margin: 1.75rem auto 0;
  text-align: center;
}

.strength__lead b {
  color: var(--color-yellow);
  font-weight: 700;
}

.strength__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.strength__item {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-dark-rule);
}

.strength__item--icon {
  color: var(--color-yellow);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.strength__item--title {
  color: var(--color-paper);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
}

.strength__item--text {
  margin-top: 1.25rem;
  line-height: 1.95;
}

.form {
  padding: var(--space-section) var(--page-gutter);
  scroll-margin-top: 1.5rem;
}

.form__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.form__h2 {
  margin-bottom: 2.5rem;
}

.form__h2 .form__free {
  display: inline-block;
  white-space: nowrap;
}

.form__status, .form__fallback {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.form__fallback {
  margin-top: 1.5rem;
}

.form__fallback a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form__retry {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.65rem 1.25rem;
  min-height: 44px;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.form iframe {
  max-width: 100%;
}

.form .hs-form-field {
  margin-bottom: 1.5rem;
}

.form .hs-form {
  font-family: var(--font-body);
  color: var(--color-ink);
}

.form .hs-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.form .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem;
  background: var(--color-paper);
  border: 1px solid var(--color-rule);
  border-radius: 4px;
  font: inherit;
}

.form .hs-form-required, .form .hs-error-msg {
  color: var(--color-error);
}

.form .hs-error-msgs {
  font-size: 0.875rem;
  list-style: none;
}

.form .hs-button {
  display: block;
  margin: 2rem auto 0;
  min-height: 52px;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 4px;
  background: var(--gradient-brand);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.form .hs-button:hover {
  background: var(--color-navy);
}

.form .hs-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form .legal-consent-container {
  font-size: 0.875rem;
}

.form .legal-consent-container a {
  color: var(--color-blue);
  text-decoration: underline;
}

.footer {
  padding: 2rem var(--page-gutter);
  background: var(--color-navy);
  color: var(--color-on-dark);
  text-align: center;
}

.footer small {
  display: block;
  font-size: 0.75rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .seminar__element--item {
    column-gap: 1.5rem;
    grid-template-columns: 5rem minmax(0, 1fr);
  }
  .seminar__element--item--icon {
    width: 5rem;
    height: 5rem;
  }
  .seminar__element--item--icon--inner--text2 {
    font-size: 2.25rem;
  }
  .company__inner {
    grid-template-columns: 11rem minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }
  .strength__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  .strength__item {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0 1rem;
  }
  .strength__item--icon {
    margin: 0;
  }
  .strength__item--title br {
    display: none;
  }
  .strength__item--text {
    grid-column: 2;
    margin-top: 0.75rem;
  }
}
@media (max-width: 599px) {
  .br-sp {
    display: inline;
  }
  .kv img {
    aspect-ratio: 1080/1900;
  }
  .header__button {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1.25rem;
    right: 1.25rem;
    padding: 0.95rem 1.5rem;
  }
  .header.is-hidden .header__button {
    transform: translateY(0.5rem);
  }
  .about__text {
    font-size: 1rem;
    line-height: 1.95;
  }
  .about__text br {
    display: none;
  }
  .about__opening {
    font-size: 1.125rem;
  }
  .about__button, .company__button {
    min-width: 0;
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .element-img__bar img {
    height: 9rem;
    aspect-ratio: auto;
  }
  .recommendation {
    padding-top: 3rem;
  }
  .recommendation__inner--item--text {
    gap: 0.875rem;
  }
  .seminar__element {
    margin-top: 2.25rem;
  }
  .seminar__element--item {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding: 1.75rem 0;
  }
  .seminar__element--item--icon {
    width: 4rem;
    height: 4rem;
  }
  .seminar__element--item--icon--inner--text1 {
    font-size: 0.75rem;
  }
  .seminar__element--item--icon--inner--text2 {
    font-size: 1.875rem;
  }
  .seminar__element--item--text h3 {
    margin-top: 0;
    font-size: 1.125rem;
  }
  .outline__element--inner--item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    padding: 1.25rem 0;
  }
  .outline__element--inner--item--title {
    color: var(--color-blue);
  }
  .company__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .company__inner--img {
    width: min(66%, 15rem);
  }
  .company__inner--text dl {
    font-size: 1.25rem;
  }
  .strength__lead {
    text-align: left;
  }
  .strength__lead br {
    display: none;
  }
  .strength__item {
    display: block;
  }
  .strength__item--icon {
    margin-bottom: 0.75rem;
  }
  .form__h2 {
    font-size: 1.375rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

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