@charset "utf-8";

/* Gmarket Sans */
@font-face {
  font-family: 'GMS_Light';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'GMS_Medium';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'GMS_Bold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

.font-gms-light {
  font-family: 'GMS_Light', sans-serif;
  font-weight: 300;
}
.font-gms-medium {
  font-family: 'GMS_Medium', sans-serif;
  font-weight: 500;
}
.font-gms-bold {
  font-family: 'GMS_Bold', sans-serif;
  font-weight: 700;
}

/* color */
:root {
  --black: #000;
  --black2: #1d1d1d;
  --white: #ffffff;
  --yellow: #eeea38;
  --yellow2: #ffd600;
  --yellow3: #fff328;
  --red: #e30d16;
  --sky: #deecff;
}

.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
 
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid #f5f5f3;
  padding-bottom: 8rem;
}

.fcred {
  color: var(--red);
}
.fcye {
  color: var(--yellow2);
}

/* align */
.col {
  display: flex;
  flex-direction: column;
}
.col-cen {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cen-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cen-row2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.row {
  display: flex;
  flex-direction: row;
}

.sb {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

/* gap */
.gap10 {
  gap: 1rem;
}
.gap20 {
  gap: 2rem;
}
.gap40 {
  gap: 4rem;
}

.gap60 {
  gap: 6rem;
}

/* line-height */
.lh14 {
  line-height: 140%;
}

/* text */
.fwbold {
  font-weight: bold;
}

.ls6 {
  letter-spacing: -0.4px;
}

/* margin */
.mb15 {
  margin-bottom: 1.5rem;
}
.mt20 {
  margin-top: 2rem;
}
.mt40 {
  margin-top: 4rem;
}
.mb20 {
  margin-bottom: 2rem;
}
.mb40 {
  margin-bottom: 4rem;
}
.mb80 {
  margin-bottom: 8rem;
}

/* width */
.w100 {
  width: 100%;
}

.hidden {
  display: none !important;
}
