@charset "utf-8"; .hero { position: relative; width: 100%; height: 100vh; overflow: hidden; display: flex; align-items: center; padding: 0 100px; background: #000; } 

.hero .bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 1; pointer-events: none; } 

.hero .bg-video iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; transform: translate(-50%, -50%); object-fit: cover; } 

.hero .inner { position: relative; z-index: 2; width: 100%; } 

.hero h2 { margin-bottom: 4rem; margin-top: 7rem; letter-spacing: -2px; color: #fff; font-size: clamp(32px, 6.25vw, 10.0rem); line-height: 1; animation-delay: .2s } 

.hero p { max-width: 800px; margin-bottom: 60px; color: rgba(255,255,255,1); animation-delay: .6s } 

.hero h2, .hero p { opacity: 0; transform: translateY(40px); animation: heroFadeUp 1s ease forwards; } 

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0) } 
 }

.hero .more-btn { display: inline-block; border-radius: 2em; padding: 15px 30px; border: 1px solid #fff; color: #fff; text-decoration: none; transition: 0.3s; } 

.hero .more-btn:hover { background: #fff; color: #000; } 

.product-wrap { width: 100%; position: relative; background: #000; overflow: hidden; color: #fff; } 

.product-list { display: flex; width: 100%; height: 100vh; list-style: none; padding: 0; margin: 0; } 

.product-item { position: relative; flex: 1; height: 100%; overflow: hidden; transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1); color: #fff; } 

.product-item:hover { flex: 2.5; } 
.product-item:hover .product-name { } 

.product-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.2s ease; } 

.product-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 1; transition: background 0.6s ease; } 

.product-item:hover .product-bg::after { background: rgba(12,8,51,.8); } 

.product-item:hover .product-bg { transform: scale(1.1); } 

.product-info { position: absolute; top: 60px; left: 50%; transform: translateX(-50%); width: 100%; padding: 0 4rem; z-index: 5; transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); color: #fff; display: flex; flex-direction: column; align-items: flex-start; } 

.product-item:hover .product-info { top: 25%; } 

.product-num { display: block; margin-bottom: 40px; opacity: 0.6; letter-spacing: 3px; color: #fff; transition: opacity 0.3s ease; align-self: flex-start; } 

.product-item:hover .product-num { opacity: 0; } 

.product-name { display: block; margin-bottom: 30px; white-space: nowrap; color: #fff; font-size: clamp(18px, 2.5vw, 3.2rem); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); transform: rotate(90deg) translateX(0); transform-origin: 15px 15px; width: 600px; text-align: left; } 

.product-item:hover .product-name { font-size: clamp(26px, 4.5vw, 5.8rem); transform: rotate(0deg) translateY(0); width: auto; } 

.product-desc { display: block; opacity: 0; transform: translateY(20px); transition: all 0.5s ease 0.2s; margin-bottom: 30px; color: #fff; font-size: clamp(13px, 1.4vw, 1.8rem); line-height: 1.7; word-break: keep-all; max-width: 450px; } 

.product-item:hover .product-desc { opacity: 0.8; transform: translateY(0); } 
.product-link { display: inline-block; padding: 10px 0; border-bottom: 2px solid #fff; opacity: 0; transform: translateY(30px); transition: all 0.5s ease 0.3s; color: #fff; text-decoration: none; font-size: clamp(12px, 1.25vw, 1.5rem);; font-weight: bold } 

.product-item:hover .product-link { opacity: 1; transform: translateY(0); } 

.item-01 .product-bg { background-image: url('../img/product_01.jpg'); } 

.item-02 .product-bg { background-image: url('../img/product_02.jpg'); } 

.item-03 .product-bg { background-image: url('../img/product_03.jpg'); } 

.item-04 .product-bg { background-image: url('../img/product_04.jpg'); } 

.item-05 .product-bg { background-image: url('../img/product_05.jpg'); } 

.item-06 .product-bg { background-image: url('../img/product_06.jpg'); } 

.product-app { width: 100%; padding: 18rem 10rem; background: #fcfcfc; } 

.product-app-inner { width: 100%; position: relative; } 

.product-app .title { margin-bottom: 8rem; font-size: clamp(26px, 4.7vw, 6.0rem); } 

.contents_wrap { position: relative; } 
.contents_wrap .app-main-content { } 
.app-main-content { display: flex; align-items: center; gap: 8rem; margin-bottom: 100px; opacity: 0; transition: opacity .4s ease; z-index: 1; position: absolute; top: 0; left: 0; width: 100%; } 

.app-main-content.on { opacity: 1; position: relative; z-index: 2; } 

.app-info-box { flex: 0 0 450px; } 

.app-subject { margin-bottom: 3rem; position: relative; padding-bottom: 2rem; font-size: clamp(18px, 2.8vw, 3.6rem); } 

.app-subject::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: #111; } 

.app-text { margin-bottom: 4rem; word-break: keep-all; opacity: 0.7; } 

.app-more-link { display: inline-block; text-decoration: none; border-bottom: 2px solid #111; padding-bottom: 5px; font-size: clamp(11px, 1.5vw, 1.8rem); font-weight: bold } 

.app-visual { flex: 1; height: 50rem; border-radius: 0; overflow: hidden; box-shadow: 30px 30px 60px rgba(0,0,0,0.05); } 

.visual-img-wrap { width: 100%; height: 100%; } 

.visual-img-wrap img { width: 100%; height: 100%; object-fit: cover; } 

.app-thumb-list { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; width: 100%; } 

.app-thumb-item { flex: 1; cursor: pointer; transition: all 0.4s ease; } 
.thumb-img { width: 100%; aspect-ratio: 16/10; border-radius: 0; overflow: hidden; /* filter: grayscale(1)*/opacity: 0.3; transition: all 0.4s ease; } 
.thumb-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 1em } 
.app-thumb-item:hover .thumb-img, .app-thumb-item.on .thumb-img { filter: grayscale(0); opacity: 1; transform: translateY(-10px); } 
.services { width: 100%; padding: 18rem 8rem; background: #fff; display: flex; justify-content: center; } 
.services-container { width: 100%; display: flex; align-items: center; gap: 10rem; flex-wrap: nowrap; } 
.services-txt { flex: 0 0 auto; } 
.services-txt .title { margin-bottom: 2.4rem; word-break: keep-all; font-size: clamp(22px, 4.7vw, 6.0rem); line-height: 1.4 } 
.services-desc { opacity: 0.3; } 
.services-list { flex: 1; display: flex; justify-content: space-between; list-style: none; padding: 0; margin: 0; } 
.services-item { flex: 1; text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; position: relative; padding: 0 1rem; } 
.services-item:not(:last-child)::after { content: ''; position: absolute; top: 14rem; right: 0; width: 1px; height: 24rem; background: rgba(0,0,0,0.3); transform: translateY(-50%); } 
.services-icon { width: 14rem; height: 14rem; margin-bottom: 4rem; display: flex; align-items: center; justify-content: center; background: #f8f8f8; border-radius: 50%; transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1); } 
.services-item:hover .services-icon { background: #111; color: #fff; transform: translateY(-15px) scale(1.05); } 
.services-icon svg { width: 55px; height: 55px; } 
.services-info strong { display: block; margin-bottom: 12px; white-space: nowrap; font-size: clamp(16px, 3vw, 2.0rem); } 
.services-info span { display: block; opacity: 0.4; font-size: clamp(12px, 1.15vw, 1.6rem); line-height: 1.4; } 

@media(max-width:1400px){
 .services-desc { font-size: 16px; } 
 .product-app { padding: 14rem 10rem; } 
 .product-app .title { margin-bottom: 0rem; } 
 .app-text { font-size: 2rem; } 
 .product-item:hover .product-name { font-size: clamp(20px, 4.3vw, 4.2rem); transform: rotate(0deg) translateY(0); width: 100%; word-break: keep-all; white-space: normal; line-height: 1.2; } 
 }

@media(max-width:1024px){
 .services-info strong { font-size: 18px; } 
 .product-app { padding: 12rem 5rem; } 
 .services { padding: 10rem 4rem; } 
 .services-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 7rem; } 
 .services-txt { text-align: center; } 
.product-list { display:grid; grid-template-columns:repeat(2,1fr); height:auto; } 
.product-item { height:420px; } 
.product-item:hover { flex:unset; } 
.product-name { transform:none; width:auto; font-size:32px; } 
.product-desc,
.product-link { opacity:1; transform:none; } 
.product-num { opacity:1; } 
 }
@media(max-width:480px){
 .services-item:not(:last-child)::after { top: 11rem; height: 20rem; } 
 .services-info strong { font-size: 15px; margin-bottom: 1rem; } 
 .app-subject { margin-bottom: 2rem; padding-bottom: 1.5rem; } 
 .product-item:hover .product-name { font-size: 22px; } 
 .services-desc { font-size: 12px; } 
 .services-container { gap: 3rem; } 
 .services-icon { width: fit-content; height: 10rem; margin-bottom: 3rem; } 
 .services-icon img { max-width: fit-content; width: 100%; margin: 0 auto; display: block; } 
 .services { padding: 7rem 3rem; } 
 .app-thumb-list { gap: 1rem; } 
 .thumb-img img { border-radius: 6px; } 
 .app-thumb-item:hover .thumb-img, .app-thumb-item.on .thumb-img { transform: translateY(0); } 
 .app-text { margin-bottom: 2rem; font-size: 1.8rem; } 
 .app-info-box { flex: 1; } 
 .app-main-content.on { display: flex; flex-direction: column; gap: 4rem; } 
 .product-app { padding: 8rem 3rem; } 
 .hero { padding: 0 4rem; } 
.product-list { display:block; } 
.product-item { height: 340px; position: relative; } 
.product-info { transform: translate(-50%, -50%); padding: 0 2rem; top: 50%; left: 50%; position: relative; } 
.product-name { transform:none; width:auto; font-size: 22px; margin-bottom:15px; } 
.product-desc { opacity:1; transform:none; margin-bottom:15px; font-size: 14px; } 
.product-link { opacity:1; transform:none; } 
.product-num { margin-bottom:10px; } 
 .product-item:hover .product-num { opacity: 1; } 
.product-item:hover { flex:unset; } 
 .product-item:hover .product-bg::after { background: rgba(0,0,0,0.3); } 
.product-item:hover .product-info { transform: translate(-50%, -50%); top: 50%; left: 50%; position: relative; padding: 0 2rem; } 
 }