 body {
   margin: 0;
   font-family: "Noto Sans KR", sans-serif;
   overflow-x: hidden;
 }

 a,
 button {
   text-decoration: none;
   -webkit-tap-highlight-color: transparent;
   -webkit-touch-callout: none;
   user-select: none;
   color: #000;
 }

 header {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: space-between;
   transition: background-color 0.3s ease;
   background-color: white;
 }

 .header-left,
 .header-right {
   flex: 1;
   display: flex;
   align-items: center;
 }

 header.scrolled {
   background-color: white;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }

 .logo {
   flex: 0;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .logo img {
   width: 240px;
   height: auto;
 }

 .menu-btn {
   padding: 1rem 0 1rem 2rem;
   font-size: 24px;
   cursor: pointer;
   background: none;
   border: none;
   z-index: 1100;
   color: #000;
 }

 .side-menu {
   position: fixed;
   top: 0;
   left: 0;
   transform: translateX(-100%);
   transition: transform 0.3s ease;
   width: 300px;
   height: 100vh;
   background: #fff;
   box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
   z-index: 1050;
   overflow: hidden;
 }

 .side-menu.active {
   transform: translateX(0);
 }


 .menu-header {
   margin-bottom: 2rem;
 }

 .close-btn {
   background: none;
   border: none;
   font-size: 14px;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: #000;
   cursor: pointer;
   padding: 1rem;
 }

 .menu-list {
   list-style: none;
   padding: 1rem;
   margin: 0;
 }

 .menu-list li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1.2rem;
 }

 .menu-list a {
   font-size: 16px;
   text-decoration: none;
   color: #000;
   cursor: pointer;
 }

 .menu-list span {
   font-size: 18px;
   color: #888;
 }


 .menu-panel {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #fff;
   transition: transform 0.3s ease, opacity 0.3s ease;
   opacity: 0;
   pointer-events: none;
 }

 .menu-panel.menu-main {
   opacity: 1;
   pointer-events: auto;
   transform: translateX(0);
 }

 .menu-panel.menu-sub {
   transform: translateX(100%);
 }

 .menu-panel.menu-sub.active {
   transform: translateX(0);
   opacity: 1;
   pointer-events: auto;
 }

 .menu-panel.menu-main.hide {
   transform: translateX(-100%);
   opacity: 0;
   pointer-events: none;
 }

 .back-btn {
   background: none;
   border: none;
   font-size: 14px;
   font-weight: bold;
   margin-bottom: 1rem;
   cursor: pointer;
   color: #000;
   padding: 1rem;
 }


 .overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: rgba(0, 0, 0, 0.3);
   z-index: 1040;
   display: none;
 }

 .overlay.active {
   display: block;
 }

 main {
   padding-top: 70px;
 }

 section {
   height: 100%;
 }


 .jjin-footer-wrap {

   --footer-bg: #fff;
   --footer-fg: #000;
   --footer-muted: #b7bcc3;
   --footer-accent: #9aa3ad;

   background: var(--footer-bg);
   color: var(--footer-fg);

   padding: 36px 20px 28px;
   border-top: 1px solid rgba(255, 255, 255, .08);


   max-width: var(--footer-mw);
   margin: 100px 4.5rem 0;
   display: grid;
   grid-template-columns: 2fr 1.2fr 1.2fr;
   gap: 36px;
 }

 .jjin-footer-col h4 {
   font-size: 14px;
   letter-spacing: .12em;
   font-weight: 700;
   margin: 0 0 14px;
   color: var(--footer-fg);
   text-transform: uppercase;
 }

 .jjin-footer-desc {
   color: var(--footer-muted);
   line-height: 1.7;
   font-size: 14px;
 }

 .jjin-footer-copy {
   margin-top: 18px;
   padding-top: 14px;
   border-top: 1px dashed rgba(255, 255, 255, .12);
   color: var(--footer-accent);
   font-size: 12px;
   letter-spacing: .02em;
 }

 .jjin-footer-col.info div {
   color: var(--footer-muted);
   font-size: 14px;
   line-height: 1.9;
 }

 .jjin-footer-col.info div strong {
   color: var(--footer-fg);
 }

 .jjin-footer-links {
   display: grid;
   gap: 10px;
 }

 .jjin-footer-links a {
   position: relative;
   color: var(--footer-fg);
   text-decoration: none;
   font-size: 14px;
   line-height: 1.6;
   transition: color .2s ease;
 }

 .jjin-footer-links a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -2px;
   width: 0;
   height: 1px;
   background: currentColor;
   transition: width .25s ease;
   opacity: .7;
 }

 .jjin-footer-links a:hover {
   color: #000;
 }

 .jjin-footer-links a:hover::after {
   width: 100%;
 }

 .jjin-footer-wrap a:focus-visible {
   outline: 2px solid rgba(255, 255, 255, .5);
   outline-offset: 2px;
   border-radius: 6px;
 }


 @media (max-width: 980px) {
   .jjin-footer-wrap {
     grid-template-columns: 1.6fr 1fr;
     gap: 28px;
   }

   .jjin-footer-col.brand {
     grid-column: 1 / -1;
   }
 }

 .jjin-footer-wrap::before {
   content: "";
   position: fixed;
   left: 0;
   right: 0;
   bottom: 100%;
   height: 24px;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(15, 15, 16, .12));
   pointer-events: none;
 }


 .ppb_wrapper {
   width: 100%;
   background: #fff;
   clear: both;
 }

 .one {
   padding-top: 200px;
   padding-bottom: 100px;
   max-width: 1600px;
   margin: 0 auto;
 }

 .ppb_title2 {
   font-family: "Newsreader", sans-serif;
   text-align: center;
   display: block;
   margin-bottom: 30px;
   font-size: 19px;
   font-weight: 600;
   letter-spacing: 1px;
   line-height: 1.2;

 }

 .only-mo {
   display: none;
 }

 .only-pc {
   display: block;
 }

 .fade-img {
   opacity: 0;
   transform: translateY(10px);
   transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .fade-img.visible {
   opacity: 1;
   transform: translateY(0);
 }

 .hero-top-img {
   max-width: 1400px;
   width: 100%;
   height: auto;
   display: block;
   margin-left: auto;
   margin-right: auto;
 }

 .fixed-cta {
   position: fixed;
   right: max(12px, env(safe-area-inset-right));
   bottom: max(16px, env(safe-area-inset-bottom));
   z-index: 10000;

   display: flex;
   align-items: center;
   gap: 10px;

   height: 56px;
   padding: 10px 16px;
   border-radius: 9999px;

   background: #0f0f0f;
   color: #fff;
   text-decoration: none;
   box-shadow: 0 10px 20px rgba(0, 0, 0, .25);

   overflow: hidden;
   box-sizing: border-box;

   width: var(--cta-wide, 270px);
   transition: width .35s ease, padding .3s ease, gap .25s ease, border-radius .3s ease;
   --cta-circle: 56px;
   --cta-content: calc(var(--cta-circle) - 20px);
 }

 .fixed-cta .cta-logo {
   width: var(--cta-content);
   height: var(--cta-content);
   flex: 0 0 36px;
   border-radius: 50%;
   background: #000;
   object-fit: contain;
   display: block;
 }

 .fixed-cta .cta-label {
   white-space: nowrap;
   overflow: hidden;
   max-width: var(--label-wide, 220px);
   opacity: 1;
   font-weight: 600;
   letter-spacing: .2px;
   display: inline-flex;
   align-items: center;
   height: var(--cta-content);
   line-height: 1;
   transition: max-width .35s ease, opacity .25s ease;
 }

 .fixed-cta.is-circle {
   width: var(--cta-circle, 56px);
   padding: 10px;
   gap: 0;
   border-radius: 50%;
 }

 .fixed-cta.is-circle .cta-label {
   max-width: 0;
   opacity: 0;
 }

 .fixed-cta.is-circle.is-expanded {
   width: var(--cta-wide, 240px);
   padding: 10px 16px;
   gap: 10px;
   border-radius: 9999px;
 }

 .fixed-cta.is-circle.is-expanded .cta-label {
   max-width: var(--label-wide, 220px);
   opacity: 1;
 }

 @media (hover: hover) {

   .fixed-cta.is-circle:hover,
   .fixed-cta.is-circle:focus-visible {
     width: var(--cta-wide, 240px);
     padding: 10px 16px;
     gap: 10px;
     border-radius: 9999px;
   }

   .fixed-cta.is-circle:hover .cta-label,
   .fixed-cta.is-circle:focus-visible .cta-label {
     max-width: var(--label-wide, 220px);
     opacity: 1;
   }
 }


 @media (prefers-reduced-motion: reduce) {

   .fixed-cta,
   .fixed-cta .cta-label {
     transition: none;
   }
 }


 @media (max-width: 768px) {
   .jjin-footer-wrap {
     grid-template-columns: 1fr;
     margin: 0 auto;
     padding: 44px 16px 24px;
     gap: 32px;
   }

   .jjin-footer-col h4 {
     margin-bottom: 10px;
   }

   .jjin-footer-desc {
     font-size: 12px;
   }

   .jjin-footer-col.info div {
     font-size: 12px;
   }

   .jjin-footer-links a {
     font-size: 12px;
   }


   .jjin-footer-col.guide {
     order: 1;
   }

   .jjin-footer-col.info {
     order: 2;
   }

   .jjin-footer-col.brand {
     order: 3;
   }

   .jjin-footer-copy {
     font-size: 11px;
   }

   .only-mo {
     display: block;
   }

   .only-pc {
     display: none;
   }

   .logo {
     padding-top: 3px;
   }

   .logo img {
     width: 170px;
     height: auto;
   }

   .menu-btn {
     padding: 1rem 0 1rem 1rem;
     font-size: 24px;
     cursor: pointer;
     background: none;
     border: none;
     z-index: 1100;
     color: #000;
   }

   .logo {
     position: static;
     transform: none;
     top: auto;
     left: auto;
     margin: 0 auto;
   }

   .fixed-cta {
     position: fixed;
     right: max(12px, env(safe-area-inset-right));
     bottom: max(16px, env(safe-area-inset-bottom));
     z-index: 10000;

     display: flex;
     align-items: center;
     gap: 10px;

     height: 46px;
     padding: 10px 16px;
     border-radius: 9999px;

     background: #0f0f0f;
     color: #fff;
     text-decoration: none;
     box-shadow: 0 10px 20px rgba(0, 0, 0, .25);

     overflow: hidden;
     box-sizing: border-box;

     width: var(--cta-wide, 230px);
     transition: width .35s ease, padding .3s ease, gap .25s ease, border-radius .3s ease;
     --cta-circle: 46px;
   }

   .fixed-cta .cta-logo {
     width: 26px;
     height: 26px;
     flex: 0 0 26px;
     border-radius: 50%;
     background: #000;
     object-fit: contain;
     display: block;
   }

   .fixed-cta .cta-label {
     white-space: nowrap;
     overflow: hidden;
     max-width: var(--label-wide, 170px);
     opacity: 1;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: .2px;
     transition: max-width .35s ease, opacity .25s ease;
   }

   .fixed-cta.is-circle {
     width: var(--cta-circle, 46px);
     padding: 10px;
     gap: 0;
     border-radius: 50%;
   }

   .fixed-cta.is-circle .cta-label {
     max-width: 0;
     opacity: 0;
   }

 }