:root {
  /* ===============================
    Brand
  =============================== */
  --color-primary-blue: 227 100% 50%;
  --color-medium-gray: 225 10% 62%;
  --color-dark-gray: 226 14% 42%;
  --color-applied-blue: 214 100% 49%;
  --color-primary: var(--color-applied-blue);
  --color-secondary: var(--color-applied-blue);
  --bg-color: #282b31;
  --text-color: #fff;
  /* ===============================
    Feedback
  =============================== */
  --color-success: 145 63% 42%;
  --color-error: 0 75% 52%;
  /* ===============================
    Text
  =============================== */
  --color-text-base: 220 15% 20%;
  --color-text-muted: 220 10% 45%;
  --color-text-inverse: 0 0% 100%;
  /* ===============================
    Background
  =============================== */
  --color-bg-base: 0 0% 100%;
  --color-bg-surface: 220 20% 96%;
  /* ===============================
    Border
  =============================== */
  --color-border: 220 15% 85%;
  --border-color: #5b616e;
  /* ===============================
    Gray Scale
  =============================== */
  --color-gray-100: 220 10% 96%;
  --color-gray-200: 220 10% 85%;
  --color-gray-300: 220 10% 74%;
  --color-gray-400: 220 10% 63%;
  --color-gray-500: 220 10% 52%;
  --color-gray-600: 220 10% 41%;
  --color-gray-700: 220 10% 30%;
  --color-gray-800: 220 10% 18%;
  /* ===============================
    Interaction
  =============================== */
  --color-disabled: 220 10% 75%;
  --color-focus-ring: 220 90% 56%;
  --header-height: 70px;
  --color-text: var(--text-color);
  --header-bg: hsl(var(--color-primary));
  --footer-bg: hsl(var(--color-primary));
  --link-color: hsl(var(--color-primary));
  --sess-header: hsl(var(--color-primary));
  --detail-header: hsl(var(--color-primary));
  --ui-accent-color: var(--bg-color);
  --ui-accent-color64: hsl(var(--color-secondary) / 0.1);
  --ui-secondary-color: hsl(var(--color-secondary));
  --ui-secondary-color90: hsl(var(--color-secondary) / 0.1);
  --ui-border-color: hsl(var(--color-gray-500));
  --ui-disabled-color: hsl(var(--color-gray-200));
  --ui-border-radius: 3px;
  --ui-padding-top_bottom: 8px;
  --ui-padding-left_right: 12px;
  --ui-height: 2.5em;
  --validation-error-color: hsl(var(--color-error));
  --validation-error-bgcolor: hsl(var(--color-error) / 0.1);
  --radio-wh: 20px;
  --chk-wh: 18px;
  --text-11_14px: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
  --text-16_22px: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  --text-20_28px: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  --text-24_36px: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  --text-24_52px: clamp(1.5rem, 0.864rem + 3.18vw, 3.25rem);
  --text-36_64px: clamp(2.25rem, 1.614rem + 3.18vw, 4rem);
  --bdr-dot: 3px dotted hsl(var(--color-gray-200));
  --header-height: 80px;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "AppliedSansDisplay";
  src: url("/assets/fonts/AppliedSansDisplay-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard JP Variable";
  src: url("/assets/fonts/PretendardJPVariable.woff2") format("woff2-variations");
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
}
html {
  font-synthesis: none;
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: "AppliedSansDisplay", "Pretendard JP Variable", sans-serif;
  font-variation-settings: "slnt" 0;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
  line-height: 1.6;
  color: var(--text-color);
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
  background-color: var(--bg-color);
}

body.modal-on {
  overflow: hidden;
}

a {
  color: #282b31;
}
a:hover {
  color: var(--link-color);
}

.page-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

/* --------------------------------------
  Container
-------------------------------------- */
.container {
  --gutter: 3rem;
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1340px;
  width: 100%;
  padding-right: calc(var(--gutter) * 0.5);
  padding-left: calc(var(--gutter) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: var(--container-xxl);
  }
}

/* --------------------------------------
  UI
-------------------------------------- */
input[type=checkbox],
input[type=radio],
input[type=text],
input[type=password],
textarea,
select,
option,
button {
  appearance: none;
  background: none;
  border: none;
  position: relative;
}

textarea,
select,
input[type=text],
input[type=email],
input[type=password] {
  background-color: #fff;
  border: 1px solid var(--ui-border-color);
  border-radius: var(--ui-border-radius);
  padding: var(--ui-padding-top_bottom) var(--ui-padding-left_right);
  line-height: 1;
  width: 100%;
  height: var(--ui-height);
}
textarea:focus,
select:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: 1px solid var(--ui-accent-color);
  border: 1px solid var(--ui-accent-color);
}
textarea:invalid,
select:invalid,
input[type=text]:invalid,
input[type=email]:invalid,
input[type=password]:invalid {
  color: var(--validation-error-color);
  border: 1px solid var(--validation-error-color);
  background-color: var(--validation-error-bgcolor);
}

textarea:disabled,
select:disabled,
input[type=text]:disabled {
  background-color: var(--ui-disabled-color);
  opacity: 1;
  cursor: not-allowed;
}

.select {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.select::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  right: 11px;
  top: calc(50% - 3px);
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 3px solid var(--ui-accent-color);
  border-right: 3px solid var(--ui-accent-color);
  z-index: -1;
}

.radio,
.chkbox {
  display: flex;
  align-items: center;
}
.radio > input + label,
.chkbox > input + label {
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  user-select: none;
  padding-left: 1.6em;
  text-box: trim-both cap alphabetic;
}
.radio input[type=radio] + label::before,
.chkbox input[type=radio] + label::before {
  content: "";
  display: block;
  width: var(--radio-wh);
  height: var(--radio-wh);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--ui-border-color);
  border-radius: 50%;
  background-color: #fff;
}
.radio input[type=checkbox] + label::before,
.chkbox input[type=checkbox] + label::before {
  content: "";
  display: block;
  width: var(--chk-wh);
  height: var(--chk-wh);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--ui-border-color);
  border-radius: 3px;
  background-color: #fff;
}
.radio input[type=radio]:checked + label::before,
.chkbox input[type=radio]:checked + label::before {
  border-color: var(--ui-accent-color);
}
.radio input[type=radio]:checked + label::after,
.chkbox input[type=radio]:checked + label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--ui-accent-color);
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}
.radio input[type=checkbox]:checked + label::before,
.chkbox input[type=checkbox]:checked + label::before {
  background-color: var(--ui-accent-color);
  border-color: var(--ui-accent-color);
}
.radio input[type=checkbox]:checked + label::after,
.chkbox input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(35deg) skewY(10deg) translateY(-50%);
  transform-origin: center right;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.radio input[type=radio]:disabled + label::before,
.radio input[type=checkbox]:disabled + label::before,
.chkbox input[type=radio]:disabled + label::before,
.chkbox input[type=checkbox]:disabled + label::before {
  background-color: var(--ui-disabled-color);
  cursor: not-allowed;
}
.radio input[type=radio]:disabled + label::after,
.radio input[type=checkbox]:disabled + label::after,
.chkbox input[type=radio]:disabled + label::after,
.chkbox input[type=checkbox]:disabled + label::after {
  cursor: not-allowed;
}
.radio input[type=radio]:invalid + label,
.radio input[type=checkbox]:invalid + label,
.chkbox input[type=radio]:invalid + label,
.chkbox input[type=checkbox]:invalid + label {
  color: var(--validation-error-color);
}
.radio input[type=radio]:invalid + label::before,
.radio input[type=checkbox]:invalid + label::before,
.chkbox input[type=radio]:invalid + label::before,
.chkbox input[type=checkbox]:invalid + label::before {
  border-color: var(--validation-error-color);
  border-width: 2px;
}

.radio.err input[type=radio] + label,
.radio.err input[type=checkbox] + label,
.chkbox.err input[type=radio] + label,
.chkbox.err input[type=checkbox] + label {
  color: var(--validation-error-color);
}
.radio.err input[type=radio] + label::before,
.radio.err input[type=checkbox] + label::before,
.chkbox.err input[type=radio] + label::before,
.chkbox.err input[type=checkbox] + label::before {
  border-color: var(--validation-error-color);
  border-width: 2px;
}

textarea {
  height: 100%;
  line-height: 1.5;
}

.form-ctrl.err:has(textarea) {
  line-height: 1;
}

.form-ctrl.err textarea,
.form-ctrl.err select,
.form-ctrl.err input[type=text],
.form-ctrl.err input[type=email],
.form-ctrl.err input[type=password] {
  color: var(--validation-error-color);
  border: 1px solid var(--validation-error-color);
  background-color: var(--validation-error-bgcolor);
}
.form-ctrl.err .select::after {
  border-color: var(--validation-error-color);
  z-index: 0;
}
.form-ctrl.err .invalid {
  color: var(--validation-error-color);
}

.btn {
  --btn-bg-color: var(--ui-accent-color);
  --btn-bdr-color: var(--ui-accent-color);
  --btn-bdr-radius: 9999px;
  --btn-font-weight: 700;
  --btn-txt-color: #fff;
  --btn-txt-hov-color: #fff;
  --btn-bg-hov-color: var(--ui-accent-color);
  --btn-bdr-hov-color: var(--ui-accent-color);
  --btn-txt-size: 1em;
  --btn-pd-tb: .5em;
  --btn-pd-lr: 2em;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--btn-bg-color);
  color: var(--btn-txt-color);
  font-size: var(--btn-txt-size);
  font-weight: var(--btn-font-weight);
  border: 2px solid var(--btn-bdr-color);
  border-radius: var(--btn-bdr-radius);
  padding: var(--btn-pd-tb) var(--btn-pd-lr);
  transition: background-color 0.25s, color 0.25s;
  text-decoration: none;
  text-box: trim-both cap alphabetic;
  line-height: 1;
}
.btn span {
  text-box: trim-both cap alphabetic;
}
.btn:hover {
  color: var(--btn-txt-hov-color);
  background-color: var(--btn-bg-hov-color);
  border-color: var(--btn-bdr-hov-color);
}

.btn.btn-sm {
  --btn-txt-size: 1em;
  --btn-pd-lr: 1em;
  height: var(--ui-height);
}

.btn.btn-lg {
  --btn-txt-size: 1.2em;
  --btn-pd-tb: 1em;
  --btn-pd-lr: 2em;
  font-weight: 700;
}

.btn.btn-secondary {
  --btn-bg-color: var(--ui-secondary-color);
  --btn-bdr-color: var(--ui-secondary-color);
}
.btn.btn-secondary:hover {
  --btn-txt-hov-color: var(--ui-secondary-color);
  --btn-bdr-hov-color: var(--ui-secondary-color);
}

.btn.btn-sub {
  --btn-bg-color: #fff;
  --btn-txt-color: var(--ui-accent-color);
}
.btn.btn-sub:hover {
  --btn-txt-hov-color: #fff;
  --btn-bg-hov-color: var(--ui-accent-color);
}

.btn.btn-gray {
  --btn-bg-color: hsl(var(--color-gray-400));
  --btn-bdr-color: hsl(var(--color-gray-400));
}
.btn.btn-gray:hover {
  --btn-txt-hov-color: #fff;
}

.btn.btn-disabled {
  cursor: initial;
}
.btn.btn-disabled:hover {
  --btn-bg-hov-color: hsl(var(--color-gray-400));
  --btn-bdr-hov-color: hsl(var(--color-gray-400));
  --btn-txt-hov-color: #fff;
}

.btn-ico {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.btn-ico.btn-ico-rv span {
  order: -1;
}

.btn-area {
  --mt: 30px;
  --mb: 30px;
  margin-top: var(--mt);
  margin-bottom: var(--mb);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 992px) {
  .btn-area {
    --mt: 60px;
    --mb: 60px;
  }
}

.radio-group,
.chkbox-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ico-lunch,
.ico-translation {
  display: flex;
  gap: 0.3em;
  align-items: center;
  margin-top: 0.5em;
}
.ico-lunch .material-icons,
.ico-translation .material-icons {
  font-size: 1em;
}
.ico-lunch small,
.ico-translation small {
  font-size: 0.75em;
  font-weight: 700;
}

.msg-alert {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.5em;
  background-color: var(--validation-error-bgcolor);
  color: var(--validation-error-color);
}
.msg-alert .material-icons {
  font-size: var(--text-36_64px);
}
.msg-alert .material-icons + span {
  font-size: var(--text-20_28px);
}

.msg-alert + p {
  font-size: 1em;
  color: var(--validation-error-color);
}

.required-icon {
  font-size: 12px;
  font-weight: 700;
  padding: 0.2em 0.8em;
  display: inline-block;
  min-width: 24px;
  text-align: center;
  color: #fff;
  border-radius: 9999px;
  background-color: var(--validation-error-color);
}

.dialogs dialog::backdrop {
  background: color-mix(in srgb, transparent, #000 50%);
  backdrop-filter: blur(4px);
}

.dialogs dialog {
  --dialog-padding: 1rem;
  border: none;
  padding: var(--dialog-padding);
  max-width: 860px;
  width: 90%;
  border-radius: 8px;
  border: 4px solid #fff;
  position: fixed;
  inset: 0;
  margin: auto;
  opacity: 0;
  container-type: inline-size;
}
@media screen and (min-width: 992px) {
  .dialogs dialog {
    --dialog-padding: 2rem;
  }
}

.dialogs dialog[open] {
  animation: modal-fade-in 0.4s ease forwards;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.dialog-close {
  outline: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: absolute;
  right: var(--dialog-padding);
  top: var(--dialog-padding);
}
.dialog-close .material-icons {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: var(--bg-color);
}

/* --------------------------------------
  Header
   ------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--bg-color);
}
.header h1 {
  font-size: var(--text-16_22px);
}
.header .btn {
  font-weight: 700;
  margin-left: auto;
  --btn-pd-lr: 1em;
  gap: 0;
}
.header .btn span {
  display: none;
}
@media screen and (min-width: 768px) {
  .header .btn span {
    display: block;
  }
}
.header .header__wrapper {
  display: flex;
  gap: 1.5em;
  align-items: center;
  height: 80px;
}
.header .header__wrapper img {
  width: 240px;
}
.header .header__wrapper nav {
  display: none;
}
@media screen and (min-width: 992px) {
  .header .header__wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: 300px 1fr 170px;
  }
  .header .header__wrapper nav {
    display: block;
  }
  .header .header__wrapper nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5em;
    align-items: center;
    list-style: none;
  }
  .header .header__wrapper nav ul a {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
  }
  .header .header__wrapper .btn {
    margin-left: unset;
  }
  .header .header__wrapper #openMenu {
    display: none;
  }
}

.page-list .header,
.page-register .header {
  position: static;
  border-bottom: 1px solid hsl(var(--color-gray-200));
}

.page-lp .header {
  background-color: transparent;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 992px) {
  .page-lp .header .header__wrapper::before {
    content: "";
    width: 100%;
  }
}

/* --------------------------------------
  Footer
-------------------------------------- */
.footer .footer__wrapper {
  height: auto;
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
}
@media screen and (min-width: 992px) {
  .footer .footer__wrapper {
    margin: 0;
    height: 80px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footer__wrapper .secretariat {
  margin-bottom: 1em;
}
@media screen and (min-width: 992px) {
  .footer .footer__wrapper .secretariat {
    order: 1;
    margin-bottom: 0;
  }
}
.footer .footer__wrapper .secretariat span {
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .footer .footer__wrapper .copyright {
    order: 0;
  }
}

.page-list .footer,
.page-register .footer {
  border-top: 1px solid hsl(var(--color-gray-200));
}

.page-lp .footer a {
  color: #fff;
}

.page-register {
  --bg-color: #fff;
  --text-color: #222;
}

.register {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .register {
    column-gap: 60px;
    row-gap: 0px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "note legend" "note form" "cta cta";
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.legend {
  font-weight: 700;
  margin-bottom: -20px;
}
.legend::after {
  content: "*";
  color: #282b31;
}
@media screen and (min-width: 992px) {
  .legend {
    margin-bottom: initial;
    grid-area: legend;
  }
}

.form {
  container-type: inline-size;
  padding: 40px;
  border-radius: 6px;
  background-color: hsl(var(--color-gray-100));
}
@media screen and (min-width: 992px) {
  .form {
    grid-area: form;
  }
}
.form .form__row {
  display: grid;
  gap: 20px;
  align-items: baseline;
}
.form .form__row label span {
  font-weight: 700;
}
.form .form__row label.required span::after {
  content: "*";
  color: #282b31;
}
.form .form__row + .form__row {
  margin-top: 20px;
}
@container (width > 420px) {
  .form .form__row.name {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 992px) {
  .notes {
    grid-area: note;
  }
}
.notes h2 {
  font-size: var(--text-24_36px);
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .notes h2 {
    text-align: left;
  }
}
.notes ul {
  margin-top: 2em;
  padding-left: 1.5em;
}
.notes ul li {
  margin-top: 1em;
}

.cta {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .cta {
    grid-area: cta;
    margin-top: 60px;
  }
}
.cta .btn {
  padding: 1em;
  width: 200px;
}
.cta .cta__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .cta .cta__wrapper {
    max-width: 50%;
  }
}

.confirm, .complete {
  max-width: 720px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .confirm, .complete {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.confirm h2, .complete h2 {
  font-size: var(--text-24_36px);
  text-align: center;
}
.confirm dl, .complete dl {
  margin-top: 40px;
}
.confirm dl div + div, .complete dl div + div {
  margin-top: 1em;
}
.confirm dl dt, .complete dl dt {
  font-weight: 700;
  border-bottom: 1px solid hsl(var(--color-gray-200));
}
.confirm dl dd, .complete dl dd {
  margin-top: 0.3em;
}
.confirm .btn-area, .complete .btn-area {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .confirm .btn-area .btn, .complete .btn-area .btn {
    width: 200px;
  }
}

.complete section {
  display: flex;
  height: 60vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.complete p {
  margin-top: 1.5em;
}

.qr {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .qr {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.qr h2 {
  font-size: var(--text-24_36px);
  text-align: center;
}
.qr h2 + p {
  font-size: 16px;
  text-align: center;
}

.qr__body {
  display: grid;
  grid-template-rows: 1fr auto;
}
@media screen and (min-width: 992px) {
  .qr__body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    justify-content: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    border-top: 1px solid hsl(var(--color-gray-100));
  }
}
.qr__body .qr__code {
  display: grid;
  max-width: 480px;
  width: 100%;
  aspect-ratio: 5/4;
  place-content: center;
  margin: auto;
}
.qr__body .qr__code img {
  width: 200px;
}
.qr__body .qr__notes {
  max-width: 480px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .qr__body .qr__notes {
    display: grid;
    max-width: 480px;
    width: 100%;
    aspect-ratio: 5/4;
    place-content: center start;
    margin: auto;
  }
}
.qr__body .qr__notes h2 {
  font-size: var(--text-16_22px);
}
.qr__body .qr__notes ul {
  padding-left: 1.25em;
  margin-top: 0.5em;
}
.qr__body .qr__notes ul + p {
  margin-top: 2em;
  margin-bottom: 1em;
}

/* --------------------------------------
  Landing Page
-------------------------------------- */
.page-lp section[id] {
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .page-lp section[id] {
    padding: 80px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-lp section[id] .container {
    display: grid;
    gap: 40px;
    grid-template-columns: 300px 1fr;
  }
}
.page-lp section[id] .container h2 {
  font-size: var(--text-24_52px);
  font-weight: 300;
  margin-bottom: 1em;
  text-box: trim-both cap alphabetic;
  font-feature-settings: "palt" 1;
}

.page-lp section:has(.cta) {
  background-image: url(/assets/img/bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: cover;
}
.page-lp .cta {
  display: flex;
  background-color: rgba(40, 43, 49, 0.2);
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  margin: 0px;
  padding: 60px 0;
}
.page-lp .cta .btn {
  --btn-pd-tb: 1em;
  font-size: 1.2em;
  min-width: 240px;
  font-weight: 700;
}

.lp-wrapper {
  background-image: url(/assets/img/bg.png);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: cover;
}

#hero {
  --hero-margin: 60px 0;
  padding-top: 120px;
  background-color: rgba(40, 43, 49, 0.2);
}
#hero .container {
  display: grid;
}
#hero .hero__main img {
  height: clamp(1rem, 0.545rem + 2.27vw, 2.25rem);
  margin-bottom: 3rem;
}
#hero .hero__main h3 {
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  font-size: clamp(2.5rem, 1.591rem + 4.55vw, 5rem);
  font-feature-settings: "palt" 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: var(--hero-margin);
}
#hero .hero__main h3 + p {
  font-size: var(--text-16_22px);
  margin-top: 2em;
}
@media screen and (min-width: 992px) {
  #hero .hero__main {
    order: 2;
  }
  #hero .hero__main h3 {
    --hero-margin: 100px 0;
  }
}
#hero .hero__sub {
  margin-top: 2em;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  font-weight: 700;
  font-feature-settings: "pwid" 1;
  margin: 0;
  order: -1;
}
@media screen and (max-width: 991px) {
  #hero .hero__sub {
    display: flex;
    align-items: center;
    column-gap: 1em;
    flex-wrap: wrap;
  }
}
#hero .hero__sub h2 {
  font-weight: 500;
  font-size: clamp(1.2rem, 1.091rem + 0.55vw, 1.5rem);
  margin-bottom: 0;
  text-box: none;
}
@media screen and (min-width: 992px) {
  #hero .hero__sub h2 {
    margin-top: 0.25em;
  }
}
@media screen and (min-width: 992px) {
  #hero .hero__sub .sub-date {
    margin-top: 0.25em;
  }
}
#hero .hero__sub .sub-date span {
  font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  #hero .hero__sub {
    margin: 100px 0;
  }
}
#hero .hero__sub .sub-venue {
  display: flex;
  gap: 0.2em;
  align-items: center;
  margin-left: -0.2em;
}
#hero .hero__sub .sub-venue .material-icons {
  color: var(--ui-accent-color);
}
#hero .hero__sub .sub-venue a {
  color: #fff;
  text-box: trim-both cap alphabetic;
}

/* -----------------------------------------
  LP Navigation Menu
   ----------------------------------------- */
#menuDialog {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  margin: 0;
  width: 100vw;
  border: 0;
  max-height: 500px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.25s ease;
}
#menuDialog nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menuDialog nav ul li {
  border-bottom: 1px solid #eee;
}
#menuDialog nav ul a {
  display: block;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  padding: 1em 0;
}

#menuDialog[open] {
  max-height: 500px;
}

@starting-style {
  #menuDialog[open] {
    max-height: 0;
    opacity: 0;
  }
}
#openMenu {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

/* Icon */
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.hamburger-icon::before {
  content: "";
  top: -10px;
  left: 0;
}

.hamburger-icon::after {
  content: "";
  top: 10px;
  left: 0;
}

body:has(#menuDialog[open]) .hamburger-icon {
  background-color: transparent;
}

body:has(#menuDialog[open]) .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

body:has(#menuDialog[open]) .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.page-lp .header svg {
  width: clamp(9.375rem, 5.966rem + 17.05vw, 18.75rem);
}

.page-lp .header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.page-lp .header.is-scrolled h1,
.page-lp .header.is-scrolled nav a {
  color: var(--bg-color);
}
.page-lp .header.is-scrolled .hamburger-icon,
.page-lp .header.is-scrolled .hamburger-icon::before,
.page-lp .header.is-scrolled .hamburger-icon::after {
  background-color: #282b31;
}
.page-lp .header.is-scrolled svg path {
  fill: #282b31 !important;
}

/* --------------------------------------
  About
   ------------------------------------ */
.about p {
  margin-top: 1em;
}

/* -----------------------------------------
  Speakers
   ----------------------------------------- */
.speakers {
  --photo-radius: 8px;
  container-type: inline-size;
}
@media screen and (min-width: 992px) {
  .speakers .speakers__wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@container (width < 768px) {
  .speakers .speakers__wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.speakers .speaker-meta {
  margin-top: 0.5em;
}
.speakers .card .photo {
  border-radius: var(--photo-radius);
}
.speakers .card .name {
  font-size: var(--text-16_22px);
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25em;
}
.speakers .card .profile {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}
.speakers .card .profile small {
  display: inline-block;
  font-feature-settings: "palt" 1;
}
.speakers .card[data-dialog] {
  cursor: pointer;
}
.speakers .card[data-dialog] .name::after {
  font-family: "Material Icons";
  content: "\f8ce";
  color: #fff;
}

/* -----------------------------------------
  Speakers Detail Modal
   ----------------------------------------- */
.speaker-dialog__wrapper {
  display: grid;
  gap: 1em 2em;
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "photo name" "photo prof" "photo bio";
}
@container (width < 400px) {
  .speaker-dialog__wrapper {
    grid-template-areas: "photo name" "photo prof" "bio bio";
  }
}
.speaker-dialog__wrapper > img {
  grid-area: photo;
}
.speaker-dialog__wrapper .name {
  grid-area: name;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
  line-height: 1.2;
}
.speaker-dialog__wrapper .profile {
  grid-area: prof;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  line-height: 1.3;
  color: hsl(var(--color-gray-500));
}
.speaker-dialog__wrapper .bio {
  grid-area: bio;
}

.agenda {
  container-type: inline-size;
}
.agenda .note {
  margin-top: 0.5em;
}
@container (width > 800px) {
  .agenda .note {
    margin-left: 240px;
  }
}
.agenda .timetable dt {
  font-size: var(--text-20_28px);
  font-weight: 300;
  margin-top: 0.3em;
}
@container (width < 800px) {
  .agenda .timetable dt {
    border-bottom: 1px solid var(--border-color);
  }
}
.agenda .timetable dd {
  font-size: var(--text-16_22px);
  font-weight: 700;
}
.agenda .timetable dd ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.agenda .timetable dd ul li {
  padding: 0.5em 0;
}
.agenda .timetable dd ul li p {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-weight: 400;
  opacity: 0.7;
}
.agenda .timetable dd ul li + li {
  border-top: 1px solid var(--border-color);
}
.agenda .timetable dd[data-dialog] {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agenda .timetable dd[data-dialog]::after {
  font-family: "Material Icons";
  content: "\f8ce";
  color: #fff;
  font-size: var(--text-20_28px);
}
.agenda .timetable > div {
  border-bottom: 1px solid var(--border-color);
}
@container (width > 800px) {
  .agenda .timetable > div {
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
}

/* -----------------------------------------
  Session Detail Modal
   ----------------------------------------- */
.session-dialog .title {
  font-size: var(--text-20_28px);
}
.session-dialog .description {
  margin-top: 20px;
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
}
.session-dialog .card {
  display: flex;
  gap: 20px;
  margin-top: 1em;
}
.session-dialog .card .photo {
  width: 100px;
}
.session-dialog .card .name {
  font-size: var(--text-16_22px);
}
.session-dialog .card .name::after {
  content: "";
}
.session-dialog .card .profile {
  font-size: 1rem;
  color: hsl(var(--color-gray-500));
  line-height: 1.3;
}
.session-dialog .speakers {
  margin-top: 40px;
}
.session-dialog .speakers h4 {
  font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
}
@media screen and (min-width: 992px) {
  .session-dialog .speakers > div:has(.card) {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------
  Venue
   ------------------------------------ */
.venue {
  container-type: inline-size;
}
.venue h3 {
  padding-bottom: 0.5em;
}
.venue dt {
  font-weight: 700;
  margin-top: 0.5em;
}
.venue dd {
  border-top: 1px solid var(--border-color);
  padding: 0.5em 0;
}
.venue dd ul {
  padding-left: 1.25em;
}
.venue dd a {
  color: #fff;
}
@container (width > 560px) {
  .venue .venue__info {
    background-color: var(--border-color);
    display: grid;
    gap: 1px 0;
    grid-template-columns: 200px 1fr;
    border: 1px solid var(--border-color);
    border-width: 1px 0;
  }
  .venue .venue__info dt, .venue .venue__info dd {
    padding: 1em 0;
    margin-top: 0;
    background-color: var(--bg-color);
    border: none;
  }
}
.venue iframe {
  margin-top: 40px;
}

.faq .faq__title {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5em;
}
.faq details {
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
}
.faq details::details-content {
  height: 0;
  opacity: 0;
  transition: all 0.4s ease, display 0.4s allow-discrete, content-visibility 0.4s allow-discrete;
}
.faq details[open]::details-content {
  height: auto;
  opacity: 1;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.faq details[open] summary span {
  font-weight: 700;
}
.faq summary {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 16px;
  align-items: center;
  background-color: var(--bg-color);
}
@starting-style {
  .faq details[open]::details-content {
    height: 0;
    opacity: 0;
  }
}
.faq summary {
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 400;
}
.faq .faq__content {
  padding: 1em;
  color: rgba(255, 255, 255, 0.7);
}
.faq .faq__content a {
  color: #fff;
}
.faq .icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.faq .icon::before,
.faq .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq details[open] .icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.page-list {
  --bg-color: #fff;
  --text-color: #222;
}

.pagelist {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  display: grid;
  grid-template-columns: 30px repeat(2, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  grid-template-areas: "id name url";
}
.pagelist .id {
  grid-area: id;
  color: #999;
}
.pagelist .status {
  grid-area: status;
  font-weight: 700;
  color: var(--ui-secondary-color);
  text-align: center;
}
.pagelist .name {
  grid-area: name;
}
.pagelist .url {
  grid-area: url;
}
.pagelist .title {
  grid-area: title;
  text-align: right;
}
.pagelist .log {
  grid-area: log;
}
.pagelist:last-child {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.pagelist .pagelayer {
  display: grid;
  grid-template-columns: repeat(3, 100px);
}

.pagelist.heading {
  font-size: 0.8em;
  font-weight: 700;
  background-color: #eee;
  margin-bottom: -10px;
}

/* --------------------------------------
  Utility Class
-------------------------------------- */
.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.txt-center {
  text-align: center;
}

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