/* 공통 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 지마켓 폰트 */
@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* 스포카한산스 폰트 */
@import url('//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSans-kr.css');

.container {
  max-width: 410px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 100px;
}


h1 {
  font-size: 36px;
  color: #1a202c;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.4;
}




/* 이벤트 안내 */
.notice_box {
  padding: 0 24px 24px;
  width: 303px;
  height: 56px;
  overflow: hidden;
  border-radius: 8px;
  background: #3D3D3D;
  color: #fff;
  font-family: 'Spoqa Han Sans Neo';
}

.notice_box.active{
    min-height: 1086px;
    height: auto;
}


.notice_tit{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  height: 56px;
}

.notice_tit:hover{
  cursor: pointer;
}

.notice_tit span{
   display: flex;
}
.notice_box.active .notice_arrow{
  transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.notice_arrow{
  transition: transform 0.3s ease;
}


.notice_detail{
  text-align: start;
  margin-top: 10px;
  font-size: 14px;
  color:#BABCC0;
}


.notice_detail_list {
  text-align: start;
  font-size: 14px;
  color:#BABCC0;
}

.notice_detail_list li{
  margin-bottom: 8px;
  padding-left: 15px;
  list-style: none;
  position: relative;
  word-break: keep-all;
}


.notice_detail_list li::before{
  content: "･";
  left: 0;
  position: absolute;
  top: 0;
}


.notice_detail_list li.focus::before{
  content: "※";
  left: -2px;
  position: absolute;
  top: 0;
}


.notice_detail span{
  display: block;
    font-weight: 500;
    margin: 10px 0;
    color: #fff;
}

.notice_box .bold_txt{
  color:#BABCC0;
   font-weight: 600;
    margin: 0px 0;
}

.compliance{
  color: #5E5D5E;
  text-align: center;
  font-family: Pretendard;
  font-size: 12px;
  margin: 30px;
}



@media (max-width: 768px) {
  .container {
     padding: 0px 0px;
  }

  h1 {
    font-size: 28px;
  }

}
