@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-gov.min.css");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --vh: calc(100vh / 100);
}

html,
body {
  position: relative;
  width: 100%;
  min-height: calc(var(--vh) * 100);
  height: calc(var(--vh) * 100);
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  word-break: keep-all;
  word-wrap: break-word;
  letter-spacing: -0.02em;
}

body {
  font-size: 18px;
  overflow-x: hidden;
}

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

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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-style: normal;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input {
  appearance: none;
}
input:focus {
  outline: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  appearance: none;
  text-transform: none;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  border: 0;
  background: transparent;
}

[disabled] {
  pointer-events: none;
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

picture {
  display: inline-block;
}

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

hr {
  width: 100%;
  box-sizing: content-box;
  border: 0;
  height: 0.1rem;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}
a:active, a:hover {
  outline: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

small,
sub,
sup {
  font-size: 1rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.5rem;
}

sup {
  top: -0.5rem;
}

legend {
  max-width: 100%;
  width: 100%;
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
}

fieldset {
  min-width: 0;
}

summary {
  display: list-item;
}

th,
td {
  font-weight: inherit;
}

p,
label,
span {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

strong,
em {
  font-family: inherit;
  font-weight: 700;
  font-style: normal;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
  display: inline-flex;
  transition: all 0.3s ease 0s;
  padding: 10px 24px;
  border-radius: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-more {
  border: 1px solid #111111;
  background-color: #FFFFFF;
  color: #111111;
  font-size: 16px;
}
.btn-more .material-symbols-outlined {
  transition: transform 0.2s ease;
  font-size: 16px;
}
.btn-more:hover {
  background: #F4F6F9;
}
.btn-more:hover .material-symbols-outlined {
  transform: translateX(3px);
}
.btn-more--white {
  border: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
}
.btn-more--white .material-symbols-outlined {
  color: #FFFFFF;
}
.btn-more--white:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .btn {
    padding: 8px 16px;
    font-size: 16px;
    gap: 2px;
  }
  .btn-more {
    font-size: 14px;
  }
  .btn-more .material-symbols-outlined {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 6px 12px;
    font-size: 14px;
  }
  .btn-more {
    font-size: 13px;
  }
  .btn-more .material-symbols-outlined {
    font-size: 18px;
  }
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
  display: inline-flex;
  transition: all 0.3s ease 0s;
  padding: 10px 16px;
  border-radius: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  width: fit-content;
}
.badge--pill {
  min-width: 80px;
  padding: 10px 0;
}
.badge--gray {
  background-color: #E2E6ED;
  color: #2A2A2A;
}
.badge--blue {
  background-color: #1F5FD1;
  color: #FFFFFF;
}
.badge--black {
  background-color: #111111;
  color: #FFFFFF;
}
.badge--icon {
  padding: 0 !important;
  color: #1F5FD1;
}
.badge--icon .material-symbols-outlined {
  font-size: 16px;
  color: #1F5FD1;
}
@media (max-width: 1024px) {
  .badge {
    padding: 6px 12px;
    font-size: 14px;
    gap: 2px;
  }
  .badge--pill {
    min-width: 64px;
    padding: 6px 0;
  }
  .badge--icon .material-symbols-outlined {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .badge {
    padding: 4px 10px;
    font-size: 13px;
  }
  .badge--pill {
    min-width: 56px;
    padding: 4px 0;
  }
  .badge--icon .material-symbols-outlined {
    font-size: 18px;
  }
}

.header__inner {
  padding-inline: 64px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
.header__top {
  background-color: #111111;
  color: #FFFFFF;
  height: 48px;
  font-size: 16px;
}
.header__family {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  height: 100%;
}
.header__family a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 16px;
  height: 100%;
}
.header__family a.is-active {
  color: #0B3C8C;
  background-color: #FFFFFF;
  font-weight: 600;
}
.header__utils {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  height: 100%;
}
.header__utils a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
  height: 100%;
}
.header__utils .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.header__main {
  position: relative;
  height: 92px;
  z-index: 300;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
.header__triggers {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 32px;
  height: 100%;
}
.header__menu {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background-color: transparent;
  color: #111111;
  cursor: pointer;
  position: relative;
  z-index: 200;
}
.header__menu-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}
.header__menu-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease opacity;
}
.header__menu-bars span:nth-child(1) {
  top: 0;
}
.header__menu-bars span:nth-child(2) {
  top: 7px;
}
.header__menu-bars span:nth-child(3) {
  top: 14px;
}
.header.is-menu-open .header__menu {
  z-index: 1000;
}
.header.is-menu-open .header__menu-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.is-menu-open .header__menu-bars span:nth-child(2) {
  opacity: 0;
}
.header.is-menu-open .header__menu-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__bar {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #0B3C8C;
  min-height: 52px;
  height: auto;
  padding: 12px 48px;
  color: #FFFFFF;
  font-size: 20px;
  top: 0;
  z-index: 299;
}
.header__bar a {
  flex: 0 1 auto;
  white-space: normal;
  text-align: center;
  padding: 4px 8px;
}

.gnb {
  position: relative;
  min-width: 0;
  height: 100%;
}
@media (max-width: 1024px) {
  .gnb {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
  }
}
.gnb__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
.gnb__list li {
  width: 170px;
}
.gnb__list li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .gnb__list {
    display: none;
  }
}
.gnb__mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  margin-top: 8px;
  transition: all 0.3s ease 0s;
}
.gnb__mega::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * (100vw - 100% - 64px));
  width: 100vw;
  height: 100%;
  background-color: #FFFFFF;
  border-top: 1px solid #E2E6ED;
  box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .gnb__mega {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
    transform: translateY(-8px);
    pointer-events: none;
    overscroll-behavior: contain;
  }
  .gnb__mega::before {
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 0;
    box-shadow: none;
  }
}
.gnb__mega-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 24px 0;
}
@media (max-width: 1024px) {
  .gnb__mega-inner {
    flex: 1 1 0;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    gap: 16px;
    padding: max(88px, env(safe-area-inset-top, 0px) + 56px) 16px max(40px, env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}
.gnb__col {
  width: 170px;
  text-align: right;
}
@media (max-width: 1024px) {
  .gnb__col {
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E6ED;
  }
  .gnb__col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.gnb__depth li {
  margin-bottom: 8px;
}
.gnb__depth li:last-child {
  margin-bottom: 0;
}
.gnb__depth li a {
  display: block;
  color: #2A2A2A;
  transition: color 0.2s ease 0s;
}
.gnb__depth li a:hover {
  color: #0B3C8C;
}
@media (min-width: 1025px) {
  .gnb:hover .gnb__mega {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .gnb.is-open .gnb__mega {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1440px) {
  .header__inner {
    padding-inline: 40px;
  }
  .header__family {
    gap: 8px;
  }
  .header__family a {
    padding: 0 8px;
  }
  .header__bar {
    padding-inline: 32px;
    gap: 16px 32px;
  }
}
@media (max-width: 1024px) {
  .header__family {
    display: none;
  }
  .header__menu {
    display: inline-flex;
  }
  .header__top {
    height: auto;
    min-height: 40px;
    font-size: 14px;
  }
  .header__inner {
    flex-wrap: wrap;
    row-gap: 4px;
    padding-block: 4px;
  }
  .header__family {
    flex: 1 1 100%;
    min-width: 0;
    flex-wrap: wrap;
    row-gap: 0;
    column-gap: 4px;
    justify-content: center;
  }
  .header__family a {
    flex: 0 1 auto;
    min-height: 32px;
    padding: 2px 8px;
    white-space: normal;
    text-align: center;
    font-size: 13px;
  }
  .header__utils {
    flex-shrink: 0;
    margin-left: auto;
    gap: 8px;
    height: 32px;
  }
  .header__utils a {
    font-size: 13px;
    padding-inline: 6px;
  }
  .header__utils a .material-symbols-outlined {
    font-size: 18px;
  }
  .header__main {
    height: 76px;
  }
  .header__logo img {
    max-height: 40px;
  }
  .header__triggers {
    margin-left: 0;
    flex: 0 0 auto;
  }
  .header__bar {
    gap: 8px 32px;
    padding-inline: 32px;
    font-size: 16px;
  }
  .gnb {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
  }
  .gnb__list {
    display: none;
  }
  .gnb__mega {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
    transform: translateY(-8px);
    pointer-events: none;
    overscroll-behavior: contain;
  }
  .gnb__mega::before {
    left: 0;
    top: 104px;
    width: 100%;
    height: 100%;
    border-top: 0;
    box-shadow: none;
  }
  .gnb__mega-inner {
    flex: 1 1 0;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    gap: 16px;
    margin-top: 104px;
    padding-top: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .gnb__col {
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E6ED;
  }
  .gnb__col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .gnb.is-open .gnb__mega {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media (max-width: 767px) {
  .header__top {
    min-height: 36px;
    font-size: 12px;
  }
  .header__inner {
    padding-inline: 16px;
  }
  .header__family a {
    min-height: 30px;
    padding: 2px 6px;
    font-size: 12px;
  }
  .header__utils a {
    gap: 0;
    font-size: 12px;
    padding-inline: 4px;
  }
  .header__utils a .material-symbols-outlined {
    margin-inline-end: 4px;
    font-size: 16px;
  }
  .header__main {
    height: 64px;
  }
  .header__logo img {
    max-height: 32px;
  }
  .header__bar {
    gap: 0;
    padding: 8px 0px;
    font-size: 14px;
  }
}
.footer {
  background-color: #111111;
  padding-left: 64px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 120px;
}
.footer__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  padding-top: 64px;
  color: #FFFFFF;
  font-size: 14px;
}
.footer__links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
}
.footer__links a {
  position: relative;
}
.footer__links a:first-child {
  color: #1F5FD1;
}
.footer__links a:not(:last-child):after {
  content: "";
  position: absolute;
  top: 4px;
  right: -8px;
  width: 1px;
  height: 12px;
  background-color: #555555;
}
.footer__family {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 60px;
  padding: 64px;
  margin-top: 4px;
  background-color: #FFFFFF;
  flex: 1;
  font-size: 20px;
}
.footer__family img {
  height: 40px;
}
.footer__group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
.footer__group strong {
  width: 90px;
}
.footer__group > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__bottom {
  color: #FFFFFF;
  text-align: right;
  padding: 16px 64px 16px 0;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .footer {
    padding-inline: 40px;
  }
  .footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .footer__info {
    padding-top: 40px;
  }
  .footer__family {
    margin-top: 0;
    flex: none;
    padding: 48px;
    gap: 40px;
    font-size: 16px;
  }
  .footer__bottom {
    text-align: center;
    padding: 24px 16px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-inline: 24px;
  }
  .footer__top {
    gap: 24px;
  }
  .footer__info {
    padding-top: 32px;
  }
  .footer__links {
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: 14px;
  }
  .footer__family {
    padding: 16px;
    gap: 32px;
    font-size: 14px;
  }
  .footer__family img {
    height: 20px;
    max-width: 100%;
  }
  .footer__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__group strong {
    width: auto;
  }
  .footer__group > div {
    width: 100%;
    gap: 24px;
  }
}
.visual {
  position: relative;
  height: calc(100vh - 200px);
  min-height: 760px;
  overflow: hidden;
}
.visual .swiper,
.visual .swiper-wrapper,
.visual .swiper-slide {
  height: 100%;
  background-color: #F4F6F9;
}
.visual__slide {
  position: relative;
}
.visual__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.visual__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.8) 80%); 2026-07-09 그라데이션*/
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0) 0%, 
    rgba(0, 0, 0, 0) 50%, 
    rgba(0, 0, 0, 0.6) 75%, 
    rgba(0, 0, 0, 0.85) 100%
  );
}
.visual__nav {
  position: absolute;
  left: 64px;
  bottom: 40px;
  right: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  z-index: 1;
}
.visual__nav-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
.visual__nav-item {
  flex: 1 1 0;
  min-width: 0;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
}
.visual__nav-item > * {
  width: 100%;
}
.visual__nav-item.is-active .visual__nav-title::before {
  background: #1F5FD1;
}
.visual__nav-item[data-index="3"] {
  border: 2px solid #1FA76A;
}
.visual__nav-item[data-index="3"] .visual__nav-title::before {
  background: #1FA76A;
}
.visual__nav-date {
  font-size: 24px;
  font-weight: 600;
}
.visual__nav-title {
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.visual__nav-title::before {
  content: "";
  display: block;
  height: 4px;
  background: #FFFFFF;
  margin-bottom: 16px;
}
.visual__nav-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  max-height: 3.9em;
}
.visual.is-last .visual__nav-item {
  color: #111111;
}
.visual.is-last .visual__nav-title::before {
  background: #111111;
}
.visual.is-last .visual__nav-item.is-active .visual__nav-title::before {
  background: #1FA76A;
}
.visual__highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
  padding: 48px 64px;
  background: #F4F6F9;
}
.visual__highlight-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 55%;
}
.visual__highlight-eyebrow {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #168456;
}
.visual__highlight-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111111;
}
.visual__highlight-info {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 16px;
}
.visual__highlight-badge {
  font-size: 24px;
  font-weight: 600;
  color: #168456;
}
.visual__highlight-title {
  font-size: 32px;
  font-weight: 600;
  color: #111111;
}
.visual__highlight-desc {
  font-size: 24px;
  color: #111111;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  max-height: 2.6em;
}
.visual__highlight-media {
  flex: 1;
  max-width: 800px;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
}
.visual__highlight-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.board-section {
  padding: 120px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
.board-section > * {
  flex: 0 0 calc((100% - 1 * 80px) / 2);
  max-width: calc((100% - 1 * 80px) / 2);
}
.board-section + .board-section {
  background-color: #F4F6F9;
}
.board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 24px;
}
.board__header h2 {
  font-size: 42px;
}
.board__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  height: 58px;
  font-size: 24px;
}
.board__list li > span {
  font-size: 18px;
  color: #555555;
}
.board__list li a {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 1em;
}
.board__list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #111111;
}
.board__list li a:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.board__list li:not(:last-child) {
  margin-bottom: 10px;
}
.board__list li:has(.badge) a {
  padding-left: 0;
}
.board__list li:has(.badge) a:before {
  display: none;
}
.board__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  min-width: 0;
}

.event {
  background-color: #1F5FD1;
  padding: 120px 64px;
}
.event__header {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 56px;
}
.event__header h2 {
  font-size: 42px;
}
.event__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
}
.event__list > * {
  flex: 0 0 calc((100% - 3 * 48px) / 4);
  max-width: calc((100% - 3 * 48px) / 4);
}
.event__list li {
  background-color: #FFFFFF;
  min-height: 300px;
  box-shadow: 2px 6px 50px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease 0s;
}
.event__list li:hover {
  transform: translateY(-10px);
}
.event__list li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  height: 100%;
  padding: 24px;
}
.event__list li a > span {
  margin-top: auto;
  color: #555555;
}
.event__list li h3 {
  font-size: 24px;
}
.event__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.event__info {
  width: 100%;
  margin-top: 8px;
}
.event__info p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  line-height: 1.4;
}
.event__info p + p {
  margin-top: 4px;
}
.event__type {
  font-size: 16px;
  font-weight: 600;
  color: #2A2A2A;
}
.event__list li a > p {
  margin: 0;
  font-size: 16px;
  color: #555555;
  line-height: 1.4;
}

.photo,
.media {
  padding: 120px 64px;
}
.photo__header,
.media__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 56px;
}
.photo__header h2,
.media__header h2 {
  font-size: 42px;
}
.photo__list,
.media__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
}
.photo__list > *,
.media__list > * {
  flex: 0 0 calc((100% - 3 * 8px) / 4);
  max-width: calc((100% - 3 * 8px) / 4);
}
.photo__list li,
.media__list li {
  padding: 24px;
  border-radius: 24px;
  transition: all 0.3s ease 0s;
}
.photo__list li:hover h3,
.media__list li:hover h3 {
  text-decoration: underline;
  text-underline-position: under;
}
.photo__list li[data-type=highlight],
.media__list li[data-type=highlight] {
  background-color: #1FA76A;
  color: #FFFFFF;
}
.photo__list li[data-type=highlight] .material-symbols-outlined,
.media__list li[data-type=highlight] .material-symbols-outlined {
  color: #FFFFFF;
}
.photo__list li[data-type=highlight] .badge,
.media__list li[data-type=highlight] .badge {
  color: #FFFFFF;
}
.photo__list li[data-type=highlight] span,
.media__list li[data-type=highlight] span {
  color: #FFFFFF;
}
.photo__list li a,
.media__list li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  height: 100%;
}
.photo__list li a > *,
.media__list li a > * {
  width: 100%;
}
.photo__list li a > span,
.media__list li a > span {
  margin-top: auto;
  color: #555555;
}
.photo__list li h3,
.media__list li h3 {
  font-size: 24px;
  min-height: 2.6em;
}
.photo__thumb,
.media__thumb {
  height: 300px;
  margin-bottom: 8px;
}
.photo__thumb img,
.media__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.media {
  background-color: #F4F6F9;
}
.media__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
}
.media__list > * {
  flex: 0 0 calc((100% - 3 * 48px) / 4);
  max-width: calc((100% - 3 * 48px) / 4);
}
.media__list li {
  padding: 0;
}

@media (max-width: 1440px) {
  .visual {
    height: min(640px, 100vh - 180px);
  }
  .visual__nav-item {
    flex: 1 1 calc(33% - 4px);
  }
  .visual__nav-desc {
    display: none;
  }
  .visual.is-last .visual__nav-item {
    color: #FFFFFF;
  }
  .visual.is-last .visual__nav-title::before {
    background: #FFFFFF;
  }
  .visual.is-last .visual__nav-item.is-active .visual__nav-title::before {
    background: #1FA76A;
  }
  .visual__slide[data-type=highlight] {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .visual__slide[data-type=highlight] .visual__highlight {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    padding: 0;
    gap: 0;
    background-color: #F4F6F9;
  }
  .visual__slide[data-type=highlight] .visual__highlight-content {
    display: none;
  }
  .visual__slide[data-type=highlight] .visual__highlight-media {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    border-radius: 0;
  }
  .event__list {
    flex-wrap: wrap;
  }
  .event__list > li {
    flex: 0 0 calc((100% - 48px) / 2) !important;
    max-width: calc((100% - 48px) / 2) !important;
  }
  .photo__list,
  .media__list {
    flex-wrap: wrap;
  }
  .photo__list > li,
  .media__list > li {
    flex: 0 0 calc((100% - 8px) / 2) !important;
    max-width: calc((100% - 8px) / 2) !important;
  }
  .media__list {
    flex-wrap: wrap;
  }
  .media__list > li {
    flex: 0 0 calc((100% - 48px) / 2) !important;
    max-width: calc((100% - 48px) / 2) !important;
  }
}
@media (max-width: 1024px) {
  .visual {
    height: min(520px, 100vh - 160px);
    min-height: 320px;
  }
  .visual__nav {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .visual__nav-list {
    gap: 8px;
  }
  .visual__nav-item {
    flex: 1 1 calc(50% - 4px);
    padding: 8px 12px;
    gap: 8px;
  }
  .visual__nav-date {
    font-size: 20px;
  }
  .visual__nav-title {
    font-size: 20px;
  }
  .visual__nav-title::before {
    height: 3px;
    margin-bottom: 8px;
  }
  .visual__nav-desc {
    display: none;
  }
  .visual__highlight {
    gap: 32px;
    padding: 32px 40px;
    flex-direction: column;
    align-items: stretch;
  }
  .visual__highlight-heading {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .visual__highlight-info {
    margin-top: 24px;
    gap: 8px;
    padding: 8px 0;
  }
  .visual__highlight-title {
    font-size: 24px;
  }
  .visual__highlight-desc {
    font-size: 20px;
  }
  .visual__highlight-media {
    max-width: none;
    height: min(280px, 36vh);
  }
  .board-section {
    flex-direction: column;
    padding: 56px 40px;
    gap: 40px;
  }
  .board-section > * {
    flex: 1 1 auto !important;
    max-width: 100% !important;
    width: 100%;
  }
  .board__header {
    margin-bottom: 16px;
  }
  .board__header h2 {
    font-size: 32px;
  }
  .board__list li {
    font-size: 20px;
    height: auto;
    min-height: 52px;
  }
  .event {
    padding: 56px 40px;
  }
  .event__header {
    margin-bottom: 32px;
  }
  .event__header h2 {
    font-size: 32px;
  }
  .event__list li {
    min-height: 240px;
  }
  .event__list li h3 {
    font-size: 20px;
  }
  .event__list li a > span {
    font-size: 14px;
  }
  .event__info {
    margin-top: 6px;
  }
  .event__info p {
    font-size: 14px;
  }
  .event__type {
    font-size: 14px;
  }
  .event__list li a > p {
    font-size: 14px;
  }
  .photo,
  .media {
    padding: 56px 40px;
  }
  .photo__header,
  .media__header {
    margin-bottom: 32px;
  }
  .photo__header h2,
  .media__header h2 {
    font-size: 32px;
  }
  .photo__list li h3,
  .media__list li h3 {
    font-size: 20px;
    min-height: 0;
  }
  .photo__thumb,
  .media__thumb {
    height: 240px;
  }
  .photo__list li[data-type=highlight] {
    padding: 20px;
  }
  .popup {
    max-width: 90% !important;
    left: 5% !important;
    top: 112px !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .visual {
    height: min(380px, 100vh - 120px);
    min-height: 260px;
  }
  .visual__nav {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .visual__nav-item {
    padding: 8px;
    gap: 4px;
  }
  .visual__nav-date {
    font-size: 16px;
  }
  .visual__nav-title {
    font-size: 16px;
  }
  .visual__highlight {
    gap: 24px;
    padding: 24px 24px;
  }
  .visual__highlight-eyebrow {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .visual__highlight-heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .visual__highlight-info {
    margin-top: 16px;
    gap: 8px;
    padding: 0;
  }
  .visual__highlight-badge {
    font-size: 20px;
  }
  .visual__highlight-title {
    font-size: 20px;
  }
  .visual__highlight-desc {
    font-size: 16px;
  }
  .visual__highlight-media {
    height: min(200px, 32vh);
  }
  .board-section {
    padding: 48px 24px;
    gap: 32px;
  }
  .board__header h2 {
    font-size: 24px;
  }
  .board__list li {
    min-height: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 8px;
    font-size: 16px;
  }
  .board__list li > span {
    width: 100%;
    text-align: right;
  }
  .board__list li > span {
    font-size: 16px;
  }
  .event {
    padding: 48px 24px;
  }
  .event__header {
    margin-bottom: 24px;
  }
  .event__header h2 {
    font-size: 24px;
  }
  .event__list {
    gap: 24px;
  }
  .event__list > li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .event__list li {
    min-height: 200px;
  }
  .event__list li a {
    padding: 16px;
    gap: 8px;
  }
  .event__list li a > span {
    font-size: 13px;
  }
  .event__list li h3 {
    font-size: 16px;
  }
  .event__info {
    margin-top: 4px;
  }
  .event__info p {
    font-size: 13px;
  }
  .event__type {
    font-size: 13px;
  }
  .event__list li a > p {
    font-size: 13px;
  }
  .photo,
  .media {
    padding: 48px 24px;
  }
  .photo__header,
  .media__header {
    margin-bottom: 24px;
  }
  .photo__header h2,
  .media__header h2 {
    font-size: 24px;
  }
  .photo__list,
  .media__list {
    gap: 40px;
  }
  .photo__list > li,
  .media__list > li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .photo__list li a > span,
  .media__list li a > span {
    font-size: 14px;
  }
  .photo__list li h3,
  .media__list li h3 {
    font-size: 16px;
  }
  .photo__thumb,
  .media__thumb {
    height: 180px;
  }
  .photo__list li {
    padding: 0;
  }
  .photo__list li[data-type=highlight] {
    padding: 16px;
  }
  .media__list > li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

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