@charset "utf-8";

/* =========================================================
   이웃사랑복지재단 — demo main page
   ========================================================= */

:root{
  --c-red:#ea002c;
  --c-red-dark:#c40025;
  --c-orange:#f5850f;
  --ink:#191919;
  --ink-2:#333;
  --gray:#6b6b6b;
  --gray-2:#8e8e8e;
  --line:#e6e6e6;
  --line-2:#efefef;
  --soft:#f9f8f9;
  --inner:1344px;
  --header-h:110px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:"Pretendard Variable",Pretendard,-apple-system,BlinkMacSystemFont,system-ui,"Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic",sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  word-break:keep-all;
  overflow-x:hidden;
}
img{max-width:100%;display:block;border:0;}
ul,ol{list-style:none;}
a{color:inherit;text-decoration:none;}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;}
em{font-style:normal;}

.inner{width:100%;max-width:var(--inner);margin:0 auto;padding:0 24px;}
.color-primary{color:var(--c-red);}
.pc{display:inline;}

/* ---- shared icons ---- */
.ico-chev{
  width:16px;height:16px;flex:0 0 16px;display:inline-block;
  background:no-repeat center/16px 16px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}
.ico-clock{
  width:14px;height:14px;flex:0 0 14px;display:inline-block;margin-right:7px;
  background:no-repeat center/14px 14px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a2a2a2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5.3l3.4 2'/%3E%3C/svg%3E");
}

/* ---- scroll reveal ---- */
.sr{opacity:0;transform:translateY(34px);transition:opacity 1.1s cubic-bezier(.4,0,.2,1),transform 1.1s cubic-bezier(.4,0,.2,1);}
.sr.is-in{opacity:1;transform:none;}

/* =========================================================
   HEADER
   ========================================================= */
.header{
  position:fixed;top:0;left:0;width:100%;z-index:90;
  transition:background .3s,box-shadow .3s,border-color .3s;
  border-bottom:1px solid transparent;
}
.header.is-scrolled{background:#fff;border-bottom-color:#eee;box-shadow:0 2px 16px rgba(0,0,0,.05);}
.header-inner{display:flex;align-items:center;height:var(--header-h);}

.logo a{display:flex;align-items:center;gap:10px;}
.logo-mark{display:inline-flex;align-items:center;}
.logo-text{
  font-size:25px;font-weight:800;letter-spacing:-.045em;line-height:1;
  background:linear-gradient(90deg,var(--c-red) 0%,var(--c-red) 34%,var(--c-orange) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  padding-bottom:2px;
}

.gnb{margin-left:auto;}
.gnb .depth1{display:flex;gap:56px;}
.gnb .depth1>li{position:relative;}
.gnb .depth1>li>a{
  display:block;padding:0 6px;height:var(--header-h);line-height:var(--header-h);
  font-size:17px;font-weight:600;color:var(--ink);letter-spacing:-.03em;position:relative;
}
.gnb .depth1>li>a::after{
  content:"";position:absolute;left:6px;right:6px;bottom:32px;height:2px;background:var(--c-red);
  transform:scaleX(0);transform-origin:left;transition:transform .3s;
}
.gnb .depth1>li:hover>a::after{transform:scaleX(1);}
.gnb .depth2{
  position:absolute;top:calc(var(--header-h) - 16px);left:50%;transform:translateX(-50%) translateY(10px);
  min-width:184px;background:#fff;border:1px solid #ededed;border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,.09);padding:14px 0;
  opacity:0;visibility:hidden;transition:.28s;
}
.gnb .depth1>li:hover .depth2{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.gnb .depth2 a{display:block;padding:9px 24px;font-size:15px;color:#555;white-space:nowrap;transition:color .2s;}
.gnb .depth2 a:hover{color:var(--c-red);font-weight:600;}

.hamburger{
  display:none;margin-left:auto;width:46px;height:46px;border-radius:50%;
  border:1px solid rgba(0,0,0,.18);background:rgba(255,255,255,.55);
  flex-direction:column;align-items:center;justify-content:center;gap:5px;
}
.hamburger span{display:block;width:18px;height:1.6px;background:#2a2a2a;border-radius:2px;transition:.3s;}

/* mobile menu */
.mobile-menu{
  position:fixed;top:0;right:0;width:320px;max-width:86vw;height:100%;
  background:#fff;z-index:120;transform:translateX(102%);transition:transform .38s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
}
.mobile-menu.is-open{transform:none;box-shadow:-10px 0 40px rgba(0,0,0,.16);}
.mobile-menu-head{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid #eee;}
.mm-logo{display:flex;align-items:center;gap:8px;}
.mm-close{width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:#333;}
.mobile-nav{overflow-y:auto;padding:8px 0 40px;}
.mm-toggle{
  display:flex;align-items:center;justify-content:space-between;width:100%;
  padding:16px 22px;font-size:17px;font-weight:700;text-align:left;
}
.mm-toggle::after{
  content:"";width:10px;height:10px;border-right:2px solid #bbb;border-bottom:2px solid #bbb;
  transform:rotate(45deg) translate(-2px,-2px);transition:transform .25s;
}
.mm-toggle.is-open::after{transform:rotate(-135deg) translate(-3px,-3px);}
.mobile-nav>ul>li>ul{display:none;background:var(--soft);padding:6px 0;}
.mobile-nav>ul>li>ul a{display:block;padding:11px 30px;font-size:15px;color:#555;}
.dim{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;visibility:hidden;transition:.3s;z-index:110;}
.dim.is-on{opacity:1;visibility:visible;}

/* =========================================================
   HERO
   ========================================================= */
.hero{position:relative;height:100vh;min-height:560px;max-height:1000px;overflow:hidden;background:#dfe6e2;}
.hero-slides{position:absolute;inset:0;}
.hero-slide{
  position:absolute;inset:0;background:no-repeat center center/cover;
  opacity:0;transition:opacity 1s ease;
  display:flex;align-items:flex-start;
}
.hero-slide::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(102deg,rgba(255,255,255,0) 38%,rgba(255,255,255,.38) 72%,rgba(255,255,255,.5) 100%);
}
.hero-slide.is-active{opacity:1;z-index:2;}
.hero-slide .inner{width:100%;position:relative;z-index:2;}
.hero-text{padding-top:270px;margin-left:57%;}
.hero-title{
  font-size:58px;font-weight:700;line-height:1.55;letter-spacing:-.045em;color:#1c1c1c;
  text-shadow:0 2px 24px rgba(255,255,255,.35);
}
.hero-title strong{font-weight:800;}
.hero-sub{margin-top:18px;font-size:24px;font-weight:600;letter-spacing:-.02em;color:#2a2a2a;}
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-sub{animation:heroUp 1s cubic-bezier(.2,.7,.3,1) both;}
@keyframes heroUp{from{opacity:0;transform:translateY(26px);}to{opacity:1;transform:none;}}

.hero-ctrl-wrap{position:absolute;left:0;right:0;bottom:250px;z-index:5;pointer-events:none;}
.hero-ctrl{margin-left:57%;display:flex;align-items:center;gap:6px;pointer-events:auto;}
.hc-play{
  width:44px;height:44px;border-radius:50%;border:1.4px solid rgba(30,30,30,.45);
  display:flex;align-items:center;justify-content:center;color:#1f1f1f;margin-right:24px;transition:.25s;
}
.hc-play:hover{background:rgba(255,255,255,.5);border-color:#1f1f1f;}
.hc-play .ic-play{display:none;}
.hc-play.is-paused .ic-play{display:block;}
.hc-play.is-paused .ic-pause{display:none;}
.hc-arrow{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:#1f1f1f;opacity:.85;transition:.25s;}
.hc-arrow:hover{opacity:1;transform:scale(1.12);}
.hc-count{font-size:17px;font-weight:700;color:#1f1f1f;letter-spacing:.02em;min-width:52px;text-align:center;}
.hc-count em{color:rgba(31,31,31,.45);margin:0 2px;font-weight:500;}

/* floating donate */
.fab{
  position:fixed;right:64px;bottom:104px;z-index:80;
  width:100px;height:100px;border-radius:50%;
  background:linear-gradient(145deg,#f4641d 0%,#ea1f30 55%,#e30f2c 100%);
  box-shadow:0 10px 26px rgba(226,25,45,.34);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  color:#fff;transition:transform .3s,box-shadow .25s,opacity .3s,visibility .3s;
}
.fab:hover{transform:translateY(-4px) scale(1.04);box-shadow:0 16px 32px rgba(226,25,45,.42);}
.fab.is-hidden{opacity:0;visibility:hidden;transform:translateY(14px) scale(.9);}
.fab-txt{font-size:14px;font-weight:700;letter-spacing:-.03em;}

/* =========================================================
   SECTION COMMON
   ========================================================= */
.sec{position:relative;}
.sec-title{font-size:44px;font-weight:800;letter-spacing:-.05em;line-height:1.25;color:#111;}
.head-row{display:flex;align-items:center;justify-content:space-between;gap:20px;}
.btn-more{
  display:inline-flex;align-items:center;justify-content:space-between;gap:14px;
  width:172px;height:56px;padding:0 26px;border:1px solid var(--line);border-radius:999px;
  background:#fff;font-size:15px;font-weight:500;color:var(--c-red);transition:.25s;
}
.btn-more:hover{border-color:var(--c-red);box-shadow:0 6px 18px rgba(234,0,44,.12);}
.btn-more .ico-chev{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea002c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");}

/* =========================================================
   BUSINESS
   ========================================================= */
.sec-business{padding:170px 0 0;overflow:hidden;}
.deco-circle{
  position:absolute;right:-230px;top:330px;width:620px;height:620px;border-radius:50%;
  border:96px solid #fdecef;pointer-events:none;z-index:0;
}
.sec-business .inner{position:relative;z-index:1;}
.sec-head{display:flex;align-items:flex-start;justify-content:space-between;gap:40px;}

.tabs-scroll{overflow-x:auto;-ms-overflow-style:none;scrollbar-width:none;padding-top:4px;}
.tabs-scroll::-webkit-scrollbar{display:none;}
.tabs{display:flex;gap:24px;}
.tab{
  width:112px;padding:6px 4px;display:flex;flex-direction:column;align-items:center;gap:10px;
  color:#c9c9c9;transition:color .28s;
}
.tab-ico{display:block;width:52px;height:52px;}
.tab-ico svg{width:100%;height:100%;}
.tab-txt{font-size:14px;font-weight:500;color:#9d9d9d;letter-spacing:-.04em;white-space:nowrap;transition:.28s;}
.tab:hover{color:#f28ba0;}
.tab:hover .tab-txt{color:#7a7a7a;}
.tab.is-active{color:var(--c-red);}
.tab.is-active .tab-txt{color:var(--c-red);font-weight:700;}

.biz-panels{position:relative;margin-top:133px;}
.biz-panel{
  display:flex;align-items:flex-start;gap:80px;
  position:absolute;top:0;left:0;width:100%;
  opacity:0;visibility:hidden;transition:opacity .6s ease;
}
.biz-panel.is-active{position:relative;opacity:1;visibility:visible;}
.biz-photo{flex:0 0 671px;max-width:671px;border-radius:8px;overflow:hidden;background:#f0f0f0;}
.biz-photo img{width:100%;height:513px;object-fit:cover;}
.biz-body{flex:1;min-width:0;padding-top:58px;}
.biz-title{font-size:34px;font-weight:700;letter-spacing:-.05em;color:#111;}
.biz-desc{margin-top:22px;font-size:16px;line-height:1.85;color:var(--gray);letter-spacing:-.025em;}
.biz-btns{margin-top:86px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px 22px;}
.btn-arrow{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  min-width:0;height:56px;padding:0 22px 0 28px;
  border:1px solid #ececec;border-radius:999px;background:#fff;
  font-size:15px;color:#333;letter-spacing:-.03em;
  box-shadow:0 2px 10px rgba(0,0,0,.03);transition:.25s;
}
.btn-arrow:hover{border-color:var(--c-red);color:var(--c-red);box-shadow:0 8px 20px rgba(234,0,44,.12);}
.btn-arrow:hover .ico-chev{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea002c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");}

/* =========================================================
   NEWS
   ========================================================= */
.sec-news{padding:170px 0 180px;overflow:hidden;}
.news-slider{margin-top:55px;position:relative;}
.news-slider-view{overflow:hidden;}
.news-track{
  display:flex;gap:38px;
  transition:transform .55s cubic-bezier(.4,0,.2,1);
}
.news-card{flex:0 0 calc((100% - 76px) / 3);min-width:0;}
.news-thumb{
  display:block;width:100%;aspect-ratio:406/408;border-radius:6px;overflow:hidden;background:#f1f1f1;
}
.news-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.news-card a:hover .news-thumb img{transform:scale(1.05);}
.news-title{
  margin-top:24px;font-size:17px;font-weight:600;line-height:1.5;letter-spacing:-.035em;color:#1c1c1c;
  display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;
}
.news-card a:hover .news-title{color:var(--c-red);}
.news-date{margin-top:19px;display:flex;align-items:center;font-size:14px;color:#9a9a9a;letter-spacing:.01em;}
.news-dots{display:flex;justify-content:center;gap:9px;margin-top:52px;}
.news-dots button{width:9px;height:9px;border-radius:50%;background:#dadada;transition:.25s;}
.news-dots button.is-active{background:var(--c-red);width:26px;border-radius:99px;}

/* =========================================================
   NOTICE
   ========================================================= */
.sec-notice{padding:170px 0 180px;background:linear-gradient(#f9f8f9,#fff);}
.notice-list{margin-top:66px;border-top:2px solid #222;}
.notice-list li{border-bottom:1px solid #e7e7e7;}
.notice-list a{display:flex;align-items:center;padding:40px 0;transition:background .25s;}
.notice-list a:hover{background:rgba(255,255,255,.75);}
.nt-num{
  flex:0 0 200px;text-align:center;font-size:30px;font-weight:500;color:#c2c2c2;letter-spacing:.02em;line-height:1;
}
.nt-body{flex:1;min-width:0;}
.nt-title{
  display:block;font-size:20px;font-weight:600;letter-spacing:-.04em;color:#151515;line-height:1.45;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.notice-list a:hover .nt-title{color:var(--c-red);}
.nt-date{display:flex;align-items:center;margin-top:16px;font-size:14px;color:#9a9a9a;}

/* =========================================================
   SPONSOR
   ========================================================= */
.sec-sponsor{padding:170px 0 180px;}
.sponsor-inner{display:flex;gap:60px;align-items:flex-start;}
.sponsor-lead{flex:0 0 440px;padding-top:12px;}
.sponsor-title{font-size:48px;font-weight:800;letter-spacing:-.05em;line-height:1.35;color:#111;}
.sponsor-title strong{color:var(--c-red);font-weight:800;}
.sponsor-desc{margin-top:36px;font-size:16px;line-height:2;color:var(--gray);letter-spacing:-.03em;}

.sponsor-grid{flex:1;min-width:0;display:flex;gap:50px;}
.sp-col{flex:1;min-width:0;display:flex;flex-direction:column;gap:48px;}
.sp-col--offset{padding-top:140px;}
.sp-card{
  position:relative;min-height:430px;padding:48px 42px 48px 48px;
  border:1px solid #ededed;border-radius:10px;background:#fff;overflow:hidden;
  transition:box-shadow .3s,transform .3s,border-color .3s;
}
.sp-card:hover{box-shadow:0 18px 40px rgba(0,0,0,.08);transform:translateY(-6px);border-color:#e2e2e2;}
.sp-title{font-size:24px;font-weight:700;letter-spacing:-.05em;color:#111;position:relative;z-index:2;}
.sp-text{margin-top:30px;font-size:15px;line-height:1.95;color:var(--gray);letter-spacing:-.03em;position:relative;z-index:2;}
.sp-link{
  position:absolute;left:48px;bottom:48px;z-index:2;
  display:inline-flex;align-items:center;gap:9px;font-size:15px;color:var(--c-red);font-weight:500;
}
.sp-link .ico-chev{width:13px;height:13px;flex:0 0 13px;background-size:13px 13px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea002c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");}
.sp-link:hover{text-decoration:underline;}
.sp-art{position:absolute;right:-26px;bottom:-30px;width:222px;height:200px;color:#efefef;z-index:1;pointer-events:none;}
.sp-art svg{width:100%;height:100%;}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{background:#252726;color:#cfcfcf;padding:50px 0 34px;}
.footer-primary{display:flex;justify-content:space-between;gap:40px;padding-bottom:36px;}
.footer-logo{display:flex;align-items:center;gap:10px;font-size:21px;font-weight:700;color:#fff;letter-spacing:-.045em;}
.footer-info{display:flex;flex-wrap:wrap;align-items:center;margin-top:20px;font-size:14px;color:#b4b4b4;letter-spacing:-.02em;}
.footer-info:first-of-type{margin-top:30px;}
.footer-info li{position:relative;padding-right:19px;margin-right:19px;line-height:1.9;}
.footer-info li::after{content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:11px;background:#4a4c4b;}
.footer-info li:last-child{padding-right:0;margin-right:0;}
.footer-info li:last-child::after{display:none;}
.footer-info b{color:#fff;font-weight:700;margin-right:7px;}

.footer-right{display:flex;flex-direction:column;align-items:flex-end;gap:22px;}
.sns{display:flex;gap:10px;}
.sns a{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:transform .25s;}
.sns a:hover{transform:translateY(-3px);}
.sns-ig{background:linear-gradient(45deg,#f9ce34,#ee2a7b 50%,#6228d7);}
.sns-yt{background:#ff0000;}
.family-site{position:relative;width:330px;}
.family-site select{
  width:100%;height:54px;padding:0 44px 0 20px;border:1px solid #4a4c4b;border-radius:4px;
  background:transparent;color:#cfcfcf;font-size:14px;letter-spacing:.01em;
  appearance:none;-webkit-appearance:none;cursor:pointer;
}
.family-site select option{color:#222;}
.ico-caret{
  position:absolute;right:18px;top:50%;width:9px;height:9px;pointer-events:none;
  border-right:1.4px solid #9a9c9b;border-bottom:1.4px solid #9a9c9b;transform:translateY(-70%) rotate(45deg);
}

.footer-secondary{
  display:flex;align-items:flex-start;justify-content:space-between;gap:24px;
  border-top:1px solid #3a3c3b;padding-top:28px;
}
.footer-policy{display:flex;align-items:center;}
.footer-policy li{position:relative;padding-right:14px;margin-right:14px;}
.footer-policy li::after{content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:11px;background:#4a4c4b;}
.footer-policy li:last-child::after{display:none;}
.footer-policy a{font-size:14px;font-weight:700;color:#fff;letter-spacing:-.03em;}
.footer-policy a:hover{text-decoration:underline;}
.footer-copy{text-align:right;}
.footer-copy p{font-size:14px;color:#9a9c9b;letter-spacing:-.01em;}
.demo-note{margin-top:7px;font-size:11px !important;color:#6d6f6e !important;}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1279px){
  :root{--header-h:88px;}
  .gnb .depth1{gap:34px;}
  .gnb .depth1>li>a{font-size:16px;}
  .hero-text{margin-left:44%;padding-top:210px;}
  .hero-title{font-size:46px;}
  .hero-ctrl{margin-left:44%;}
  .hero-ctrl-wrap{bottom:180px;}
  .sec-title{font-size:38px;}
  .sec-business{padding:120px 0 0;}
  .biz-panels{margin-top:90px;}
  .biz-panel{gap:44px;}
  .biz-photo{flex:0 0 46%;max-width:46%;}
  .biz-photo img{height:420px;}
  .biz-body{padding-top:20px;}
  .biz-title{font-size:28px;}
  .biz-btns{margin-top:48px;gap:14px;}
  .btn-arrow{height:52px;}
  .sec-news{padding:120px 0 130px;}
  .sec-notice{padding:120px 0 120px;}
  .sec-sponsor{padding:120px 0 130px;}
  .sponsor-inner{flex-direction:column;gap:56px;}
  .sponsor-lead{flex:none;width:100%;}
  .sponsor-grid{width:100%;gap:32px;}
  .sp-col{gap:32px;}
  .sp-col--offset{padding-top:0;}
  .sp-card{min-height:360px;padding:38px 34px;}
  .sp-link{left:38px;bottom:38px;}
  .deco-circle{width:460px;height:460px;border-width:70px;right:-200px;}
  .fab{right:32px;bottom:32px;width:88px;height:88px;}
  .family-site{width:260px;}
}

@media (max-width:1023px){
  .gnb{display:none;}
  .hamburger{display:flex;}
  .hero-text{margin-left:0;padding-top:200px;}
  .hero-title{font-size:38px;}
  .hero-sub{font-size:20px;}
  .hero-ctrl{margin-left:0;}
  .hero-ctrl-wrap{bottom:90px;}
  .sec-head{flex-direction:column;gap:34px;}
  .tabs-scroll{width:100%;margin:0 -24px;padding:4px 24px;}
  .tabs{gap:8px;}
  .biz-panel{flex-direction:column;gap:30px;}
  .biz-photo{flex:none;max-width:100%;width:100%;order:2;}
  .biz-body{order:1;}
  .biz-photo img{height:auto;aspect-ratio:671/513;}
  .biz-body{padding-top:0;}
  .news-card{flex:0 0 calc((100% - 30px) / 2);}
  .news-track{gap:30px;}
  .nt-num{flex:0 0 110px;font-size:24px;}
  .footer-primary{flex-direction:column;}
  .footer-right{align-items:flex-start;}
  .family-site{width:100%;max-width:330px;}
}

@media (max-width:767px){
  :root{--header-h:66px;}
  .inner{padding:0 20px;}
  .pc{display:none;}
  .logo-text{font-size:20px;}
  .logo-mark svg{width:29px;height:20px;}
  .hamburger{width:42px;height:42px;}

  .hero{height:100vh;min-height:540px;}
  .hero-text{padding-top:30vh;}
  .hero-title{font-size:27px;line-height:1.45;}
  .hero-sub{font-size:16px;margin-top:12px;}
  .hero-ctrl-wrap{bottom:56px;}
  .hc-play{width:40px;height:40px;margin-right:14px;}
  .hc-arrow{display:none;}
  .hc-count{font-size:15px;min-width:auto;}
  .fab{right:16px;bottom:22px;width:78px;height:78px;gap:3px;}
  .fab-mark svg{width:28px;height:19px;}
  .fab-txt{font-size:12px;}

  .sec-title{font-size:27px;}
  .btn-more{width:120px;height:44px;padding:0 18px;font-size:13px;gap:8px;}

  .sec-business{padding:70px 0 0;}
  .deco-circle{width:280px;height:280px;border-width:48px;right:-140px;top:200px;}
  .sec-head{gap:24px;}
  .tabs{gap:2px;}
  .tab{width:82px;gap:8px;}
  .tab-ico{width:40px;height:40px;}
  .tab-txt{font-size:12px;}
  .biz-panels{margin-top:40px;}
  .biz-title{font-size:23px;}
  .biz-desc{margin-top:14px;font-size:15px;line-height:1.75;}
  .biz-btns{margin-top:28px;gap:10px;grid-template-columns:minmax(0,1fr);}
  .btn-arrow{height:50px;padding:0 16px 0 20px;font-size:14px;}

  .sec-news{padding:70px 0 70px;}
  .news-slider{margin-top:34px;}
  .news-track{gap:16px;}
  .news-card{flex:0 0 76%;}
  .news-title{margin-top:16px;font-size:16px;}
  .news-date{margin-top:12px;font-size:13px;}
  .news-dots{margin-top:30px;}

  .sec-notice{padding:70px 0 70px;}
  .notice-list{margin-top:34px;}
  .notice-list a{padding:22px 0;align-items:flex-start;}
  .nt-num{flex:0 0 44px;text-align:left;font-size:18px;padding-top:3px;}
  .nt-title{font-size:16px;white-space:normal;
    display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;}
  .nt-date{margin-top:10px;font-size:13px;}

  .sec-sponsor{padding:70px 0 80px;}
  .sponsor-inner{gap:38px;}
  .sponsor-title{font-size:29px;}
  .sponsor-desc{margin-top:22px;font-size:15px;line-height:1.85;}
  .sponsor-grid{flex-direction:column;gap:20px;}
  .sp-col{gap:20px;}
  .sp-card{min-height:0;padding:32px 26px 78px;}
  .sp-title{font-size:21px;}
  .sp-text{margin-top:18px;font-size:14px;}
  .sp-link{left:26px;bottom:30px;font-size:14px;}
  .sp-art{width:150px;height:135px;right:-18px;bottom:-16px;}

  .footer{padding:40px 0 30px;}
  .footer-primary{gap:26px;padding-bottom:26px;}
  .footer-logo{font-size:18px;}
  .footer-info{font-size:13px;margin-top:14px;}
  .footer-info:first-of-type{margin-top:20px;}
  .footer-info li{padding-right:11px;margin-right:11px;}
  .footer-secondary{flex-direction:column;align-items:flex-start;gap:16px;padding-top:22px;}
  .footer-copy{text-align:left;}
  .footer-copy p{font-size:12px;}
}
