html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: NotoSansJP, sans-serif;
  color: var(--text-color-main);
  background: var(--body-bg);
  line-height: 1.4;
  letter-spacing: 0.05rem;
}
@media (max-width: 575.98px) {
  body {
    font-size: 1.2rem;
  }
}

main {
  scroll-snap-type: y mandatory;
}

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

button {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

a,
img,
button,
input,
label,
textarea,
select {
  padding: 0;
  font-family: inherit;
  color: inherit;
  outline: none;
  border: none;
}

input,
textarea {
  background: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill:hover {
  transition: background-color 1s 9999s;
  -webkit-text-fill-color: var(--text-color);
  caret-color: var(--text-color);
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: 600;
}

.animation-arrow {
  display: inline-block;
  width: var(--arrow-width, 32px);
  overflow: hidden;
  line-height: 1;
  display: flex;
}
.animation-arrow img {
  transition: transform 0.3s;
  transform: translateX(-100%);
}
.animation-arrow:hover img {
  transform: translateX(0);
}

.row > *, .container-fluid, .container {
  padding-left: calc(var(--grid-gutter-x) * 0.5);
  padding-right: calc(var(--grid-gutter-x) * 0.5);
}

.container-fluid, .container {
  --grid-gutter-x: 80px;
  --grid-gutter-y: 0;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1370px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--grid-gutter-y) * -1);
  margin-left: calc(var(--grid-gutter-x) * 0.5 * -1);
  margin-right: calc(var(--grid-gutter-x) * 0.5 * -1);
}
.row > * {
  margin-top: var(--grid-gutter-y);
}

.col {
  flex: 1 0;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
  --grid-gutter-x: 0px;
}

.g-0,
.gy-0 {
  --grid-gutter-y: 0px;
}

.g-1,
.gx-1 {
  --grid-gutter-x: 20px;
}

.g-1,
.gy-1 {
  --grid-gutter-y: 20px;
}

.g-2,
.gx-2 {
  --grid-gutter-x: 40px;
}

.g-2,
.gy-2 {
  --grid-gutter-y: 40px;
}

.g-3,
.gx-3 {
  --grid-gutter-x: 80px;
}

.g-3,
.gy-3 {
  --grid-gutter-y: 80px;
}

.g-4,
.gx-4 {
  --grid-gutter-x: 120px;
}

.g-4,
.gy-4 {
  --grid-gutter-y: 120px;
}

.g-5,
.gx-5 {
  --grid-gutter-x: 240px;
}

.g-5,
.gy-5 {
  --grid-gutter-y: 240px;
}

@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --grid-gutter-x: 20px;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --grid-gutter-y: 20px;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --grid-gutter-x: 40px;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --grid-gutter-y: 40px;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --grid-gutter-x: 80px;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --grid-gutter-y: 80px;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --grid-gutter-x: 120px;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --grid-gutter-y: 120px;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --grid-gutter-x: 240px;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --grid-gutter-y: 240px;
  }
}
@media (max-width: 1279.98px) {
  .container {
    max-width: 960px;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xl-0,
  .gy-xl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xl-1,
  .gx-xl-1 {
    --grid-gutter-x: 20px;
  }
  .g-xl-1,
  .gy-xl-1 {
    --grid-gutter-y: 20px;
  }
  .g-xl-2,
  .gx-xl-2 {
    --grid-gutter-x: 40px;
  }
  .g-xl-2,
  .gy-xl-2 {
    --grid-gutter-y: 40px;
  }
  .g-xl-3,
  .gx-xl-3 {
    --grid-gutter-x: 80px;
  }
  .g-xl-3,
  .gy-xl-3 {
    --grid-gutter-y: 80px;
  }
  .g-xl-4,
  .gx-xl-4 {
    --grid-gutter-x: 120px;
  }
  .g-xl-4,
  .gy-xl-4 {
    --grid-gutter-y: 120px;
  }
  .g-xl-5,
  .gx-xl-5 {
    --grid-gutter-x: 240px;
  }
  .g-xl-5,
  .gy-xl-5 {
    --grid-gutter-y: 240px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 936px;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --grid-gutter-x: 0px;
  }
  .g-lg-0,
  .gy-lg-0 {
    --grid-gutter-y: 0px;
  }
  .g-lg-1,
  .gx-lg-1 {
    --grid-gutter-x: 20px;
  }
  .g-lg-1,
  .gy-lg-1 {
    --grid-gutter-y: 20px;
  }
  .g-lg-2,
  .gx-lg-2 {
    --grid-gutter-x: 40px;
  }
  .g-lg-2,
  .gy-lg-2 {
    --grid-gutter-y: 40px;
  }
  .g-lg-3,
  .gx-lg-3 {
    --grid-gutter-x: 80px;
  }
  .g-lg-3,
  .gy-lg-3 {
    --grid-gutter-y: 80px;
  }
  .g-lg-4,
  .gx-lg-4 {
    --grid-gutter-x: 120px;
  }
  .g-lg-4,
  .gy-lg-4 {
    --grid-gutter-y: 120px;
  }
  .g-lg-5,
  .gx-lg-5 {
    --grid-gutter-x: 240px;
  }
  .g-lg-5,
  .gy-lg-5 {
    --grid-gutter-y: 240px;
  }
}
@media (max-width: 767.98px) {
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --grid-gutter-x: 0px;
  }
  .g-md-0,
  .gy-md-0 {
    --grid-gutter-y: 0px;
  }
  .g-md-1,
  .gx-md-1 {
    --grid-gutter-x: 20px;
  }
  .g-md-1,
  .gy-md-1 {
    --grid-gutter-y: 20px;
  }
  .g-md-2,
  .gx-md-2 {
    --grid-gutter-x: 40px;
  }
  .g-md-2,
  .gy-md-2 {
    --grid-gutter-y: 40px;
  }
  .g-md-3,
  .gx-md-3 {
    --grid-gutter-x: 80px;
  }
  .g-md-3,
  .gy-md-3 {
    --grid-gutter-y: 80px;
  }
  .g-md-4,
  .gx-md-4 {
    --grid-gutter-x: 120px;
  }
  .g-md-4,
  .gy-md-4 {
    --grid-gutter-y: 120px;
  }
  .g-md-5,
  .gx-md-5 {
    --grid-gutter-x: 240px;
  }
  .g-md-5,
  .gy-md-5 {
    --grid-gutter-y: 240px;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --grid-gutter-x: 0px;
  }
  .g-sm-0,
  .gy-sm-0 {
    --grid-gutter-y: 0px;
  }
  .g-sm-1,
  .gx-sm-1 {
    --grid-gutter-x: 20px;
  }
  .g-sm-1,
  .gy-sm-1 {
    --grid-gutter-y: 20px;
  }
  .g-sm-2,
  .gx-sm-2 {
    --grid-gutter-x: 40px;
  }
  .g-sm-2,
  .gy-sm-2 {
    --grid-gutter-y: 40px;
  }
  .g-sm-3,
  .gx-sm-3 {
    --grid-gutter-x: 80px;
  }
  .g-sm-3,
  .gy-sm-3 {
    --grid-gutter-y: 80px;
  }
  .g-sm-4,
  .gx-sm-4 {
    --grid-gutter-x: 120px;
  }
  .g-sm-4,
  .gy-sm-4 {
    --grid-gutter-y: 120px;
  }
  .g-sm-5,
  .gx-sm-5 {
    --grid-gutter-x: 240px;
  }
  .g-sm-5,
  .gy-sm-5 {
    --grid-gutter-y: 240px;
  }
}
.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-none {
  display: none !important;
}

@media (max-width: 1399.98px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media (max-width: 1279.98px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
html {
  --text-color-main: #000000;
  --text-color-dark: #ffffff;
  --brand-gradient: linear-gradient(
    90deg,
    #ec9ef7 0%,
    #e148f7 50.38%,
    #b239c4 99.77%,
    #a735b8 99.77%
  );
  --second-gradient: linear-gradient(
    90deg,
    #a0ebe6 0%,
    #2de0d4 49.95%,
    #26bdb3 100%
  );
  --brand-solid: #e148f7;
  --error-color: #f74882;
  --gray-primary: #e0e0e0;
  --second-solid: #2de0d4;
  --header-noti-bg: rgba(42, 85, 131, 0.8);
  --header-bg: var(--white-color);
  --mobile-menu-bg: #2e547e;
}
html .brand-color {
  background: var(--brand-gradient, linear-gradient(90deg, #ec9ef7 0%, #e148f7 50.38%, #b239c4 99.77%, #a735b8 99.77%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
html .second-color {
  background: var(--second-gradient, linear-gradient(90deg, #a0ebe6 0%, #2de0d4 49.95%, #26bdb3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html {
  --white-color: #fff;
  --black-color: #000;
}

header {
  background-image: url("/assets/img/introduce_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-color-dark);
  position: relative;
}
@media (max-width: 767.98px) {
  header {
    background-position: 80% center;
  }
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
  clip-path: polygon(80% 0, 100% 0%, 100% 100%, 20% 100%);
}
@media (max-width: 1023.98px) {
  header::after {
    width: 100%;
    clip-path: polygon(533% 0, 100% 0%, 100% 100%, -102% 100%);
  }
}
@media (max-width: 767.98px) {
  header::after {
    clip-path: polygon(748% 0, 100% 0%, 100% 100%, -95% 100%);
  }
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
  clip-path: polygon(0% 0, 100% 0%, 55% 100%, 0% 100%);
}
@media (max-width: 1023.98px) {
  header::before {
    width: 100%;
    clip-path: polygon(0% 0, 250% 0%, 0% 50%, 0% 101%);
  }
}
@media (max-width: 767.98px) {
  header::before {
    clip-path: polygon(0% 0, 530% 0%, 0% 56%, 0% 100%);
  }
}
header .header-inner {
  padding-top: 36px;
  padding-bottom: 36px;
  position: relative;
  min-height: 75vh;
  z-index: 1;
}
@media (max-width: 767.98px) {
  header .header-inner {
    min-height: calc(100vh - 52px);
  }
}
header .header-inner__top {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767.98px) {
  header .header-inner__top {
    flex-direction: column;
    align-items: start;
  }
}
header .header-inner__top span {
  font-size: 2rem;
}
header .header-inner__top span:first-child {
  font-size: 4rem;
  margin-right: 12px;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 767.98px) {
  header .header-inner__top span:first-child {
    font-size: 2.4rem;
  }
}
header .header-inner h1 {
  font-size: 14rem;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  line-height: 1;
  margin: 16px 0;
  max-width: 640px;
}
@media (max-width: 1023.98px) {
  header .header-inner h1 {
    font-size: 6.4rem;
  }
}
header .header-inner__year {
  font-size: 6rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  header .header-inner__year {
    font-size: 4rem;
  }
}
header .header-inner__bottom {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  bottom: -20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1023.98px) {
  header .header-inner__bottom {
    justify-content: end;
  }
}
@media (max-width: 767.98px) {
  header .header-inner__bottom {
    bottom: -10px;
  }
}
header .header-inner__bottom--left {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767.98px) {
  header .header-inner__bottom--left img {
    height: 22px;
  }
  header .header-inner__bottom--left p {
    font-size: 1rem;
  }
}
header .header-inner__bottom--number {
  font-style: italic;
  font-family: "Ubuntu";
  z-index: 1;
}
header .header-inner__bottom--number span:first-child {
  font-weight: 700;
  font-size: 14rem;
  line-height: 0.85;
}
@media (max-width: 767.98px) {
  header .header-inner__bottom--number span:first-child {
    font-size: 8rem;
  }
}
header .header-inner__bottom--number span:last-child {
  font-size: 4rem;
}
@media (max-width: 767.98px) {
  header .header-inner__bottom--number span:last-child {
    font-size: 2.8rem;
  }
}

#footer {
  padding-top: 80px;
  padding-bottom: 36px;
}
@media (max-width: 575.98px) {
  #footer {
    padding-top: 56px;
    padding-bottom: 24px;
  }
  #footer .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
#footer .footer-left {
  display: flex;
  gap: 40px;
}
@media (max-width: 575.98px) {
  #footer .footer-left {
    padding-left: 0;
    padding-right: 0;
    gap: 60px;
  }
}
@media (max-width: 575.98px) {
  #footer .footer-left__logo img {
    width: 90px;
  }
}
#footer .footer-left__links {
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#footer .footer-left__links a {
  display: block;
}
@media (max-width: 575.98px) {
  #footer .footer-left__links a {
    font-size: 1.4rem;
  }
}
#footer .footer-right a {
  min-width: 312px;
}
#footer .footer-right a + a {
  margin-top: 12px;
}
@media (max-width: 575.98px) {
  #footer .footer-right {
    margin-top: 36px;
    padding-left: 0;
    padding-right: 0;
  }
  #footer .footer-right a {
    width: 100%;
  }
}
#footer .footer-right__logo {
  margin-bottom: 12px;
}
@media (max-width: 575.98px) {
  #footer .footer-right__logo {
    margin-bottom: 8px;
  }
}
#footer .footer-right__logo img {
  height: 22px;
}
#footer .copyright {
  margin-top: 60px;
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 575.98px) {
  #footer .copyright {
    margin-top: 36px;
    font-size: 1rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  user-select: none;
}
.btn + .btn:not(.btn--no-margin) {
  margin-left: 20px;
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--text-color-main);
}
.btn--outline-dark {
  background: transparent;
  border: 1px solid var(--text-color-dark);
}
.btn--sm {
  padding: 4px 16px;
}
.btn--lg {
  padding: 12px 16px;
  font-size: 1.6rem;
}
.btn--style-1 {
  background-color: var(--text-color-main);
  color: var(--text-color-dark);
}
.btn[disabled], .btn--disabled {
  background-color: var(--gray-primary);
  color: var(--text-color-dark);
  pointer-events: none;
}
.btn--block {
  width: 100%;
}
.btn:hover {
  opacity: 0.85;
}

.form-item {
  margin-bottom: 36px;
  position: relative;
}
.form-item > label {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .form-item > label {
    font-size: 1.4rem;
  }
}
.form-item > label span {
  color: var(--error-color);
}
.form-item__input {
  padding: 12px 16px;
  background-color: rgba(0, 0, 0, 0.06);
  font-size: 1.6rem;
  border: 1px solid transparent;
  transition: all 0.3s ease-in;
}
@media (max-width: 767.98px) {
  .form-item__input {
    font-size: 1.4rem;
  }
}
.form-item__input:has(input:focus), .form-item__input:has(textarea:focus) {
  border: 1px solid var(--text-color-main);
}
.form-item__input:has(.error-message) {
  border: 1px solid var(--error-color);
}
.form-item__input input,
.form-item__input textarea {
  width: 100%;
}
.form-item__input--checkbox label {
  display: flex;
  gap: 8px;
  align-items: center;
}
.form-item__input .error-message {
  font-size: 1.2rem;
  color: var(--error-color);
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
}
@media (max-width: 767.98px) {
  .form-item__input .error-message {
    font-size: 1rem;
  }
}
.form-item__input .checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--text-color-main);
  position: relative;
}
.form-item input + label .checkbox::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--text-color-main);
  top: 2px;
  left: 2px;
  opacity: 0;
  transition: all 0.3s linear;
}
.form-item input:checked + label .checkbox::after {
  opacity: 1;
}
.form-item .row {
  --grid-gutter-x: 12px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1023.98px) {
  .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
@media (max-width: 767.98px) {
  .section {
    scroll-snap-align: start;
    scroll-margin-top: 52px;
  }
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 1023.98px) {
  .section-head {
    margin-bottom: 24px;
    align-items: flex-end;
    gap: 8px;
  }
}
.section-head h2 {
  font-size: 6rem;
  font-weight: 700;
}
.section-head h2 span {
  display: none;
}
@media (max-width: 1023.98px) {
  .section-head h2 {
    font-size: 4rem;
    /* width: min-content; */
  }
  .section-head h2 span {
    display: inline;
  }
}
.section-head h2.no-wrap {
  white-space: nowrap;
}
.section-head h3,h4 {
  font-size: 2rem;
  font-weight: 700;
  flex: none;
}
@media (max-width: 1023.98px) {
  .section-head h3 {
    font-size: 1.6rem;
  }
  .section-head h4 {
    font-size: 1.2rem;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.modal-inner {
  display: flex;
  background-color: var(--text-color-dark);
  flex-direction: column;
  gap: 36px;
  padding: 40px;
}
@media (max-width: 767.98px) {
  .modal-inner {
    max-width: calc(100% - 32px);
    gap: 24px;
    padding: 16px;
  }
}
.modal-inner__top {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (max-width: 575.98px) {
  .modal-inner__top {
    gap: 14px;
  }
}
.modal-inner__top img {
  max-width: 40px;
}
.modal-inner__top h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .modal-inner__top h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575.98px) {
  .modal-inner__top p {
    font-size: 1.6rem;
  }
}
.modal-inner__body {
  padding: 12px 16px;
  background-color: rgba(0, 0, 0, 0.06);
}
@media (max-width: 575.98px) {
  .modal-inner__body {
    font-size: 1.4rem;
  }
}
.modal-inner__body > p {
  font-weight: 700;
}
.modal-inner__body-items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.modal-inner__body-items::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62px;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--text-color-main);
  z-index: -1;
}
@media (max-width: 575.98px) {
  .modal-inner__body-items::after {
    left: 44px;
  }
}
.modal-inner__body-items__item {
  display: flex;
  gap: 16px;
}
.modal-inner__body-items__item div {
  background-color: var(--text-color-dark);
  padding: 2px 16px;
  min-width: 124px;
  border: 1px solid var(--text-color-main);
  text-align: center;
  height: fit-content;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .modal-inner__body-items__item div {
    min-width: 88px;
  }
}
.modal-inner__body-items__item p {
  font-weight: 700;
}
.modal-inner__bottom {
  text-align: center;
}
.modal-inner__bottom a {
  display: inline-block;
  max-width: 264px;
  width: 100%;
  text-align: center;
}

#mobile-toggle:checked ~ #sidebar .mobile-toggle span:first-child {
  transform-origin: 0%;
  rotate: 45deg;
  transform: translate(5px, -2px);
  border-left: 1px solid var(--text-color-main);
}
#mobile-toggle:checked ~ #sidebar .mobile-toggle span:nth-child(2) {
  opacity: 0;
}
#mobile-toggle:checked ~ #sidebar .mobile-toggle span:last-child {
  transform-origin: 0%;
  rotate: -45deg;
  transform: translate(5px, 3px);
}

#mobile-toggle:checked ~ #sidebar .sidebar-bottom {
  display: block;
  opacity: 1;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 8px;
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.08);
}
@media (max-width: 767.98px) {
  .mobile-toggle {
    display: flex;
  }
}
.mobile-toggle span {
  display: inline-block;
  width: 21px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--text-color-dark);
  transition: all linear 0.3s;
}

.hero-box {
  padding: 16px;
  border: 1px solid var(--text-color-main);
  background-color: var(--text-color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hero-box--style-2 {
  background-color: transparent;
  border: 1px solid var(--text-color-dark);
}
@media (max-width: 1279.98px) {
  .hero-box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.hero-box.active .wait {
  display: none;
}
.hero-box.active .active {
  display: inline;
}
.hero-box .active {
  display: none;
}
.hero-box__text {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767.98px) {
  .hero-box__text {
    font-size: 2rem;
  }
}
.hero-box__number {
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
  margin-left: auto;
  margin-right: 16px;
}
@media (max-width: 1279.98px) {
  .hero-box__number {
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
  }
}
.hero-box__number span {
  font-size: 1.6rem;
}
.hero-box.active a {
  background: var(--second-gradient);
}
.hero-box__button {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 16px;
  max-width: 264px;
  width: 100%;
  text-align: center;
  background-color: var(--gray-primary);
}
@media (max-width: 767.98px) {
  .hero-box__button {
    font-size: 1.4rem;
  }
}
.hero-box__button .active {
  color: var(--text-color-main);
}

.cards {
  --grid-gutter-x: 16px;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .cards {
    --grid-gutter-x: 12px;
  }
}
.cards .card-image {
  padding-top: 134%;
}
.cards__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards__item .placeholder {
  padding-top: calc(134% + 104px);
  position: relative;
  background-color: rgba(0, 0, 0, 0.06);
}
.cards__item .placeholder.placeholder--style-2 {
  background: rgba(255, 255, 255, 0.08);
}
.cards__item .placeholder.placeholder--style-2 span {
  color: var(--text-color-dark);
}
.cards__item .placeholder span {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 700;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}
.cards__item-info {
  padding: 12px 0;
}
@media (max-width: 767.98px) {
  .cards__item-info {
    font-size: 1.2rem;
  }
}
.cards__item-info h5 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 8px;
}
.cards__item-info h5 span {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .cards__item-info h5 {
    font-size: 2rem;
  }
  .cards__item-info h5 span {
    font-size: 1.4rem;
  }
}

.highlight-section {
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  background: var(--brand-gradient);
}
@media (max-width: 767.98px) {
  .highlight-section {
    gap: 20px;
  }
}
.highlight-section--style-2 {
  background: var(--second-gradient);
}
.highlight-section--style-2 div:nth-child(2) span:nth-child(2) {
  color: var(--second-solid) !important;
}
.highlight-section div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  text-align: center;
}
.highlight-section div:nth-child(2) br {
  display: none;
}
@media (max-width: 767.98px) {
  .highlight-section div:nth-child(2) br {
    display: inline;
  }
}
.highlight-section div:nth-child(2) span {
  color: var(--text-color-dark);
  line-height: 100%;
  display: inline-block;
}
.highlight-section div:nth-child(2) span:nth-child(2) {
  background-color: var(--text-color-dark);
  padding: 2px 8px;
  font-size: 2.2rem;
  color: var(--brand-solid);
}
@media (max-width: 767.98px) {
  .highlight-section div:nth-child(2) span:nth-child(2) {
    font-size: 1.6rem;
  }
}

#home-page {
  display: flex;
}
@media (max-width: 767.98px) {
  #home-page {
    flex-direction: column;
  }
}

aside {
  width: 344px;
  position: sticky;
  top: 0;
  height: fit-content;
  z-index: 10;
}
@media (max-width: 767.98px) {
  aside {
    position: fixed;
    width: 100%;
  }
}

.scroll-area {
  flex: 1;
}
@media (max-width: 767.98px) {
  .scroll-area {
    margin-top: 52px;
  }
}

#sidebar,
#mobile-cta {
  background-image: url("/assets/img/sidebar_bg.webp");
  background-size: cover;
  background-position: 80%;
  color: var(--text-color-dark);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: all 0.3s linear;
}
@media (max-width: 767.98px) {
  #sidebar,
  #mobile-cta {
    min-height: fit-content;
  }
}
#sidebar .sidebar-logo,
#mobile-cta .sidebar-logo {
  padding: 36px 112px 40px 72px;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-logo,
  #mobile-cta .sidebar-logo {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#sidebar .sidebar-logo img,
#mobile-cta .sidebar-logo img {
  width: 110px;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-logo img,
  #mobile-cta .sidebar-logo img {
    width: 90px;
  }
}
#sidebar .sidebar-bottom,
#mobile-cta .sidebar-bottom {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-bottom,
  #mobile-cta .sidebar-bottom {
    flex: unset;
    display: none;
    opacity: 0;
    transition: all linear 0.5s;
    overflow-y: hidden;
  }
}
#sidebar .sidebar-nav a,
#mobile-cta .sidebar-nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 20px 16px 20px 72px;
}
#sidebar .sidebar-nav a.active .main,
#mobile-cta .sidebar-nav a.active .main {
  color: var(--brand-solid);
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-nav a,
  #mobile-cta .sidebar-nav a {
    padding: 20px 32px;
  }
}
#sidebar .sidebar-nav a .main,
#mobile-cta .sidebar-nav a .main {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-nav a .main,
  #mobile-cta .sidebar-nav a .main {
    font-size: 1.6rem;
  }
}
#sidebar .sidebar-nav a .sub,
#mobile-cta .sidebar-nav a .sub {
  font-size: 1rem;
  opacity: 0.4;
}
#sidebar .sidebar-info,
#mobile-cta .sidebar-info {
  background-color: var(--text-color-main);
  margin-top: auto;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-info-wrapper,
  #mobile-cta .sidebar-info-wrapper {
    display: flex;
    padding: 0 0 0 16px;
    gap: 8px;
    justify-content: space-between;
  }
}
#sidebar .sidebar-info__text,
#mobile-cta .sidebar-info__text {
  padding: 48px 39px 0 72px;
  display: flex;
  gap: 8px;
  align-items: center;
}
#sidebar .sidebar-info__text .text-md,
#mobile-cta .sidebar-info__text .text-md {
  display: none;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-info__text,
  #mobile-cta .sidebar-info__text {
    padding: 0;
  }
  #sidebar .sidebar-info__text p,
  #mobile-cta .sidebar-info__text p {
    font-size: 1rem;
  }
  #sidebar .sidebar-info__text .text-lg,
  #mobile-cta .sidebar-info__text .text-lg {
    display: none;
  }
  #sidebar .sidebar-info__text .text-md,
  #mobile-cta .sidebar-info__text .text-md {
    display: block;
  }
}
#sidebar .sidebar-info__text span,
#mobile-cta .sidebar-info__text span {
  display: block;
  flex: none;
  padding: 4px 12px;
  border: 1px solid var(--text-color-dark);
  height: fit-content;
}
#sidebar .sidebar-info__text span b,
#mobile-cta .sidebar-info__text span b {
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-info__text span,
  #mobile-cta .sidebar-info__text span {
    display: none;
  }
}
#sidebar .sidebar-info__number,
#mobile-cta .sidebar-info__number {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
  padding: 0 39px 0 72px;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-info__number,
  #mobile-cta .sidebar-info__number {
    padding: 0;
  }
}
#sidebar .sidebar-info__number .main,
#mobile-cta .sidebar-info__number .main {
  font-size: 8rem;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-info__number .main,
  #mobile-cta .sidebar-info__number .main {
    font-size: 3.6rem;
  }
}
#sidebar .sidebar-info__number .sub,
#mobile-cta .sidebar-info__number .sub {
  font-size: 2.4rem;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-info__number .sub,
  #mobile-cta .sidebar-info__number .sub {
    font-size: 1rem;
  }
}
#sidebar .sidebar-cta,
#mobile-cta .sidebar-cta {
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 700;
  padding: 16px 16px 16px 72px;
}
#sidebar .sidebar-cta.visitor,
#mobile-cta .sidebar-cta.visitor {
  background: var(--second-gradient);
  color: #000000;
}
#sidebar .sidebar-cta .text-md,
#mobile-cta .sidebar-cta .text-md {
  display: none;
}
@media (max-width: 767.98px) {
  #sidebar .sidebar-cta,
  #mobile-cta .sidebar-cta {
    padding: 13px 12px;
    font-size: 1.6rem;
  }
  #sidebar .sidebar-cta .text-lg,
  #mobile-cta .sidebar-cta .text-lg {
    display: none;
  }
  #sidebar .sidebar-cta .text-md,
  #mobile-cta .sidebar-cta .text-md {
    display: inline;
  }
  #sidebar .sidebar-cta img,
  #mobile-cta .sidebar-cta img {
    display: none;
  }
}

#mobile-cta.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#about {
  background-image: url("/assets/img/about_bg.png");
  background-position: 0 20%;
  background-repeat: no-repeat;
}
#about .about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#about .about-content h4 {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 auto;
  max-width: 610px;
  text-align: center;
}
@media (max-width: 767.98px) {
  #about .about-content h4 {
    font-size: 2.4rem;
  }
}
#about .about-content p {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 767.98px) {
  #about .about-content p {
    font-size: 1.4rem;
  }
}
#about .about-content__img img {
  width: 100%;
}

#event-details .event-details-content {
  --grid-gutter-x: 16px;
}
#event-details .event-details-content-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}
#event-details .event-details-content-left__item {
  display: flex;
  gap: 16px;
}
@media (max-width: 1023.98px) {
  #event-details .event-details-content-left__item {
    flex-direction: column;
    gap: 8px;
  }
}
#event-details .event-details-content-left__item .label {
  min-width: 124px;
  padding: 4px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  background-color: var(--text-color-main);
  color: var(--text-color-dark);
  height: fit-content;
}
@media (max-width: 1023.98px) {
  #event-details .event-details-content-left__item .label {
    width: fit-content;
    min-width: 88px;
    font-size: 1.4rem;
  }
}
#event-details .event-details-content-left__item .content {
  font-size: 2rem;
  font-weight: 700;
}
#event-details .event-details-content-left__item .content p + p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 8px;
}
#event-details .event-details-content-right {
  min-height: 251px;
}
@media (max-width: 1023.98px) {
  #event-details .event-details-content-right {
    min-height: auto;
    aspect-ratio: 1.3;
    margin-top: 8px;
    margin-bottom: 24px;
  }
}
#event-details .event-details-content-right iframe {
  width: 100%;
  height: 100%;
}

#news {
  background-image: url("/assets/img/news_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 20px;
  padding-right: 20px;
}
#news .news-content {
  max-width: 472px;
  margin: 0 auto;
}
#news .news-content > div {
  width: 100%;
}

#application .apps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
#application .apps .btn {
  min-width: 124px;
  font-size: 1.6rem;
}
@media (max-width: 1023.98px) {
  #application .apps .btn {
    font-size: 1.4rem;
    min-width: 88px;
  }
}
#application .apps-first {
  --grid-gutter-x: 32px;
  min-height: 264px;
}
@media (max-width: 1023.98px) {
  #application .apps-first {
    --grid-gutter-y: 16px;
  }
}
#application .apps-first > div {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023.98px) {
  #application .apps-first > div {
    aspect-ratio: 1.7;
  }
}
#application .apps-first h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: auto;
}
@media (max-width: 1023.98px) {
  #application .apps-first h3 {
    font-size: 2rem;
  }
}
#application .apps-first p {
  margin-top: 8px;
}
@media (max-width: 1023.98px) {
  #application .apps-first p {
    font-size: 1.2rem;
  }
}
#application .apps-first__left {
  background-image: url(/assets/img/application_01.webp);
  background-repeat: no-repeat;
  background-position: 90%;
}
#application .apps-first__right {
  background-image: url(/assets/img/application_02.webp);
  background-repeat: no-repeat;
  background-position: 90%;
}
#application .apps-second__items {
  margin-top: 20px;
  display: flex;
  gap: 36px;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  #application .apps-second__items {
    flex-direction: column;
    font-size: 1.6rem;
    gap: 14px;
  }
  #application .apps-second__items img {
    height: 24px;
  }
}
#application .apps-second__items-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
#application .apps-third {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#application .apps-third__items {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items {
    gap: 24px;
  }
}
#application .apps-third__items::after {
  content: "";
  position: absolute;
  top: 0;
  left: 66.5px;
  height: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--text-color-main);
  z-index: 0;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items::after {
    left: 44px;
  }
}
#application .apps-third__items::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 66.5px;
  height: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--text-color-main);
  z-index: 0;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items::before {
    left: 44px;
    bottom: 40px;
  }
}
#application .apps-third__items-item {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items-item {
    gap: 12px;
  }
}
#application .apps-third__items-item .label {
  min-width: 124px;
  border: 1px solid var(--text-color-main);
  padding: 4px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  background-color: var(--text-color-dark);
  height: fit-content;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items-item .label {
    font-size: 1.4rem;
    min-width: 88px;
  }
  #application .apps-third__items-item .label br {
    display: inline !important;
  }
}
#application .apps-third__items-item .label.active {
  background: var(--brand-gradient);
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--text-color-dark);
}
#application .apps-third__items-item .label.nowrap {
  text-wrap: nowrap;
  white-space: nowrap;
}
#application .apps-third__items-item .label.disabled {
  background-color: var(--gray-primary);
  color: var(--text-color-dark);
  border: 1px solid transparent;
}
#application .apps-third__items-item .content {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items-item .content {
    flex-direction: column;
    align-items: start;
  }
}
#application .apps-third__items-item .content p {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items-item .content p {
    font-size: 1.6rem;
  }
}
#application .apps-third__items-item .content span {
  font-size: 1.4rem;
}
@media (max-width: 1023.98px) {
  #application .apps-third__items-item .content span {
    font-size: 1rem;
  }
}

#entry .form-consent,
#ticket-section .form-consent {
  padding: 16px;
  border: 1px solid var(--text-color-main);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
#entry .form-consent.privacy,
#ticket-section .form-consent.privacy {
  border: none;
  padding: 0;
}
#entry .form-consent.privacy .form-consent__right,
#ticket-section .form-consent.privacy .form-consent__right {
  max-width: 404px;
  padding: 12px 16px;
  margin: 36px auto 0;
  width: 100%;
  align-items: center;
}
#entry .form-consent.privacy .form-consent__right a,
#ticket-section .form-consent.privacy .form-consent__right a {
  text-decoration: underline;
}
#entry .form-consent__left,
#ticket-section .form-consent__left {
  margin-right: auto;
}
#entry .form-consent__left h4,
#ticket-section .form-consent__left h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#entry .form-consent__right,
#ticket-section .form-consent__right {
  background: rgba(0, 0, 0, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
}
#entry .form-consent__right label,
#ticket-section .form-consent__right label {
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-color-main);
  background-color: var(--text-color-dark);
}
#entry .form-consent__right img,
#ticket-section .form-consent__right img {
  opacity: 0;
  transition: all 0.3s ease-in;
}
#entry .form-consent__right #consent:checked ~ label,
#entry .form-consent__right #consent-ticket:checked ~ label,
#entry .form-consent__right #consent-ticket-privacy:checked ~ label,
#entry .form-consent__right #consent-entry-privacy:checked ~ label,
#ticket-section .form-consent__right #consent:checked ~ label,
#ticket-section .form-consent__right #consent-ticket:checked ~ label,
#ticket-section .form-consent__right #consent-ticket-privacy:checked ~ label,
#ticket-section .form-consent__right #consent-entry-privacy:checked ~ label {
  background-color: var(--text-color-main);
}
#entry .form-consent__right #consent:checked ~ label img,
#entry .form-consent__right #consent-ticket:checked ~ label img,
#entry .form-consent__right #consent-ticket-privacy:checked ~ label img,
#entry .form-consent__right #consent-entry-privacy:checked ~ label img,
#ticket-section .form-consent__right #consent:checked ~ label img,
#ticket-section .form-consent__right #consent-ticket:checked ~ label img,
#ticket-section .form-consent__right #consent-ticket-privacy:checked ~ label img,
#ticket-section .form-consent__right #consent-entry-privacy:checked ~ label img {
  opacity: 1;
}
#entry .form-consent__right p,
#ticket-section .form-consent__right p {
  font-size: 1.6rem;
}
#entry .submit-button,
#ticket-section .submit-button {
  min-width: 320px;
  margin: 36px auto 0;
}
@media (max-width: 767.98px) {
  #entry .submit-button,
  #ticket-section .submit-button {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  #entry .input-wrapper,
  #ticket-section .input-wrapper {
    gap: 8px;
  }
}

#prize {
  background: url("/assets/img/prize_bg.webp") lightgray 50%/cover no-repeat;
  color: var(--text-color-dark);
}
#prize .prizes {
  margin-top: -16px;
  --grid-gutter-x: 16px;
  --grid-gutter-y: 16px;
}
#prize .prizes-item {
  padding: 8px 26px;
  border: 1px solid var(--text-color-dark);
  display: flex;
  gap: 8px;
  align-items: center;
  height: 100%;
}
@media (max-width: 1279.98px) {
  #prize .prizes-item {
    justify-content: center;
    padding: 8px 14px;
  }
}
#prize .prizes-item .number {
  font-weight: 700;
  display: flex;
}
#prize .prizes-item .unit {
  font-size: 1.6rem;
  align-self: flex-end;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item .unit {
    font-size: 1.2rem;
  }
}
#prize .prizes-item--style-1 .text {
  font-size: 1.4rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-1 .text {
    font-size: 1.1rem;
  }
}
#prize .prizes-item--style-1 .text p + p {
  font-size: 2rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-1 .text p + p {
    font-size: 1.6rem;
  }
}
#prize .prizes-item--style-1 .number {
  font-size: 6rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-1 .number {
    font-size: 4rem;
  }
}
#prize .prizes-item--style-2 {
  padding: 8px 19px;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-2 {
    flex-wrap: wrap;
  }
}
#prize .prizes-item--style-2 .text {
  font-size: 1.6rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-2 .text {
    font-size: 1.4rem;
  }
}
#prize .prizes-item--style-2 .number {
  font-size: 4rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-2 .number {
    font-size: 2.4rem;
  }
}
#prize .prizes-item--style-3 {
  padding: 8px 13px;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-3 {
    padding: 17px;
  }
}
#prize .prizes-item--style-3 .sub-text {
  font-size: 1.6rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-3 .sub-text {
    font-size: 1.4rem;
  }
}
#prize .prizes-item--style-3 .main-text {
  font-size: 3.2rem;
}
@media (max-width: 1023.98px) {
  #prize .prizes-item--style-3 .main-text {
    font-size: 2.4rem;
  }
}
#prize .note {
  font-size: 1.6rem;
  margin-top: 16px;
}
@media (max-width: 1023.98px) {
  #prize .note {
    font-size: 1.4rem;
  }
}

#judges .judges {
  --grid-gutter-y: 16px;
  margin-top: -16px;
}

.intro {
  --left-width: 77.5%;
  position: relative;
  color: var(--text-color-dark);
  padding-top: 36px;
  padding-bottom: 36px;
}
@media (max-width: 1023.98px) {
  .intro {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .intro .intro-left--sm {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .intro .intro-left--sm img {
    display: block;
    width: 100%;
    height: auto;
  }
  .intro .intro-left--sm a {
    display: block;
    position: relative !important;
  }
}
.intro > * {
  position: relative;
  z-index: 1;
}
.intro > img {
  position: absolute;
  bottom: 0;
  left: 35.5%;
  transform: translateX(-50%);
  height: auto;
  z-index: 1;
  max-width: 393px;
}
@media (max-width: 1023.98px) {
  .intro > img {
    right: 0;
    transform: unset;
    max-width: 169px;
    left: unset;
    bottom: 65px;
  }
}
.intro::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  content: "";
  background-image: url("/assets/img/sidebar_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media (max-width: 1023.98px) {
  .intro::after {
    display: none;
    width: 100%;
  }
}
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: var(--left, 25%);
  bottom: 0;
  z-index: 1;
  background-image: var(--brand-gradient);
}
@media (max-width: 1023.98px) {
  .intro::before {
    display: none;
  }
}
.intro .container {
  display: flex;
}
@media (max-width: 1023.98px) {
  .intro .container {
    flex-direction: column;
  }
}
.intro-left {
  width: var(--left-width);
  padding-right: 62px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023.98px) {
  .intro-left {
    width: 100%;
    padding-right: 0;
    flex-direction: column;
  }
}
.intro-left h2 {
  font-size: 3.6rem;
  font-family: "Ubuntu", sans-serif;
  max-width: 227px;
  font-weight: 700;
  margin-bottom: 41px;
  line-height: 0.9;
}
@media (max-width: 1023.98px) {
  .intro-left__title {
    display: flex;
    flex-direction: column-reverse;
  }
  .intro-left__title img {
    width: 70px;
  }
  .intro-left__title h2 {
    font-size: 2.4rem;
    margin-top: 16px;
  }
}
.intro-left__text p {
  font-weight: 700;
  line-height: 1;
}
.intro-left__text p:first-child {
  font-size: 1.6rem;
}
@media (max-width: 1023.98px) {
  .intro-left__text p:first-child {
    font-size: 1.4rem;
  }
}
.intro-left__text p:nth-child(2) {
  font-size: 8rem;
  font-style: italic;
}
@media (max-width: 1023.98px) {
  .intro-left__text p:nth-child(2) {
    font-size: 6.4rem;
  }
}
.intro-left__text p:last-child {
  font-size: 2.4rem;
  text-align: right;
  font-style: italic;
}
@media (max-width: 1023.98px) {
  .intro-left__text p:last-child {
    font-size: 2rem;
    width: 126px;
  }
}
.intro-right {
  width: calc(100% - var(--left-width));
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-right img {
  width: 32px;
}
@media (max-width: 1023.98px) {
  .intro-right {
    line-height: 1;
    background: var(--brand-gradient);
    font-size: 2rem;
    bottom: -72px;
    right: 0;
    left: 0;
    width: 100%;
    padding-left: 0;
    padding: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .intro-right.visitor {
    background: var(--second-gradient);
  }
  .intro-right.visitor h2 {
    color: #000000;
  }
}
.intro-right h2 {
  font-size: 2.4rem;
  font-weight: 700;
  max-width: 122px;
}
@media (max-width: 1023.98px) {
  .intro-right h2 {
    font-size: 2rem;
    max-width: max-content;
    line-height: 1;
  }
}
.intro-right a {
  display: inline-block;
  margin-top: 12px;
}
@media (max-width: 1023.98px) {
  .intro-right a {
    margin-top: 0;
  }
}

.next-star {
  display: flex;
}
.next-star .next-star__left {
  flex: 3;
}
.next-star .next-star__left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.next-star .next-star__right {
  flex: 1;
  padding: 44px 36px;
  background: var(--brand-gradient);
  color: var(--text-color-dark);
  font-weight: 700;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}

.next-star .next-star__right.visitor {
  background: var(--second-gradient);
  color: var(--text-color-main);
}

#talk-session {
  background: url("/assets/img/talk_bg.jpg") lightgray 50%/cover no-repeat;
  color: var(--text-color-dark);
}
#talk-session a {
  cursor: default;
}
#talk-session .session-top {
  margin: 36px 0;
  padding: 16px;
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid var(--Base-Common-White, #fff);
  border-bottom: 1px solid var(--Base-Common-White, #fff);
}
@media (max-width: 1023.98px) {
  #talk-session .session-top {
    flex-wrap: wrap;
  }
}
#talk-session .session-top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#talk-session .session-top__item:nth-child(1) {
  width: 23%;
}
#talk-session .session-top__item:nth-child(1) h4 {
  font-size: 3.0rem;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 1023.98px) {
  #talk-session .session-top__item:nth-child(1) h4 {
    font-size: 2.5rem;
  }
}
#talk-session .session-top__item:nth-child(1) p {
  font-size: 1.6rem;
  margin-top: 12px;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  #talk-session .session-top__item:nth-child(1) p {
    font-size: 1.6rem;
  }
}
#talk-session .session-top__item:nth-child(2) {
  width: 35%;
}
#talk-session .session-top__item:nth-child(2) h4 {
  font-size: 3.0rem;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  #talk-session .session-top__item:nth-child(2) h4 {
    font-size: 2rem;
  }
}
#talk-session .session-top__item:nth-child(2) p {
  margin-bottom: 8px;
}
@media (max-width: 1023.98px) {
  #talk-session .session-top__item:nth-child(2) p {
    font-size: 1.2rem;
  }
}
#talk-session .session-top__item:nth-child(3) {
  width: 42%;
}
@media (max-width: 1023.98px) {
  #talk-session .session-top__item {
    width: 100% !important;
  }
}
#talk-session .session-group {
  margin-bottom: 36px;
}
#talk-session .session-group__item {
  --grid-gutter-x: 16px;
}
#talk-session .session-group__item-left {
  font-family: "Ubuntu", sans-serif;
  font-style: italic;
}
@media (max-width: 1279.98px) {
  #talk-session .session-group__item-left {
    margin-bottom: 18px;
  }
}
#talk-session .session-group__item-left h4 {
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  #talk-session .session-group__item-left h4 {
    font-size: 2.4rem;
  }
}
#talk-session .session-group__item-left p {
  font-size: 2rem;
  margin-top: 16px;
}
@media (max-width: 1279.98px) {
  #talk-session .session-group__item-left p {
    margin-top: 8px;
  }
}
@media (max-width: 767.98px) {
  #talk-session .session-group__item-left p {
    font-size: 1.6rem;
  }
}
#talk-session .session-group__item-right .btn {
  min-width: 162px;
}
@media (max-width: 767.98px) {
  #talk-session .session-group__item-right .btn {
    min-width: 138px;
  }
}
#talk-session .session-group__item-right h4 {
  font-size: 4rem;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 36px;
}
@media (max-width: 1279.98px) {
  #talk-session .session-group__item-right h4 {
    margin-top: 12px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  #talk-session .session-group__item-right h4 {
    font-size: 2.4rem;
  }
}
#talk-session .session-group__item + .session-group__item {
  margin-top: 36px;
}

#event-mc {
  background-image: url("/assets/img/mc_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
#event-mc .event-mc {
  display: flex;
  justify-content: center;
}
@media (max-width: 1279.98px) {
  #event-mc .event-mc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#event-mc .event-mc__center {
  text-align: center;
}
#event-mc .event-mc__center img {
  max-width: 404px;
  width: 100%;
  height: auto;
}
@media (max-width: 1279.98px) {
  #event-mc .event-mc__center {
    grid-column: span 2/span 2;
    order: 1;
  }
}
#event-mc .event-mc h4 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 1279.98px) {
  #event-mc .event-mc h4 {
    font-size: 2rem;
  }
}
#event-mc .event-mc__left {
  align-self: flex-end;
  padding: 16px;
  text-align: right;
}
@media (max-width: 1279.98px) {
  #event-mc .event-mc__left {
    grid-column: span 1/span 1;
    order: 2;
  }
}
#event-mc .event-mc__right {
  align-self: center;
  padding: 16px;
}
@media (max-width: 1279.98px) {
  #event-mc .event-mc__right {
    grid-column: span 1/span 1;
    order: 3;
  }
}
#event-mc .mc-list {
  max-width: 75%;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  #event-mc .mc-list {
    max-width: 100%;
  }
}

#sponsors .sponsor-items {
  --grid-gutter-x: 16px;
  --grid-gutter-y: 16px;
}
#sponsors .sponsor-items__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#sponsors .sponsor-cta {
  padding: 16px;
  border: 1px solid var(--text-color-main);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
}
@media (max-width: 1023.98px) {
  #sponsors .sponsor-cta {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  #sponsors .sponsor-cta p {
    text-align: justify;
  }
}
#sponsors .sponsor-cta a {
  min-width: 264px;
}
@media (max-width: 575.98px) {
  #sponsors .sponsor-cta a {
    min-width: unset;
    width: 100%;
    font-size: 1.4rem;
  }
}

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