
:root {
  --scale: 1;        
  --vw: 1vw;         
}

/* 2) 모바일에서만 스케일을 2로 */
@media (max-width: 575px) {
  :root { --scale: 2; }
}


* { margin: 0; padding: 0; font-family: "Noto Sans KR", sans-serif; flex-wrap: wrap; box-sizing: border-box; }
body { background: #fff; }
a { text-decoration: none; }
img { width: 100%; display: block; }

.wrap{
  align-items: center;
  justify-content: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: auto;
  width: calc(50 * var(--vw) * var(--scale));
}

.btn_grid_box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: calc(1.25 * var(--vw) * var(--scale));
  background: #EDEFF1;
  width: 100%;
  padding: calc(1.25 * var(--vw) * var(--scale));
}

.btn_grid_box02{
  display: flex;
  padding: calc(1.5 * var(--vw) * var(--scale)) calc(2.5 * var(--vw) * var(--scale));
  justify-content: space-between;
  width: 100%;
}
.btn_grid_box02 img{ width: calc(18.25 * var(--vw) * var(--scale)); }

.btn {
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: calc(1 * var(--vw) * var(--scale));
  text-align: center;
  font-size: calc(2.13 * var(--vw) * var(--scale));
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.375px; /* px는 그대로 둬도 OK */
  padding: calc(1 * var(--vw) * var(--scale)) 0;
  min-height: calc(7.45 * var(--vw) * var(--scale));
  cursor: pointer;
}

.btn_txt {
  display: flex;
  align-content: center;
  margin-right: calc(1.3 * var(--vw) * var(--scale));
  justify-content: center;
  cursor: pointer;
}

.bg_w{ color: #222; background: #fff; }
.bg_g{ color: #fff; background: #00948E; }

.big { 
  width: 84%;
  line-height: 140%;
  font-weight: 500;
  flex-direction: column;
  padding: calc(1.5 * var(--vw) * var(--scale));
}

.btn_share {
  position: absolute;
  bottom: calc(2.4 * var(--vw) * var(--scale));
  right:  calc(2.4 * var(--vw) * var(--scale));
  width: 36%;
}

.btn_scrTop { width: 50%; margin: calc(3.6 * var(--vw) * var(--scale)) 0; cursor: pointer; }

.pop_sns{
  display: none;
  max-width: 45%;
  min-width: 240px;
  position: absolute;
  bottom: calc(11.5 * var(--vw) * var(--scale));
  right:  calc(4.8 * var(--vw) * var(--scale));
  background: #fff;
  border-radius: calc(1 * var(--vw) * var(--scale));
  padding: 15px;
  text-align: center;
  min-height: 160px;
  white-space: nowrap;
}
.open { display: block; }
.hidden { display: none; }

.icon_close{ 
  position: absolute;
  top: 6px;
  right: 15px;
  color: #666;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px; /* 텍스트는 필요 시 clamp로 보정 가능 */
}

.sns_items{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  column-gap: calc(1 * var(--vw) * var(--scale));
  align-items: start;
  padding: 30px 0 0;
}

.sns_item {
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 33.3%;
  padding: 0 calc(0.5 * var(--vw) * var(--scale));
}
.sns_nm{ height: 48px; white-space: nowrap; }

.sns_item img{
  text-align: center;
  max-width: calc(2.5 * var(--vw) * var(--scale));
  min-width: 50px;
  margin: auto;
  margin-bottom: calc(0.5 * var(--vw) * var(--scale));
}