body {
  font-family: "Mulish", "Zen Kaku Gothic New", sans-serif;
}

.mb-24{
  margin-bottom: 1.5rem;
}

.padding-left{
  padding-left: 1rem;
}

#bg {
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
}

#content {
  z-index: 1;
  background-color: #f5f5f5;
  width: 100%;
  max-width: 500px;
}

.footer_area {
  background-color: #000000;
}

#kv {
  height: 240px;
  position: relative;
  overflow: hidden;
}

#kv .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 184px;
  height: 64px;
  background-color: #ffffff;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 0px 0px 24px 0px;
}

#kv .title {
  writing-mode: vertical-rl;
  font-weight: 700;
  font-size: 56px;
  line-height: 100%;
  position: absolute;
  color: #ffffff;
  margin-top: 16px;
  top: 0;
  right: 0;
}

#news {
  background-color: #ffffff;
  border-radius: 56px 0px;
  padding: 48px 24px;
  margin-top: -56px;
  margin-bottom: 40px;
  position: relative;
}

#news .content .title {
  margin-bottom: 40px;
}

#news .content .title .dates {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
    gap: 8px;
}

#news .content .title .dates .date {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #888888;
}

#news .content .title .dates .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  line-height: 13px;
  color: #888888;
  height: 20px;
  border: 1px solid #888888;
  border-radius: 10px;
  padding: 0 4px;
  margin-left: 8px;
}

#news .content .title h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 150%;
  color: #000000;
}

#news .content .detail .image img {
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
}

#news .content .detail p {
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  margin-bottom: 24px;
}

#news .content .detail a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  margin-bottom: 24px;
  text-decoration: underline;
  cursor: pointer;
}

#news .content .detail h2 {
  padding: 24px 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 175%;
}

#articles {
  display: flex;
  padding: 16px 24px;
  gap: 16px;
  margin-bottom: 32px;
}

#articles .item {
  width: 50%;
}

#articles .item .arrow {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  padding: 16px 0;
}

#articles .next .arrow {
  justify-content: end;
}

#articles .item .arrow .icon {
  background-color: #000000;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#articles .next .arrow .icon {
  margin-left: 8px;
}

#articles .prev .arrow .icon {
  margin-right: 8px;
}

#articles .item .card .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 175%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
}

#articles .item .card img {
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 8px;
}

#articles .item .card .dates .date {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #888888;
  margin-bottom: 8px;
}

#articles .item .card .dates .tag {
  font-weight: 700;
  font-size: 10px;
  line-height: 13px;
  color: #888888;
  border-radius: 10px;
  height: 20px;
  border: 1px solid #888888;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

#back {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

#back .button {
  display: flex;
  background-color: #000000;
  width: 208px;
  padding: 16px 32px 16px 16px;
  height: 64px;
  border-radius: 32px;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
  justify-content: space-between;
}

#back .button .icon {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

#toast {
  visibility: hidden;
  z-index: 2;
  position: fixed;
  top: 24px;
  left: calc(50% - 112px);
  width: 224px;
  padding: 16px 24px;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.2s, fadeout 0.2s 3.5s;
  animation: fadein 0.2s, fadeout 0.2s 3.5s;
}
.region-labels{
  margin: 0;
}
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 24px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 24px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 24px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 24px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
