@charset "UTF-8";
:root {
  --foodex-visitors-primary: #ed7100;
  --foodex-visitors-secondary: #f39800;
  --foodex-exhibitors-primary: #0162af;
  --foodex-exhibitors-secondary: #00bdd6;
  --hcj-visitors-primary: #834797;
  --hcj-visitors-secondary: #B57CDE;
  --hcj-exhibitors-primary: #0162af;
  --hcj-exhibitors-secondary: #00bdd6;
  --text-black: #333;
  --text-gray: #7c7c7c;
  --text-white: #fff;
  --text-placeholder: #9c9c9c;
  --surface-bg: #f4f4f4;
  --surface-light-gray: #f2f2f2;
  --surface-white: #fff;
  --surface-disabled: #ddd;
  --surface-foodex-visitors1: #ed7100;
  --surface-foodex-visitors2: #f39800;
  --surface-foodex-visitors3: #FBF5EE;
  --surface-foodex-gradation-start: #ed7100;
  --surface-foodex-gradation-end: #f7ae2d;
  --surface-foodex-exhibitors1: #0162af;
  --surface-foodex-exhibitors2: #00bdd6;
  --surface-foodex-exhibitors3: #F0F5FA;
  --surface-foodex-exhibitors-gradation-start: #0162af;
  --surface-foodex-exhibitors-gradation-end: #00bdd6;
  --surface-hcj-visitors1: #7F11A6;
  --surface-hcj-visitors2: #BE79E4;
  --surface-hcj-visitors3: #F7F3FE;
  --surface-hcj-gradation-start: #7F11A6;
  --surface-hcj-gradation-end: #827AE0;
  --visitors-stage-foodex: #541BD2;
  --visitors-stage-start-up: #0E8D73;
  --visitors-stage-food-ai: #EC2583;
  --visitors-stage-foodex-wine: #81B72A;
  --border-color: #bdbdbd;
  --accent: #D31300;
  --surface-error: #FCECEB;
  --brand-primary: var(--foodex-visitors-primary);
  --brand-surface-tint: var(--surface-foodex-visitors3);
  --brand-gradation-start: var(--surface-foodex-gradation-start);
  --brand-gradation-end: var(--surface-foodex-gradation-end);
}

body.brand-hcj {
  --brand-primary: var(--hcj-visitors-primary);
  --brand-surface-tint: var(--surface-hcj-visitors3);
  --brand-gradation-start: var(--surface-hcj-gradation-start);
  --brand-gradation-end: var(--surface-hcj-gradation-end);
}

* {
  box-sizing: border-box;
}

[v-cloak] {
  display: none !important;
}

body.public {
  margin: 0;
  color: var(--text-black);
  background: var(--surface-white);
  font-family: "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.registration-container {
  width: min(1300px, 100% - 32px);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

body.public {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.registration-main {
  flex: 1;
}

.registration-container {
  padding-left: 0;
  padding-right: 0;
}

.public-section {
  padding: 32px 0;
}

.public-section-alt {
  background: color-mix(in srgb, var(--surface-bg) 85%, #f2f6ef 15%);
}

@media (max-width: 980px) {
  .public-section {
    padding: 24px 0;
  }
}
.foodex-header {
  position: relative;
  z-index: 20;
  background: var(--surface-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
}

.foodex-header__inner {
  max-width: 1400px;
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 660px auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.foodex-header__content {
  max-width: 660px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.foodex-header__left {
  border-right: 1px solid var(--border-color);
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.foodex-header__logo-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.foodex-header__logo {
  display: block;
  width: auto;
}

.foodex-header__logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-white);
  border: 1px dashed var(--border-color);
  color: var(--text-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.foodex-header__logo-main {
  display: block;
  width: 280px;
  height: auto;
}

.foodex-header__logo-sub {
  display: block;
  width: 110px;
  height: auto;
}

.foodex-header__main {
  padding-left: 30px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.foodex-header__sp-menu {
  display: none;
}

.foodex-header__menu-button {
  display: none;
}

.foodex-header__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #2a2a2a;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.foodex-header__mypage {
  color: #ef7a00;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

.foodex-header__mypage--visitor {
  color: var(--foodex-visitors-primary);
}

.foodex-header__mypage--exhibitor {
  color: var(--foodex-exhibitors-primary);
}

.foodex-header__lang {
  display: inline-flex;
  align-items: center;
}

.foodex-header__right {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}

.foodex-header__right.is-guest {
  justify-content: center;
}

.foodex-header__right.is-auth {
  justify-content: flex-start;
}

.foodex-header__auth-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.foodex-header__account-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
}

.foodex-header__account-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.foodex-header__logout {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  min-width: 170px;
  height: 50px;
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: #d9230f;
}

.foodex-header__utility-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.foodex-header__quick-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.foodex-header__quick-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #2568b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.foodex-header__quick-link-arrow {
  font-size: 14px;
  line-height: 1;
}

.foodex-header__lang-button {
  min-width: 56px;
  height: 22px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  margin: 0 10px;
  background: #fff;
  color: #6e6e6e;
  font-size: 13px;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.foodex-header__lang-button.is-active {
  background: #888;
  border-color: #888;
  color: #fff;
}

.foodex-header__lang-separator {
  color: #b0b0b0;
  font-size: 14px;
}

.official-buyer-heading-h1,
.official-buyer-heading-h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.official-buyer-heading-h1__inner,
.official-buyer-heading-h2__inner {
  width: min(1200px, calc(100% - 30px));
  margin: 0 auto;
}

.official-buyer-heading-h1__text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  margin: 0;
}

.official-buyer-heading-h1__point {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand-primary);
  margin-left: -10px;
}

.official-buyer-heading-h2__text {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 20px;
  margin: 0;
  border-left: 5px solid var(--brand-primary);
}

.official-buyer-intro {
  margin-bottom: 50px;
}

.official-buyer-intro__inner {
  width: min(1200px, calc(100% - 30px));
  margin: 0 auto;
}

.official-buyer-intro__panel {
  background: var(--brand-surface-tint);
  border-radius: 5px;
  padding: 30px 40px;
}

.official-buyer-intro__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 25px;
  color: var(--text-black);
  text-align: center;
}

.official-buyer-intro__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.official-buyer-intro__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 15px;
  padding: 6px;
  background: var(--brand-primary);
  color: var(--text-white);
  text-align: center;
}

.official-buyer-intro__meta-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.official-buyer-intro__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--brand-primary);
  background: var(--surface-white);
  color: var(--brand-primary);
}

.official-buyer-intro__value {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: var(--text-black);
}

.official-buyer-intro__details {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-black);
}

.official-buyer-intro__details p {
  margin: 0;
}

.official-buyer-intro__notes {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--accent);
}

.official-buyer-intro__notes li + li {
  margin-top: 8px;
}

.official-buyer-heading-h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto;
  padding: 4px 10px;
  background: linear-gradient(90deg, var(--brand-gradation-start) 0%, var(--brand-gradation-end) 100%);
  color: var(--text-white);
}

.foodex-contact {
  width: min(1000px, calc(100% - 30px));
  margin: 0 auto;
  margin: 70px auto 100px;
  background: var(--surface-white);
}

.foodex-contact__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 14px;
  background: var(--text-gray);
  color: var(--text-white);
  text-align: center;
}

.foodex-contact__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f5f5f5;
  padding: 30px 10px;
}

.foodex-contact__desk,
.foodex-contact__support {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foodex-contact__desk {
  margin-left: 20px;
  padding-right: 10px;
  border-right: 1px solid var(--border-color);
  text-align: center;
}

.foodex-contact__support {
  padding-left: 30px;
}

.foodex-contact__desk-line,
.foodex-contact__support-line {
  margin: 0;
}

.foodex-contact__desk-line {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-black);
}

.foodex-contact__desk-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  margin-right: 8px;
}

.foodex-contact__desk-note {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin: 6px 0 0;
  color: var(--text-gray);
}

.foodex-contact__support-line {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-black);
}

.foodex-contact__support-line + .foodex-contact__support-line {
  margin-top: 2px;
}

.foodex-contact__support-link {
  color: var(--brand-primary);
  font-weight: 700;
}

.public-footer {
  background: #e5e5e7;
}

.public-footer__inner {
  width: min(1300px, calc(100% - 30px));
  margin: 0 auto;
  min-height: 110px;
  padding: 50px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.public-footer__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.public-footer__logo {
  display: block;
  width: 302px;
  max-width: 100%;
  height: auto;
}

.public-footer__copyright {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-gray);
}

.public-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: flex-end;
  margin-bottom: 2px;
}

.public-footer__links-main,
.public-footer__links-sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.public-footer__links-main {
  gap: 0;
  margin-bottom: 40px;
}

.public-footer__links-main .public-footer__link--main {
  padding: 0 40px;
}

.public-footer__links-main .public-footer__link--main + .public-footer__link--main {
  border-left: 1px solid #c3c3c3;
}

.public-footer__links-main .public-footer__link--main:first-child {
  padding-left: 0;
}

.public-footer__links-main .public-footer__link--main:last-child {
  padding-right: 0;
}

.public-footer__links-sub {
  gap: 22px;
}

.public-footer__link {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.public-footer__link--main {
  font-weight: 700;
}

.public-footer__link-icon {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

.public-footer__exhibitor {
  display: grid;
  grid-template-columns: 230px auto;
  align-items: center;
  column-gap: 26px;
  row-gap: 10px;
}

.public-footer__exhibitor-title-wrap {
  border-left: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
  padding: 6px 22px;
}

.public-footer__exhibitor-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--text-black);
  text-align: center;
}

.public-footer__exhibitor-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.public-footer__exhibitor-line {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--text-black);
}

.public-footer__link--exhibitor {
  grid-column: 2;
  justify-self: end;
}

@media (max-width: 1200px) {
  .foodex-header__inner {
    grid-template-columns: 590px auto;
    gap: 5px;
  }
  .foodex-header__content {
    max-width: 590px;
  }
  .foodex-header__left {
    padding: 0 15px;
  }
  .foodex-header__logo-main {
    width: 250px;
  }
  .foodex-header__logo-sub {
    width: 100px;
  }
  .foodex-header__main {
    padding-left: 15px;
  }
  .foodex-header__right {
    gap: 10px;
  }
  .foodex-header__auth-row {
    gap: 10px;
  }
  .foodex-header__utility-row {
    gap: 0;
  }
  .foodex-header__quick-links {
    gap: 10px;
  }
  .foodex-header__quick-link {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    gap: 4px;
  }
  .foodex-header__lang-button {
    margin: 0 8px;
  }
  .public-footer__inner {
    gap: 10px;
  }
  .public-footer__left {
    gap: 12px;
  }
  .public-footer__links-main .public-footer__link--main {
    padding: 0 30px;
  }
  .public-footer__exhibitor {
    grid-template-columns: 210px auto;
    column-gap: 10px;
  }
  .public-footer__exhibitor-title-wrap {
    padding: 6px 10px;
  }
}
@media (max-width: 980px) {
  .official-buyer-intro {
    margin-bottom: 30px;
  }
  .official-buyer-intro__panel {
    padding: 15px;
  }
  .official-buyer-intro__heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .official-buyer-intro__columns {
    grid-template-columns: 1fr;
  }
  .official-buyer-intro__meta-row {
    grid-template-columns: 88px 1fr;
    gap: 13px;
    margin-bottom: 0;
    align-items: flex-start;
  }
  .official-buyer-intro__meta-row + .official-buyer-intro__meta-row {
    margin-top: 10px;
  }
  .official-buyer-intro__details {
    margin-top: 10px;
  }
  .official-buyer-intro__notes {
    font-size: 13px;
    margin-top: 15px;
  }
  .foodex-header {
    background: #f4f4f4;
  }
  .foodex-header__inner {
    width: 100%;
    min-height: 90px;
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 8px 0 6px;
  }
  .foodex-header__content {
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "left menu" "main main";
    align-items: flex-start;
    column-gap: 8px;
    row-gap: 5px;
  }
  .foodex-header__left {
    grid-area: left;
    border-right: 0;
    padding-right: 0;
    padding-left: 10px;
    min-width: 0;
    align-self: center;
  }
  .foodex-header__logo-link {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-right: 0;
    border-right: 0;
  }
  .foodex-header__logo-main {
    width: 200px;
    height: auto;
    flex: 0 0 auto;
  }
  .foodex-header__logo-sub {
    width: 95px;
    height: auto;
    flex: 0 0 auto;
  }
  .foodex-header__logo-placeholder {
    font-size: 9px;
  }
  .foodex-header__main {
    grid-area: main;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
  }
  .foodex-header__sp-menu {
    grid-area: menu;
    display: flex;
    justify-content: flex-end;
    align-self: center;
  }
  .foodex-header__menu-button {
    width: 50px;
    height: 50px;
    border: 0;
    background: #d9230f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
  }
  .foodex-header__menu-icon {
    display: block;
  }
  .foodex-header__title {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    order: 2;
    margin: 0;
  }
  .foodex-header__mypage {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    order: 1;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .foodex-header__lang {
    display: none;
  }
  .foodex-header__right {
    min-width: 0;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }
  .foodex-header__right.is-guest {
    display: none;
  }
  .foodex-header__right.is-auth {
    gap: 4px;
  }
  .foodex-header__auth-row {
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .foodex-header__account-name {
    font-size: 15px;
    line-height: 1.35;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .foodex-header__account-text {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }
  .foodex-header__account-icon {
    width: 14px;
    height: 14px;
  }
  .foodex-header__logout {
    display: none;
  }
  .foodex-header__utility-row {
    display: none;
  }
  .foodex-header__quick-links {
    gap: 8px 12px;
    flex-wrap: wrap;
  }
  .foodex-header__quick-link {
    font-size: 12px;
    line-height: 1.4;
  }
  .foodex-header__quick-link-arrow {
    font-size: 12px;
  }
  .foodex-header__right.is-guest .foodex-header__utility-row {
    min-height: 0;
  }
  .foodex-contact {
    width: min(1000px, 100% - 24px);
    margin: 30px auto 60px;
  }
  .foodex-contact__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding: 8px 10px;
  }
  .foodex-contact__body {
    grid-template-columns: 1fr;
    padding: 16px 14px;
  }
  .foodex-contact__desk {
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid #d3d3d3;
  }
  .foodex-contact__desk-line {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
  }
  .foodex-contact__desk-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .foodex-contact__desk-hours {
    display: block;
  }
  .foodex-contact__desk-hours-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
  }
  .foodex-contact__desk-note {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 5px;
  }
  .foodex-contact__support {
    padding-left: 0;
    padding-top: 12px;
    text-align: center;
  }
  .foodex-contact__support-label {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
  }
  .foodex-contact__support-line {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .foodex-contact__support-line + .foodex-contact__support-line {
    margin-top: 4px;
  }
  .foodex-contact__support-link {
    font-weight: 700;
  }
  .public-footer__inner {
    width: min(1300px, 100% - 24px);
    min-height: 96px;
    padding: 20px 0 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .public-footer__left {
    order: 2;
    gap: 10px;
    align-items: center;
  }
  .public-footer__logo {
    width: 250px;
  }
  .public-footer__copyright {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
  }
  .public-footer__links {
    order: 1;
    width: 100%;
    align-self: auto;
    align-items: center;
    gap: 10px;
  }
  .public-footer__links-main,
  .public-footer__links-sub {
    width: 100%;
    justify-content: center;
    gap: 8px 0;
  }
  .public-footer__links-main {
    margin-bottom: 4px;
  }
  .public-footer__links-main .public-footer__link--main {
    padding: 0 14px;
    position: relative;
  }
  .public-footer__links-main .public-footer__link--main + .public-footer__link--main {
    border-left: 0;
  }
  .public-footer__links-main .public-footer__link--main:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    background: #c3c3c3;
    transform: translateY(-50%);
  }
  .public-footer__links-sub {
    gap: 8px 15px;
  }
  .public-footer__link {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }
  .public-footer__link--main {
    font-weight: 700;
  }
  .public-footer__link-icon {
    width: 11px;
    height: 11px;
  }
  .public-footer__exhibitor {
    order: 1;
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 8px;
    justify-items: center;
    text-align: center;
  }
  .public-footer__exhibitor-title-wrap {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
  }
  .public-footer__exhibitor-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .public-footer__exhibitor-detail {
    align-items: center;
    gap: 4px;
  }
  .public-footer__exhibitor-line {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
  }
  .public-footer__link--exhibitor {
    grid-column: 1;
    justify-self: center;
    margin-top: 20px;
  }
  .official-buyer-heading-h3 {
    padding: 5px 10px;
  }
}
.official-buyer-registration__heading-h1 {
  margin: 30px 0 0;
}

.official-buyer-registration__heading-h2 {
  margin: 40px 0 50px;
}

.official-buyer-registration-form-section {
  background-color: var(--brand-surface-tint);
  padding: 70px 0 20px;
}

.official-buyer-registration-form-section__inner {
  background-color: var(--surface-white);
  width: min(1000px, 100% - 30px);
  margin: 0 auto;
  padding: 30px 50px 50px;
}

.official-buyer-registration-form-section__inner + .official-buyer-registration-form-section__inner {
  margin-top: 20px;
}

.official-buyer-registration-form-fields {
  margin: 35px auto 0;
  width: min(800px, 100% - 30px);
}

.official-buyer-registration-form-fields > .official-buyer-form-part + .official-buyer-form-part {
  margin-top: 35px;
}

.official-buyer-form-part {
  --official-buyer-form-part-height-pc: 50px;
  --official-buyer-form-part-height-sp: 45px;
}

.official-buyer-form-part__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.official-buyer-form-part__required {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 1px 8px;
  background: var(--accent);
  color: var(--text-white);
}

.official-buyer-form-part__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-black);
  vertical-align: middle;
}

.official-buyer-form-part__body {
  width: 100%;
}

.official-buyer-form-part__body--zip-search {
  display: flex;
  align-items: center;
  gap: 12px;
}

.official-buyer-form-part__zip-search-button {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  flex-shrink: 0;
  min-width: 90px;
  height: var(--official-buyer-form-part-height-pc);
  padding: 0 24px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--surface-light-gray);
  color: var(--text-black);
  cursor: pointer;
}

.official-buyer-form-part__zip-search-button:disabled {
  opacity: 0.5;
  cursor: default;
}

.official-buyer-form-part__control {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  appearance: none;
  width: 100%;
  height: var(--official-buyer-form-part-height-pc);
  border: 0;
  border-radius: 4px;
  padding: 0 18px;
  background: var(--surface-light-gray);
  color: #454545;
}

.official-buyer-form-part__control::placeholder {
  font-size: 15px;
  line-height: 1.5;
  color: #7a7a7a;
}

.official-buyer-form-part__control--select {
  padding-right: 50px;
  background-image: linear-gradient(45deg, transparent 50%, #3f3f3f 50%), linear-gradient(135deg, #3f3f3f 50%, transparent 50%);
  background-position: calc(100% - 24px) calc(50% - 2px), calc(100% - 18px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.official-buyer-form-part--select-single .official-buyer-form-part__control--select {
  width: fit-content;
  min-width: min(370px, 100%);
  max-width: 100%;
}

.official-buyer-combo {
  position: relative;
  width: min(370px, 100%);
}

.official-buyer-form-part--select-single .official-buyer-form-part__control--select.official-buyer-combo__trigger {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  text-align: left;
  cursor: pointer;
}

.official-buyer-combo__trigger.is-placeholder {
  color: #7a7a7a;
}

.official-buyer-combo__panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  margin-top: 4px;
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.official-buyer-combo__search {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  appearance: none;
  width: 100%;
  height: var(--official-buyer-form-part-height-pc);
  border: 0;
  border-bottom: 1px solid var(--border-color);
  padding: 0 18px;
  background: var(--surface-white);
  color: #454545;
}
.official-buyer-combo__search::placeholder {
  color: #7a7a7a;
}

.official-buyer-combo__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.official-buyer-combo__option {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 18px;
  color: var(--text-black);
  cursor: pointer;
}
.official-buyer-combo__option.is-active {
  background: var(--surface-light-gray);
}
.official-buyer-combo__option.is-selected {
  font-weight: 700;
}

.official-buyer-combo__empty {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 18px;
  color: var(--text-gray);
}

.official-buyer-form-part__control--textarea {
  min-height: calc(var(--official-buyer-form-part-height-pc) * 4);
  height: auto;
  padding: 14px 18px;
  resize: vertical;
}

.official-buyer-form-part__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.official-buyer-form-part__pair-left,
.official-buyer-form-part__pair-right {
  width: 100%;
}

.official-buyer-app-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.official-buyer-app-list__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.official-buyer-app-list__app {
  flex: 0 0 180px;
  max-width: 180px;
}

.official-buyer-app-list__app--head,
.official-buyer-app-list__value--head {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.official-buyer-app-list__row input.official-buyer-app-list__value {
  flex: 1 1 auto;
  width: auto;
}

.official-buyer-form-part__pair-left {
  position: relative;
}

.official-buyer-form-part__clear {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #2f2f2f;
  padding: 0;
  cursor: pointer;
}

.official-buyer-form-part--select-input-pair .official-buyer-form-part__control--select {
  padding-right: 72px;
}

.official-buyer-form-part__pair-left .official-buyer-combo {
  width: 100%;
}

.official-buyer-form-part--select-input-pair .official-buyer-form-part__control--select.official-buyer-combo__trigger {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.official-buyer-form-part__pair-sub-labels {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-black);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 5px;
}

.official-buyer-form-part__notation {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px auto;
}

.official-buyer-form-part__notation-text {
  margin: auto;
}

.official-buyer-form-part__footer {
  margin-top: 5px;
}

.official-buyer-form-part__additional {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-gray);
  margin: 0;
}

.official-buyer-form-part__additional-accent {
  color: var(--accent);
}

.official-buyer-form-part__control.is-error {
  border: 1px solid var(--accent);
  background: var(--surface-error);
}

.official-buyer-form-part__body.is-error {
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--surface-error);
  padding: 8px 12px;
}

.official-buyer-form-part__error {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin: 6px 0 0;
  color: var(--accent);
}

.official-buyer-form-part__radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.official-buyer-form-part__radio-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.official-buyer-form-part__radio-control {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: var(--surface-light-gray);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin: 0;
  transition: border-color 0.15s, background-color 0.15s;
}
.official-buyer-form-part__radio-control:checked {
  background: var(--surface-white);
}
.official-buyer-form-part__radio-control:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.official-buyer-form-part__radio-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-black);
  cursor: pointer;
}

.official-buyer-form-part__checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.official-buyer-form-part__checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.official-buyer-form-part__checkbox-control {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: var(--surface-light-gray);
  margin: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.official-buyer-form-part__checkbox-control:checked {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
}
.official-buyer-form-part__checkbox-control:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--text-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.official-buyer-form-part__checkbox-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-black);
  cursor: pointer;
}

/**
 * 企業ロゴ画像フィールド
 */
.official-buyer-logo-field {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "preview description" "preview actions";
  column-gap: 30px;
  row-gap: 50px;
}

.official-buyer-logo-field__preview {
  grid-area: preview;
  width: 344px;
  max-width: 100%;
  aspect-ratio: 1/1;
}

.official-buyer-logo-field__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: bottom;
}

.official-buyer-logo-field__description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  grid-area: description;
  margin: 0;
  color: var(--text-black);
}

.official-buyer-logo-field__actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.official-buyer-logo-field__input {
  display: none;
}

.official-buyer-logo-field__button {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  height: 40px;
  padding: 0 24px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--surface-light-gray);
  color: var(--text-black);
  cursor: pointer;
}

.official-buyer-logo-field__button-icon {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.official-buyer-logo-field__filename {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--text-gray);
  text-align: center;
  word-break: break-all;
}

@media (max-width: 980px) {
  .official-buyer-logo-field {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: "description" "preview" "actions";
    column-gap: 0;
    row-gap: 15px;
  }
  .official-buyer-logo-field__preview {
    width: min(280px, 100%);
    justify-self: center;
  }
  .official-buyer-logo-field__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
}
.official-buyer-registration-form-section__inner--terms {
  margin-top: 36px;
  background-color: transparent;
}

.official-buyer-terms {
  margin: 0 auto;
}

.official-buyer-terms__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.official-buyer-terms__description {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 24px 0 0;
  text-align: center;
}

.official-buyer-terms__warning {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  margin: 8px 0 24px;
  text-align: center;
  color: var(--accent);
}

.official-buyer-terms__error {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin: 12px 0 0;
  text-align: center;
  color: var(--accent);
}

.official-buyer-terms__box {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 220px;
  overflow-y: auto;
  padding: 24px;
}

.official-buyer-terms__content {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--text-black);
}

.official-buyer-terms__line {
  margin: 0;
}

.official-buyer-terms__line--space {
  height: 0.9em;
}

.official-buyer-terms__article {
  margin-top: 1em;
}

.official-buyer-terms__article:first-child {
  margin-top: 0;
}

.official-buyer-terms__item {
  padding-left: 2.2em;
  text-indent: -1.2em;
}

.official-buyer-terms__subitem {
  padding-left: 3.4em;
  text-indent: -1.2em;
}

.official-buyer-terms__agreement {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.official-buyer-terms__agreement-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.official-buyer-terms__agreement-control {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--brand-primary);
}
.official-buyer-terms__agreement-control:disabled + span {
  color: var(--text-gray);
}

.official-buyer-confirm-button {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.official-buyer-confirm-button__warning {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin: 5px auto 0;
  color: var(--accent);
  text-align: center;
}

.official-buyer-confirm-button__button {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  max-width: 260px;
  height: 55px;
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 40px;
  background: var(--accent);
  color: var(--text-white);
  cursor: pointer;
}
.official-buyer-confirm-button__button::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--text-white);
  border-right: 2px solid var(--text-white);
  transform: translateY(-50%) rotate(45deg);
}

.official-buyer-confirm-button__button:disabled {
  background: var(--surface-disabled);
  color: var(--text-placeholder);
  cursor: not-allowed;
}
.official-buyer-confirm-button__button:disabled::after {
  border-top-color: var(--text-placeholder);
  border-right-color: var(--text-placeholder);
}

.official-buyer-confirm-button.official-buyer-confirm-button--actions {
  flex-direction: row;
  gap: 20px;
  margin-top: 0;
}

.official-buyer-confirm-button__button--secondary {
  border: 1px solid var(--accent);
  background: var(--surface-white);
  color: var(--accent);
}
.official-buyer-confirm-button__button--secondary::after {
  border-top-color: var(--accent);
  border-right-color: var(--accent);
}

.official-buyer-confirm-button__button--back::after {
  left: 18px;
  right: auto;
  transform: translateY(-50%) rotate(-135deg);
}

@media (max-width: 980px) {
  .official-buyer-registration__heading-h1 .official-buyer-heading-h1__inner,
  .official-buyer-registration__heading-h2 .official-buyer-heading-h2__inner {
    width: min(1200px, 100% - 24px);
  }
  .official-buyer-registration__heading-h1 .official-buyer-heading-h1__text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
  }
  .official-buyer-registration__heading-h2 .official-buyer-heading-h2__text {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
  }
  .official-buyer-registration__heading-h1 {
    margin-top: 15px;
  }
  .official-buyer-registration__heading-h2 {
    margin: 20px 0 30px;
  }
  .official-buyer-registration-form-section__inner {
    padding: 20px 15px;
    width: calc(100% - 30px);
  }
  .official-buyer-registration-form-section__inner + .official-buyer-registration-form-section__inner {
    margin-top: 15px;
  }
  .official-buyer-registration-form-section {
    padding: 20px 0 30px;
  }
  .official-buyer-registration-form-fields {
    margin: 30px auto 0;
    width: 100%;
  }
  .official-buyer-registration-form-fields > .official-buyer-form-part + .official-buyer-form-part {
    margin-top: 20px;
  }
  .official-buyer-form-part__head {
    gap: 8px;
    margin-bottom: 10px;
  }
  .official-buyer-form-part__required {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    min-width: 40px;
    min-height: 20px;
    padding: 0 6px;
  }
  .official-buyer-form-part__label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    vertical-align: middle;
  }
  .official-buyer-form-part__control {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    height: var(--official-buyer-form-part-height-sp);
    padding: 0 12px;
  }
  .official-buyer-form-part__zip-search-button {
    height: var(--official-buyer-form-part-height-sp);
  }
  .official-buyer-combo__search {
    height: var(--official-buyer-form-part-height-sp);
    padding: 0 12px;
  }
  .official-buyer-form-part__control--select {
    padding-right: 42px;
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  }
  .official-buyer-form-part__control--textarea {
    min-height: calc(var(--official-buyer-form-part-height-sp) * 4);
    padding: 10px 12px;
  }
  .official-buyer-form-part__pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .official-buyer-app-list__row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .official-buyer-app-list__app {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .official-buyer-form-part__pair-sub-labels {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    gap: 14px;
    margin-top: 14px;
    margin-bottom: 8px;
  }
  .official-buyer-form-part--name-pair .official-buyer-form-part__pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .official-buyer-form-part--name-pair .official-buyer-form-part__pair-sub-labels {
    margin-top: 0;
    margin-bottom: 5px;
  }
  .official-buyer-form-part__clear {
    right: 34px;
    width: 20px;
    height: 20px;
  }
  .official-buyer-form-part--select-input-pair .official-buyer-form-part__control--select {
    padding-right: 62px;
  }
  .official-buyer-terms {
    width: 100%;
    max-width: 900px;
  }
  .official-buyer-terms__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
  }
  .official-buyer-terms__description {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 20px;
  }
  .official-buyer-terms__warning {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin: 10px 0 20px;
  }
  .official-buyer-terms__box {
    height: 220px;
    padding: 16px;
  }
  .official-buyer-terms__agreement {
    margin-top: 30px;
  }
  .official-buyer-terms__agreement-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
  .official-buyer-confirm-button {
    margin-top: 30px;
  }
  .official-buyer-confirm-button__warning {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 10px;
  }
  .official-buyer-confirm-button__button {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    width: 100%;
    min-width: 0;
    height: 50px;
    max-width: 240px;
  }
  .official-buyer-confirm-button__button::after {
    right: 14px;
  }
  .official-buyer-confirm-button.official-buyer-confirm-button--actions {
    flex-direction: column-reverse;
    gap: 12px;
  }
}
/**
 * 確認画面 テーブルスタイル
 */
.official-buyer-registration-confirm-table {
  margin: 35px auto 0;
  width: min(800px, 100% - 30px);
  border-collapse: collapse;
}
@media (max-width: 980px) {
  .official-buyer-registration-confirm-table {
    margin-top: 30px;
    width: 100%;
  }
}

.official-buyer-registration-confirm-table__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--border-light, #d0d0d0);
  padding: 20px 0;
}
@media (max-width: 980px) {
  .official-buyer-registration-confirm-table__row {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }
}

@media (max-width: 980px) {
  .official-buyer-registration-confirm-table__row:first-child {
    padding-top: 0;
  }
}

.official-buyer-registration-confirm-table__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  width: 300px;
  color: var(--text-black);
  text-align: left;
  vertical-align: top;
}
@media (max-width: 980px) {
  .official-buyer-registration-confirm-table__label {
    width: 100%;
  }
}

.official-buyer-registration-confirm-table__label-text {
  display: block;
}

.official-buyer-registration-confirm-table__value {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  width: calc(100% - 300px);
  color: var(--text-black);
  word-break: break-word;
  padding-left: 50px;
  vertical-align: top;
}
@media (max-width: 980px) {
  .official-buyer-registration-confirm-table__value {
    margin-top: 5px;
    width: 100%;
    padding-left: 0;
  }
}

.official-buyer-registration-confirm-table__value-text {
  white-space: pre-wrap;
}

.official-buyer-registration-confirm-table__image {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.official-buyer-registration-confirm-table__addition {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--text-gray);
}

.official-buyer-registration-confirm-table__addition--accent {
  color: var(--accent);
}

/**
 * 確認画面 ボタングループ
 */
.official-buyer-registration-form-section__inner.official-buyer-registration-form-section__inner--confirm-actions {
  text-align: center;
  background-color: transparent;
  margin: 70px auto 50px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 980px) {
  .official-buyer-registration-form-section__inner.official-buyer-registration-form-section__inner--confirm-actions {
    margin: 30px auto 10px;
  }
}

.official-buyer-registration-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .official-buyer-registration-button-group {
    gap: 15px;
  }
}

/**
 * 完了画面（送信完了）
 */
.official-buyer-registration-complete-body {
  display: flex;
  flex-direction: column;
}

.official-buyer-registration-form-section--complete {
  background-color: var(--surface-white);
  padding: 0;
}

@media (max-width: 980px) {
  .official-buyer-registration-complete-body .official-buyer-registration-form-section--complete {
    order: 1;
  }
  .official-buyer-registration-complete-body .official-buyer-intro {
    order: 2;
    margin-bottom: 0;
  }
}
.official-buyer-registration-complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.official-buyer-registration-complete__icon {
  width: 41px;
  height: auto;
}

.official-buyer-registration-complete__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 30px auto;
  color: var(--brand-primary);
}
@media (max-width: 980px) {
  .official-buyer-registration-complete__lead {
    margin: 20px auto 30px;
  }
}

.official-buyer-registration-complete__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--text-black);
}
@media (max-width: 980px) {
  .official-buyer-registration-complete__description {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}

.hcj-header {
  position: relative;
  z-index: 20;
  background: var(--surface-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
}

.hcj-header__inner {
  max-width: 1400px;
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hcj-header__content {
  max-width: 560px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.hcj-header__left {
  border-right: 1px solid var(--border-color);
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.hcj-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hcj-header__logo {
  display: block;
  width: 194px;
  height: auto;
}

.hcj-header__main {
  padding-left: 30px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.hcj-header__sp-menu {
  display: none;
}

.hcj-header__menu-button {
  display: none;
}

.hcj-header__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #2a2a2a;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.hcj-header__mypage {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

.hcj-header__mypage--visitor {
  color: var(--hcj-visitors-primary);
}

.hcj-header__mypage--exhibitor {
  color: var(--hcj-exhibitors-primary);
}

.hcj-header__lang {
  display: inline-flex;
  align-items: center;
}

.hcj-header__right {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}

.hcj-header__right.is-guest {
  justify-content: center;
}

.hcj-header__right.is-auth {
  justify-content: flex-start;
}

.hcj-header__auth-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.hcj-header__account-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
}

.hcj-header__account-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.hcj-header__logout {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  min-width: 170px;
  height: 50px;
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: #d9230f;
}

.hcj-header__utility-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.hcj-header__quick-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hcj-header__quick-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #2568b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hcj-header__quick-link-arrow {
  font-size: 14px;
  line-height: 1;
}

.hcj-header__lang-button {
  min-width: 56px;
  height: 22px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  margin: 0 10px;
  background: #fff;
  color: #6e6e6e;
  font-size: 13px;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.hcj-header__lang-button.is-active {
  background: #888;
  border-color: #888;
  color: #fff;
}

.hcj-header__lang-separator {
  color: #b0b0b0;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .hcj-header__inner {
    grid-template-columns: 500px auto;
    gap: 5px;
  }
  .hcj-header__content {
    max-width: 500px;
  }
  .hcj-header__left {
    padding: 0 15px;
  }
  .hcj-header__logo {
    width: 170px;
  }
  .hcj-header__main {
    padding-left: 15px;
  }
  .hcj-header__right {
    gap: 10px;
  }
  .hcj-header__auth-row {
    gap: 10px;
  }
  .hcj-header__utility-row {
    gap: 0;
  }
  .hcj-header__quick-links {
    gap: 10px;
  }
  .hcj-header__quick-link {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    gap: 4px;
  }
  .hcj-header__lang-button {
    margin: 0 8px;
  }
}
@media (max-width: 980px) {
  .hcj-header {
    background: #f4f4f4;
  }
  .hcj-header__inner {
    width: 100%;
    min-height: 90px;
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 8px 0 6px;
  }
  .hcj-header__content {
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "left menu" "main main";
    align-items: flex-start;
    column-gap: 8px;
    row-gap: 5px;
  }
  .hcj-header__left {
    grid-area: left;
    border-right: 0;
    padding-right: 0;
    padding-left: 10px;
    min-width: 0;
    align-self: center;
  }
  .hcj-header__logo-link {
    gap: 8px;
    padding-right: 0;
    border-right: 0;
  }
  .hcj-header__logo {
    width: 130px;
    height: auto;
    flex: 0 0 auto;
  }
  .hcj-header__main {
    grid-area: main;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
  }
  .hcj-header__sp-menu {
    grid-area: menu;
    display: flex;
    justify-content: flex-end;
    align-self: center;
  }
  .hcj-header__menu-button {
    width: 50px;
    height: 50px;
    border: 0;
    background: #d9230f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
  }
  .hcj-header__menu-icon {
    display: block;
  }
  .hcj-header__title {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    order: 2;
    margin: 0;
  }
  .hcj-header__mypage {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    order: 1;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .hcj-header__lang {
    display: none;
  }
  .hcj-header__right {
    min-width: 0;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }
  .hcj-header__right.is-guest {
    display: none;
  }
  .hcj-header__right.is-auth {
    gap: 4px;
  }
  .hcj-header__auth-row {
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .hcj-header__account-name {
    font-size: 15px;
    line-height: 1.35;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .hcj-header__account-text {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }
  .hcj-header__account-icon {
    width: 14px;
    height: 14px;
  }
  .hcj-header__logout {
    display: none;
  }
  .hcj-header__utility-row {
    display: none;
  }
  .hcj-header__quick-links {
    gap: 8px 12px;
    flex-wrap: wrap;
  }
  .hcj-header__quick-link {
    font-size: 12px;
    line-height: 1.4;
  }
  .hcj-header__quick-link-arrow {
    font-size: 12px;
  }
  .hcj-header__right.is-guest .hcj-header__utility-row {
    min-height: 0;
  }
}

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