/*sub-common*/
.tit-01 {
    font-size: var(--sub-tit-34);
}
.tit-01-02 {
    font-size: var(--sub-tit-30);
}
.tit-02 {
    font-size: var(--sub-tit-24);
}
.txt-01 {
    font-size: var(--sub-txt-18);
}
.con-pd {
    padding: var(--con-pd);
}


.title .tit-01 {
    text-align: center;
    font-weight: 600;
    letter-spacing: -1px;
}
.title .tit-01 span {
    color: var(--main-color);
    line-height: 1.6;
}
.title .txt-01 {
    color: var(--color-text3);
    margin-top: 1.6rem;
    text-align: center;
}
.txt-dot {
    padding-left: 1rem;
    position: relative;
}
.txt-dot::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: var(--color-text3);
    border-radius: 100%;
    transition: all 0.4s ease;
}

.txt-of-01 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.txt-of-02 {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tit {
    font-weight: bold;
}

.tit2 {
    font-weight: bold;
    font-size: 4.8rem;
}

.txt {
    font-weight: 400;
}

.txt span {
    font-weight: bold;
}

.mobile-dropdown-toggle {
    display: none;
    padding: 12px 16px;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

.mobile-dropdown-toggle {
    display: none;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #fff;
    color: #111;
    font-weight: 600;
    font-size: 1.8rem;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.mobile-dropdown-toggle::after {
    content: "";
    position: absolute;
    top: 48%;
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid #111;
    border-width: 0 1px 1px 0;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open::after {
    transform: translateY(-50%) rotate(-135deg);
}
/*sub-common//*/

/*page-name*/
.page-name {
    display: flex;
    justify-content: center;
}

.page-name .page-tit {
    letter-spacing: -1px;
    font-size: var(--font-size-tit);
    font-weight: bold;
    margin: 0 0 1.4rem;
    text-align: center;
}
/*page-name//*/

/*breadcrumbs*/
.breadcrumbs {
    margin-bottom: 2.5rem;
    display: none;
}

.breadcrumbs .t-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    transform: translate(0px, 0px);
    opacity: 1;
}

.breadcrumbs .t-nav li {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .t-nav li a {
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .t-nav li.active a {
    font-weight: 500;
    color: #fff;
}

/*breadcrumbs//*/

/*sub-top*/
.sub-top {
    width: 100%;
    height: var(--sub-top-height);
    position: relative;
    /* overflow: hidden; */
}
/*sub-top//*/

/*sub-visual*/
.sub-visual {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sub-visual::before {
    display: none;
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: var(--side-wrap);
    border-left: 1px solid #ffffff20;
    transition: all 0.8s ease;
}

.sub-visual .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center;
    transform: scale(1.3, 1.3);
    transition: all 0.3s ease;
    animation: image-zoom-out02 3s 0.3s forwards;
    overflow: hidden;
}

@keyframes image-zoom-out02 {
    0% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1, 1);
    }
}

.sub-visual .info {
    align-items: center;
    height: 100%;
    position: absolute;
    display: flex;
}

.sub-visual .info .info-wrap .tit {
    font-size: 6.4rem;
    font-weight: 600 !important;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.sub-visual .sub-nav-wrap .sub-nav .menu {
    gap: 8rem;
    align-items: center;
    transition: all 0.6s ease;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li {
    font-size: 2rem;
    transition: all 0.2s ease;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 1.6rem;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li:hover {}

.sub-visual .sub-nav-wrap .sub-nav .menu li.on {
    color: #fff;
    position: relative;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li.on::before {
    width: 100%;
    height: 4px;
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

.sub-visual .bg {
    background-position: center;
}

.company .sub-visual .bg {
    background-image: url("../img/sub-vision01.jpg");
}

.business .sub-visual .bg {
    background-image: url("../img/sub-visual02.jpg");
}

.media .sub-visual .bg {
    background-image: url("../img/sub-visual03.jpg");
}

.support .sub-visual .bg {
    background-image: url("../img/sub-visual04.jpg");
}

.device-wrap .sub-visual .bg {
    background-color: #eee;
    background-image: none;
}

.device-visual{
  width: 1520px;
}

.device-visual-inner{
  margin: 0 auto;
}

.device-visual-media{
  position: absolute;
  display: flex;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.device-visual-img{
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.device-visual-watermark{
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-weight: 200;
  font-size: 20rem;
  color: rgba(22,22,22,.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.device-visual-text{
    position: absolute;
    bottom: 60px;
}

.sub-visual-tit .small-tit{
  font-size: 20px;
  color: #005DAC;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.device-visual-text .tit {
    font-size: 7rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: #222 !important;
    text-transform: unset !important;
}

.device-visual-text p {
    font-size: 1.8rem !important;
    line-height: 1.6 !important;
}

.sub-visual-tit .tit{
  font-size: 7rem;
  line-height: 1;
  color: #111;
}

.sub-visual-tit p{
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,.68);
  margin: 0;
}

.sub-visual-tit {
    display: flex;
    align-items: flex-end;
    gap: 4rem;
}

.sub-nav .f-box {
    display: flex;
}

.sub-visual .sub-nav-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

/*sub-visual//*/


.sub-nav-wrap {
    width: 100%;
}

.sub-nav-wrap .sub-nav {
    background-color: #F9F9F9;
}

.sub-nav-wrap .sub-nav .menu {
    gap: 8rem;
    align-items: center;
    justify-content: left;
    transition: all 0.6s ease;
}

.sub-nav-wrap .sub-nav .menu li {
    color: #BDBDBD;
    font-size: 1.8rem;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 2.2rem 0;
}

.sub-nav-wrap .sub-nav .menu li.on a {
    color: #161616;
    font-weight: 600;
}

.sub-nav-wrap .sub-nav .menu li.on {
    position: relative;
}

.sub-nav-wrap .sub-nav .menu li.on::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px; 
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #161616;
    border-radius: 2px;
}


/*sub-common*/
.sub-content {
}

.sub-title {
    margin-bottom: 3rem;
}

.sub-tit {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.4;
}

.sub-title .txt {
    padding-top: 3rem;
    font-size: 2.2rem;
    color: #333;
}

.sub-tit span {
    color: var(--main-color);
}

.sub-sec {
    margin-bottom: 16rem;
}

.ral-box {
    justify-content: space-between;
    gap: 2rem;
}

.ral-box .sub-tit-box {
    width: 25%;
}

.ral-box .sub-con-box {
    width: 75%;
}

/*sub-common//*/

/*about*/
.about {
    background: url(../img/about-bg.jpg)no-repeat;
    padding: 200px 0 180px;
    height: 100%;
    margin-bottom: 8rem;
    background-size: cover;
}

.about .about-txt .sub-tit {
    margin-bottom: 4rem;
}

.about .about-txt h5 {
    margin-bottom: 2rem;
}

.about-txt .sub-txt {
    color: #4D4D4D;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about .about-txt .ceo-name {
    font-weight: 700;
    font-size: 2rem;
}

.composed .about-txt .sub-tit {
    margin-bottom: 2rem;
}

.composed .sub-cont {
    background-color: #EFF2FB;
    padding-top: 175px;
}

.composed .about-txt .sub-txt {
    margin-bottom: 5rem;
}

.composed .sub-cont .app-img {
    margin: 0 auto;
    width: 1241px;
}

.composed .sub-cont .app-img img {
    margin-bottom: -8px;
}

.solutions {
    margin: 20rem 0;
}

.solutions .about-txt .sub-tit {
    font-size: 4.8rem;
    margin-bottom: 3rem;
}

.solutions .fitrus-item .fitrus-thumb {
    background: #fff !important;
}

.solutions .fitrus-item .fitrus-info {
    text-align: center;
}


/*about//*/

/*history*/

.history {
    margin: 12rem 0;
}
.history .tit {
    font-size: 6rem;
    line-height: 1.4;
    margin-bottom: 60px;
    text-align: center;
}

.history_content {
    position: relative;
    max-width: 1520px;
    margin: 0 auto;
}

.history_bg_m {
    display: none;
}

.history-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #D9D9D9;
    transform: translateX(-50%);
    z-index: 1;
}

.history-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: #108845;
    transition: height 0.4s ease;
    height: var(--lineHeight, 0);
}

.history-indicator {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #108845;
    box-shadow: 0 0 20px rgba(0, 93, 172, 0.3);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}


.history-items {
    position: relative;
    margin: 0 auto;
}

.history-section{
  position:relative;
  display:flex;
  gap:110px;
  align-items:flex-start;
}

.history-nav{
  position:sticky;
  top:120px;
  width:180px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.history-nav .nav-item{
  border-radius:999px;
  background:#fff;
  color:#a1a1aa;
  font-weight:700;
  cursor:pointer;
  font-family: "oswald";
  transition: all .25s ease;
  font-size: 2.4rem;
  padding: 6px 35px;
  min-width: 220px;
  text-align: left;
}

.history-nav .nav-item.is-active{
  background:#005DAC; 
  color:#fff;
  border-color:#005DAC;
}

.history_content{
  position:relative;
  flex:1;
  padding-left:125px;
}

.history-line{
  position:absolute;
  left:24px;
  top:0;
  bottom:0;
  width:4px;
  background:#EEEEEE; 
}

.history-line .progress-line{
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:0%;
  background:#005DAC;
}

.history-indicator{
  position:absolute;
  left:24px;
  top:0;
  transform: translate(-50%, -50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff;
  border:7px solid #005DAC;
  box-sizing:border-box;
}

.history-item{
  margin-bottom: 100px;
}

.history-item:first-child{ border-top:0; }

.item-side.year{
  font-size:10rem;
  font-weight:500;
  line-height:1;
  color:#111;
  font-family: "oswald";
  margin-bottom: 4rem;
}

.item-side.content ul{
  margin:0;
  padding:0;
  list-style:none;
}

.item-side.content li{
  display:flex;
  font-size:20px;
  color:#111;
}

.item-side.content .num{
  width:70px;
  font-weight:500;
  color:#111;
  line-height: 1.4;
}

.m-main2 {
  font-size: 1.8rem;
  color: #666;
}

.history-decade-anchor{
  height:1px;
}

.history-row{
  display:flex;
  gap:18px;
  padding:30px 0;
  border-bottom:1px solid #eee;
}

.history-row .num{     
  font-weight:700;
  color:#111;
  flex:0 0 auto;
  font-size: 2.6rem;
}

.history-row .bullets{
  margin:0;
  padding:0;
  list-style:none;     
}

.history-row .bullets li{
  position:relative;
  padding-left:14px;
  color:#161616;
  font-weight: 400;
  margin-bottom: 12px;
}

.history-row .bullets li:last-child {
    margin-bottom: 0;
}

.history-row .bullets li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#0b57d0;       
  font-weight: 400;
}

/*history//*/

/*certification*/

.certificate .tit {
    font-size: 6rem;
    line-height: 1.4;
    margin-bottom: 60px;
    text-align: center;
}

.stats-bar{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: url(../img/certificate-bg.jpg);
  margin-bottom: 10rem;
}

.stats-bar::before{
  content:"";
  position:absolute;
  inset:-80px -120px -80px -120px;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(0,0,0,0.10), transparent 56%),
    radial-gradient(ellipse at 85% 35%, rgba(0,0,0,0.08), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.65), rgba(255,255,255,0));
  pointer-events:none;
}

.stats-inner{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.stat{
  flex:1;
  text-align:center;
  padding: 0 10px;
}

.stat-ico{
  display:inline-block;
  font-size: 42px; 
  line-height: 1;
  color: #111;
  opacity: .85;
  margin-bottom: 10px;
}

.label{
  font-size: 2.2rem;
  font-weight: 600;
  color:#111;
  margin-bottom: 10px;
}

.value{
  font-size: 4.4rem;
  font-weight: 800;
  color:#005DAC;
  letter-spacing: -0.02em;
  font-family: "Oswald";
}

.divider{
  width:1px;
  height: 197px;
  background: #F0EFEF;
}

.certificate-wrap .sub-content{
    margin: 12rem 0 22rem;
}

.cert-block {
    margin-bottom: 12rem;
}

.cert-block:last-child {
    margin-bottom: 0;
}

.certification-slider {
    width: 100%;
    position: relative; 
}

.certification-slider .swiper-slide {
    text-align: center;
}

.cert-block .tit2 {
    font-size: 4.8rem;
    border-bottom: 2px solid #eee;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 5rem;
}

.certification-slider .certificate_img {
    background-color: #F9F9F9;
    padding: 60px 85px;
    border-radius: 10px;
    display: block;
}

.certification-slider .certificate_img img {
    background: #D8BF6D;
    padding: 8px;
    height: 248px;
    width: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
}

.certification-slider .swiper-slide h4 {
    margin-top: 22px;
    font-size: 1.8rem;
}

.certification-slider .swiper-button-prev,
.certification-slider .swiper-button-next {
    top: 50%;
    width: 31px;
    height: 31px;
    background:#fff;
    border-radius: 50%;
    z-index: 10;
    opacity:1 !important;
    pointer-events:auto !important;
    display:flex !important;
    border: 1px solid #ddd;
}


.certification-slider .swiper-button-prev {
    left: -60px; 
}

.certification-slider .swiper-button-next {
    right: -60px;
}

.certification-slider .swiper-button-prev::after,
.certification-slider .swiper-button-next::after {
    color:#111;
    font-size:14px;
}

.certification-slider .swiper-button-disabled::after{
    color:#999 !important;
    opacity:0.5;
}


/*certification//*/

/*partner*/
.partner {
    margin: 12rem 0;
}
.partner .tit {
    font-size: 6rem;
    line-height: 1.4;
    margin-bottom: 37px;
    text-align: left;
}

.partner .txt2 {
    font-size: 2rem;
    color: #4D4D4D;
    font-weight: 300;
}

.partner h5.txt {
    color: #005DAC;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.partner_con {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partner_con .partner-card {
    background-color: #F9F9F9;
    padding: 60px 50px;
    border-radius: 5px;
    min-width: 49.3rem;
    width: calc(33.33333% - 24px);
}

.partner-info .label {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    min-width: 80px;
    margin-bottom: 0 !important;
}

.partner-info .value {
    font-size: 1.6rem !important;
    color: #4D4D4D !important;
    font-family: "Pretendard" !important;
    font-weight: 400 !important;
}

.partner-logo {
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 18px 0;
    border-radius: 5px;
    margin-bottom: 3rem;
}

.partner_con_tit {
    font-family: "Oswald";
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.partner-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}

.map-box {
    width: 100%;
}

.map-box {
    position: relative;
}
.map-box .map-img img {
    width: 100%;
}

.map-box .p-dot {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.map-box .p-dot .item {
    position: absolute;
}

.map-box .p-dot .item.item-01 {
    left: 11%;
    top: 31%;
}
.map-box .p-dot .item.item-02 {
    left: 14%;
    top: 39%;
}
.map-box .p-dot .item.item-03 {
    left: 38%;
    top: 44%;
}
.map-box .p-dot .item.item-04 {
    left: 24%;
    top: 40%;
}
.map-box .p-dot .item.item-05 {
    right: 16%;
    top: 76%;
}

.map-box .p-dot .d-img {
    width: auto;
}

.map-box .p-dot .site {
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    width: 1rem;
    height: 0.4rem;
    border-radius: 100%;
    background-color: #31313140;
}

.map-box .p-dot .osd {
    left: 41%;
    top: 43%;
    z-index: 9;
}

.osd .point span {
    border: 1px solid rgba(0, 93, 172, 0.5);
    border-radius: 50%;
    animation-fill-mode: both;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    margin: 0;
    width: 20rem;
    height: 20rem;
    animation: circle 4s cubic-bezier(1, 2, 0.66, 3) infinite;
    box-sizing: border-box;
}
.osd .point span:nth-child(2) {
    animation-delay: 0.5s;
}
.osd .point span:nth-child(3) {
    animation-delay: 1s;
}
.osd .point span:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes circle {
    0% {
        -webkit-transform: scale(0);
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.osd .point {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--main-color);
    border-radius: 10px;
}
.osd .point::after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 240%;
    height: 240%;
    background-color: var(--main-color);
    opacity: 0.2;
}

.osd .logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -155%);
    background-color: #ffffff;
    padding: 0.8rem 4.8rem;
    border-radius: 60px;
    margin-top: 1rem;
    box-shadow: 0 0 2rem #dadada;
    z-index: 2;
}


/*partner//*/

/*location*/
.location-wrap .sub-content {
    margin: 12rem 0 22rem;
}
.location {
    margin-bottom: 100px;
}

.location .f-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12rem;
}

.location .left-txt h4 {
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.loction_info {
    display: flex;
    margin-top: 2rem;
}


.loction_info p {
    min-width: 145px;
    font-size: 2rem;
    font-weight: 700;
    font-family: "Oswald";
}

.loction_info span {
    text-align: left;
    flex: 1;
    font-size: 2rem;
    font-weight: 400;
    color: #4D4D4D;
    font-family: "Oswald";
}

.location.bg {
    background-color: #F9F9F9;
    padding: 100px;
}

.location.mb-0 {
    margin-bottom: 0;
}

/*location//*/

/*business*/

.tab-switch {
  display: flex;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 60px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 4px;
}

.tab-switch .tab-item {
  flex: 1;
  text-align: center;
  padding: 11px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.tab-switch .tab-item.is-active {
  background: #0a5bb5;
  color: #fff;
}

.business .sub-content {
    margin: 12rem 0 22rem;
}

.business-img {
    width: 100%;
}

.business .txt-box {
    text-align: center;
    margin-bottom: 9rem;
}

.business .txt-box .samll-txt {
    font-size: 2rem;
    color: #005DAC;
    font-weight: 500;
    margin: 0.8rem 0 4rem;
}

.business .txt-box .sub-txt {
    font-size: 2rem;
    color: #4D4D4D;
}

.business .b2b2 {
    margin: 8rem 14rem;
}

.business .txt-box .tit2 {
    font-size: 4rem;
}

.business .b2b2 .txt-box .tit2 span {
    color: #005DAC;
}

.business .b2b2 .txt-box .sub-txt {
    margin: 1rem 0 4rem;
}

.business .b2b3 {
    background: url(../img/b2b-bg02.jpg) no-repeat;
    width: 1880px;
    margin: 0 auto;
    padding: 16rem 0;
    color: #fff;
    min-height: 854px;
}

.business .b2b3 .txt-box .sub-txt {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 1rem 0 8rem;
}

.business .b2b3 .b2b-grid {
    display: flex;
    gap: 40px;
}

.business .b2b3 .b2b-grid .b2b-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    width: 33.3333%;
    padding: 50px 60px 50px 60px;
}

.business .b2b3 .tit2 {
    font-size: 4rem;
}


.business .b2b3 .b2b-card h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


.business .b2b3 .b2b-card .desc {
    line-height: 1.8;
    font-weight: 200;
    position: relative;
    padding-left: 1.5rem;
}

.business .b2b3 .b2b-card .desc::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 0;
}

.business .b2b4 {
  margin: 18rem 0 0;
}

.business .b2b-diagram {
  background-color: #fff;
  width: 1520px;
  margin: 0 auto;
}

.business .b2b-diagram .diagram-tit {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  padding: 2rem 0;
  font-weight: 600;
}

.business .b2b4 .diagram-img {
  width: 1362px;
  margin: 0 auto;
  padding: 145px 0;
}

.business .gr-bg {
    background-color: #f9f9f9;
    padding: 8rem 0;
}

.b2b5 { padding: 120px 0; }

.b2b5 .inner {
    display: flex;
    gap: 14rem;
}

.b2b5-txt {
    max-width: 40rem;
}
.b2b5 .tit2{
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}

.b2b5 .tit2 span{ font-weight: 800; }

.b2b5-layout {
    width: 100%;
}
.b2b5-layout-flex {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 6rem;
}

.b2b5-layout-flex:first-child {
    padding-bottom: 3.5rem;
}

.b2b5-badges .badge{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2.6rem;
}
.badge--staff{ background: rgba(43, 209, 227, 0.1); color:#0AC5D9; }
.badge--corp{ background:#EEF2F6; color:#1457B8; }


.b2b5-content{
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.b2b5-group{ padding: 24px 0; width: 100%; padding-top: 0;}
.b2b5-item {
    padding: 2rem 4rem;
}
.b2b5-line{
  height: 1px;
  background:#222;
  opacity:.7;
  width: 100%;
}
.b2b5-sep{
  height:1px;
  background:#eee;
}
.b2b5-item h6{
  font-size:20px;
  font-weight:600;
  margin-bottom:8px;
}
.b2b5-item p{
  font-size:18px;
  line-height:1.6;
  color:#4D4D4D;
}

.b2b6{
  padding: 13rem 0 7rem;
  background: linear-gradient(180deg, #F9F9F9 0%, rgba(249, 249, 249, 0) 100%);
}

.b2b6-title{
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 80px;
}

.b2b6-circles{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.b2b6-circle{
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    z-index: 0;
}

.b2b6-circle::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(
        300deg,
        rgba(0, 93, 172, 1),  
        rgba(0, 93, 172, 0) 
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}


.b2b6-point{
  font-size: 22px;
  font-weight: 700;
  color: #005DAC;
  margin-bottom: 19px;
}

.b2b6-desc{
  font-size: 20px;
  line-height: 1.5;
  color: #4D4D4D;
  margin: 0;
}

.b2b7{
  padding: 11rem 0 14rem;
  background: #fff;
}

.b2b7-title{
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 7rem;
}

.b2b7-block--mt{ margin-top: 90px; }

.acc-item{
  border-bottom: 1px solid #eee;
}

.acc-head{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.acc-head__tit{
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.acc-head__icon{
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}
.acc-head__icon::before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.acc-panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.acc-panel__inner{
  padding: 0 0 22px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #656565;
}

.acc-item.is-open .acc-panel{
  max-height: 400px; 
}
.acc-item.is-open .acc-head__icon::before{
  transform: rotate(225deg); 
}

.b2b8 {
    margin-bottom: 18rem;
}

.b2b8 .b2b8-title {
  font-size: 4rem;
  margin-bottom: 1.8rem;
}

.b2b8 .sub-txt {
    font-size: 2rem;
    color: #4D4D4D;
    margin-bottom: 4.6rem;
}

.b2b8 .fitrus-grid .fitrus-thumb {
    background: transparent;
}

.b2b8 .fitrus-grid .fitrus-info {
    text-align: center;
}

.b2b9{
  padding: 200px 0;
  background: #F3F3F3;
}

.b2b9-wrap{
    display: flex;
    align-items: center;
    gap: 200px;
    justify-content: space-between;
}

.b2b9-title{
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.b2b9-desc{
    font-size: 2rem;
    line-height: 2;
    color: #666;
}

.b2b9-cards{
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
    margin-bottom: -8rem;
}

.b2b9-card{
    width: 360px;
    height: 320px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b9-card:first-child {
    margin-top: -8rem;
}

.b2b9-card img{
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.b2b10{
  padding: 110px 0 0;
  background: #fff;
}

.b2b10-title{
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.b2b10-item{
  border-bottom: 1px solid #efefef;
}

.b2b10-q{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.b2b10-q__txt{
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.b2b10-q__ico{
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.b2b10-q__ico::before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.b2b10-a{
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.b2b10-a__in{
  padding: 0 0 22px 0;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}


.b2b10-item.is-open .b2b10-a{
  max-height: 500px;
}

.b2b10-item.is-open .b2b10-q__ico::before{
  transform: rotate(225deg);
}

.hero-visual{
  padding: 120px 0;
  background: #fff;
}

.hero-visual__stage{
  position: relative;
  min-height: 640px;
  margin: 0 auto;
  overflow: visible;
  width: 100%;
}

.hero-visual__stage img{
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-ring{
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.12));

  animation:
    ringPulse 3.6s ease-in-out infinite,
    ringDrift 14s ease-in-out infinite;
}


@keyframes ringPulse{
  0%,100%{
    opacity: .45;
    transform: translate(-50%, -50%) scale(1);
  }
  50%{
    opacity: .72;
    transform: translate(-50%, -50%) scale(1.045);
  }
}


@keyframes ringDrift{
  0%{
    rotate: 0deg;
  }
  50%{
    rotate: 1.2deg;
  }
  100%{
    rotate: 0deg;
  }
}


.hero-phone{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: phoneFloat 3.4s ease-in-out infinite;
    transform-origin: 50% 80%;
    will-change: transform;
}

@keyframes phoneFloat{
  0%,100%{ transform: translate(-50%, -50%) translateY(0) rotate(0deg); }
  50%    { transform: translate(-50%, -50%) translateY(-12px) rotate(0.6deg); }
}

.hero-icon{
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased; 
}


.b2c2 .b2b-txt .tit2 span {
    color: #005DAC;
}

.b2c2 .b2b-txt .sub-txt {
    margin: 10px 0 45px;
}

.b2c2 .b2b-txt .application-down {
    justify-content: center;
}

.b2c3 {
    background: url(../img/b2c-bg01.jpg) no-repeat !important;
}

.b2c3 .b2b-grid .b2b-card{
    padding: 100px 60px 100px 60px !important;
}

.b2c4{
  padding: 180px 0;
  background:#fff;
}
.b2c4-inner{
  margin:0 auto;
}
.b2c4-head{
  text-align:center;
  margin-bottom: 28px;
}
.b2c4-title{
  font-size: 4rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin:0;
  color:#111;
}
.b2c4-accent{
  color:#005DAC;
}
.b2c4-sub{
  margin:10px 0 0;
  font-size: 20px;
  line-height: 1.6;
  color:#666;
}
.b2c4-line{
  height:2px;
  background:#161616;
  margin: 50px 0 0;
}

.b2c4-item{
  display:grid;
  grid-template-columns: 72px 320px 1fr; 
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.b2c4-no{
  font-weight: 800;
  color:#005DAC;
  letter-spacing: .02em;
  font-size: 20px;
  line-height: 1;
  padding-top: 4px;
}
.b2c4-item-title{
  margin:0;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-weight: 600;
  color:#161616;
}
.b2c4-desc-text{
  margin:0;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color:#161616;
}
.b2c4-bullets{
  margin: 10px 0 0;
  padding:0;
  list-style:none;
  color:#4D4D4D;
  font-size: 16px;
  line-height: 1.6;
}
.b2c4-bullets li{
  position:relative;
  padding-left: 14px;
}
.b2c4-bullets li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#111;
  opacity:.7;
}

.b2c6 {
    margin-top: 14rem;
}

.b2c5 .process-img{
  margin-top: 26px;
  background-color: #fff;
  width: 1520px;
  margin: 0 auto;
}

.b2c5 .process-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 1300px;
  margin: 0 auto;
  padding: 145px 0;
}

.b2c5 .p-card{
  position: relative;
  border-radius: 20px;
  background: #F7FAFC;
  padding-bottom: 55px;
}

.b2c5 .p-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.b2c5 .p-badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #0a5aa6;
  letter-spacing: .2px;
  margin-left: 40px;
}

.b2c5 .p-icon{
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  position: absolute;
  right: -15px;
  top: -35px;
}

.b2c5 .p-icon img{
  object-fit: contain;
  display: block;
}

.b2c5 .p-title{
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  padding: 40px 40px 0;
}

.b2c5 .p-line{
  height: 1px;
  background: rgba(15, 23, 42, .10);
  margin: 30px 40px;
}

.b2c5 .p-desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, .70);
  padding: 0 40px;
}

@media (max-width: 1024px){
  .b2c5 .process-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .b2c5 .process-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* device */
.device-wrap .sub-content {
  margin: 4rem 0 22rem !important;
}

.device-wrap2 .sub-content {
  margin: 0 !important;
}


.device-video {
    margin-bottom: 4rem;
}

.video-section{
  width: 100%;
  background: #fff;
}

.video-container{
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrap{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
}

.video-wrap iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-overlay p{
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}


.video-wrap { position: relative; }
/* 기본 상태: 가드가 모든 마우스 이벤트를 가로챔 */
.video-wrap .iframe-guard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent; /* 투명하지만 존재함 */
    pointer-events: auto;     /* 마우스 이벤트를 가드가 먹음 -> 스크롤 원활 */
}

/* 클릭 후 활성화 상태: 가드가 마우스 이벤트를 무시함 -> 영상 조작 가능 */
.video-wrap.is-active .iframe-guard {
    pointer-events: none;
    display: none; /* 혹은 아예 숨김 */
}

.device-features{
  padding: 120px 0 150px;
  background: #f9f9f9;
}

.features-brand img {
    width: 100%;
}

.features-head{
  text-align: center;
  margin-bottom: 64px;
}
.features-eyebrow{
  font-size: 20px;
  color: #ACACAC;
  margin: 0 0 15px;
}
.features-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0;
  color: #111;
}
.features-brand .plus{
  font-size: .9em;
  vertical-align: super;
}
.features-brand .brand-mark{
  width: 26px;
  height: 18px;
  display: inline-block;
  border: 2px solid #27a7ff;
  border-left-color: transparent;
  transform: skewX(-20deg);
  border-radius: 4px;
}

.features-grid{
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px) 1fr;
  align-items: center;
  gap: 40px;
}

.feature-card{
  text-align: center;
  padding: 8px 0;
}
.feature-title{
  font-size: 3rem;
  font-weight: 700;
  color: #007AE2;
  margin: 0 0 10px;
}
.feature-desc{
  font-size: 1.8rem;
  line-height: 1.6;
  color: #3E3A39;
  margin: 0;
}

.features-col{
  display: grid;
  gap: 64px;
}

.features-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-product{
  height: auto;
  display: block;
}

.fitrus-hero2 {
  position: relative;
  background: url(../img/ftrus-plus-bia.jpg) center / cover no-repeat;
  width: 100%;
  min-height: 1030px;
  padding-top: 195px;
}

.Fitrus-Light-hero2 {
  background: url(../img/ftrus-Light-bia.jpg) center / cover no-repeat;
}

.Fitrus-a-hero2 {
  background: url(../img/ftrus-a-bia.jpg) center / cover no-repeat;
}

.fitrus-hero2 .sub-tit {
    margin-bottom: 3.2rem;
}

.fitrus-hero2 .sub-btn-box {
    margin-top: 4rem;
}

.fitrus-hero2 .sub-btn-box a {
    border: 1px solid #ddd;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 999px;
    transition: all 0.3s;
}

.fitrus-hero2 .sub-btn-box a:hover {
  background-color: #005DAC;
  color: #fff;
  border: 1px solid #005DAC;
}

.fitrus-indicators {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.fitrus-indicators .indicator {
    position: absolute;
    width: auto;
    max-width: 220px; 
    z-index: 2;
}

.indicator-heart {
    top: 42%;
    left: 25%;
}

.indicator-fat {
    top: 46%;
    right: 25%;
}

.indicator-weight {
    bottom: 17%;
    left: 50%;
    transform: translateX(-50%);
}

.spec-compare{ padding:125px 0; background:#fff; }
.spec-compare .sub-tit{
  text-align:center;
  font-weight:800; color:#111; margin:0 0 60px;
}

.spec-table-block{ margin-top: 0; }
.spec-table-block--specs{ margin-top: 30px; }

.spec-table{
  width:100%;
  border-collapse: separate;
  border-spacing:0;
  table-layout: fixed;
}

.col-label{ width: 320px; }
.col-prod{ width: calc((100% - 240px) / 3); }

.spec-table th, .spec-table td{
  border-left: 1px solid #eee;
}

.spec-table th:nth-child(4), .spec-table td:nth-child(4) {
    border-left: 0;
}
.spec-table tr > :first-child{ border-left: 0; }

.spec-block__title{
  display:inline-block;
  font-size:24px; 
  font-weight:700; color:#005DAC;
}

.th-label{ text-align:left; vertical-align:top; padding: 10px 10px 12px 0; }
.th-prod{ padding: 0 0 12px; text-align:center; vertical-align:top; }

.spec-product{padding-top: 90px;}
.spec-product__img{
  height: 90px; display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.spec-product__img img{
  max-height: 90px; max-width: 100%; object-fit: contain; display:block;
}
.spec-product__name{ font-size:14px; font-weight:700; color:#4D4D4D; }

.row-label{
  height: 34px;
  text-align:left;
  font-size:18px;
  font-weight:600;
  padding: 0 10px 0 0;
  vertical-align:middle;
}

.cell-check, .cell-val{
  height: 68px;
  text-align:center;
  vertical-align:middle;
  font-size:18px;
  color: rgba(0,0,0,.65);
  padding: 0;
}

.cell-check{
  font-size:19px;
  font-weight:500;
  color:#0b57d0;
}
.cell-dash{
  color: rgba(0,0,0,.25);
  font-weight:600;
}


.th-highlight,
.cell-highlight{
    background:#F8F9FB;
}

.spec-table-block .th-label {
    margin-bottom: 2.7rem;
    padding: 0;
}

.technical-skills {
    background: url(../img/technical-skills.jpg) no-repeat;
    color: #fff;
    padding: 200px 0;
}

.technical-skills .txt-box {
    text-align: left;
    margin-bottom: 0 !important;
}

.technical-skills .txt-box .small-tit::before {
    width: 32px;
    height: 2px;
    background-color: #005DAC;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.technical-skills .txt-box .small-tit {
    font-size: 2.2rem;
    font-family: "Oswald";
    position: relative;
    padding-left: 4rem;
}

.technical-skills .txt-box .sub-tit {
    font-size: 4.8rem;
    margin-bottom: 4rem;
}

.technical-skills .txt-box .sub-txt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
}

.technical-skills .sub-btn-box a {
    background-color: #fff;
    color: #222;
    padding: 9px 35px;
    border-radius: 5px;
    font-size: 1.6rem;
    font-family: "Oswald";
    font-weight: 500;
}

.app-promo{
  background:#F5F8FE;
  padding: 213px 0;
  overflow:hidden;
}

.app-promo__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  align-items:center;
  gap: 70px;
}

.app-promo__k-title{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color:#161616;
  margin:0 0 32px;
}

.app-promo__k-desc{
  font-size: 20px;
  line-height: 1.6;
  
}
.app-promo__k-desc p{ margin: 0 0 16px; font-size: 20px; line-height: 1.6; color: #4D4D4D; font-weight: 300;} 
.app-promo__k-desc p:last-child{ margin-bottom:0; }

.app-promo__center{
  display:flex;
  justify-content:center;
  align-items:center;
}
.app-promo__phone{
  height: auto;
  display:block;
}

.app-promo__label{
  font-size: 2.2rem;
  font-weight: 600;
  color:#005DAC;
  margin-bottom: 20px;
}

.app-promo__title{
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0 0 54px;
  color:#111;
}

.app-promo__desc{
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 40px;
  max-width: 420px;
  font-weight: 300;
}

.app-promo__stores{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  overflow:hidden;
  transition: transform .2s ease, opacity .2s ease;
}
.store-badge img{
  height: 44px;
  width: auto;
  display:block;
}
.store-badge:hover{ transform: translateY(-2px); opacity:.95; }


.other-products .txt-box {
    text-align: left;
    margin-bottom: 3rem;
}

.other-products .txt-box .sub-tit {
    margin-bottom: 2rem;
}

.bia .inner{
  margin: 0 auto;
}

/* 타이틀/문단 */
.bia-txt{
  text-align: center;
  margin-bottom: 60px;
}
.bia .sub-tit{
  margin-bottom: 40px;
}
.bia .sub-txt{
  font-size: 16px;
  line-height: 1.7;
  color: rgba(17,17,17,.75);
}

.bia-visual{
    background: #F9F9F9;
    border-radius: 8px;
    padding: 70px 40px;
}

.bia-visual-inner{
    display: flex;
    align-items: center;
    justify-items: center;
    width: 1000px;
    margin: 0 auto;
    gap: 120px;
}

.bia-illu img{
    display: block;
    max-width: 100%;
    height: auto;
}

.bia-desc{
  margin-top: 70px;
}

.bia-line{
  height: 2px;
  background: #161616;
}

.bia-list{
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.bia-list li{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.bia-list .no{
  font-weight: 700;
  color: #005DAC;
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 1;
  padding-top: 2px;
}

.bia-list p{
  margin: 0;
  font-size: 18px;
  color:#4D4D4D;
}


/* D-CARE  */
.d-care-visual{
    background: url(../img/d·care-bg.jpg) no-repeat;
    width: 100%;
    min-height: 588px;
}
.d-care-visual img{
    height: auto;
    display: block;
    width: 1355px;
    margin: 0 auto;
}

.d-care-sim{
    text-align: center;
    margin: 120px auto;
}

.d-care-sim .sim-tit{
    font-size: 5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 70px;
}

.sim-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 40px;
    text-align: left;
}

.sim-item {
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #eee;
    margin-top: 2rem;
    padding-bottom: 3rem;
}

.sim-badge{
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #005DAC;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    z-index: 0;
}

.sim-badge::before{
    content:"";
    position: absolute;
    inset: -11px;         
    border-radius: 999px;
    border: 1px solid rgba(0, 93, 172, 0.4);
}

.sim-name{
    margin: 2px 0 6px;
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

.sim-desc{
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

  .pro-content{
    background:#fff;
    padding: 0 0 130px;
  }

 .pro-hero{
  /* height:639px;  ❌ 고정 제거 */
  min-height: clamp(420px, 70svh, 639px);
  display:flex;
  align-items:center;

  background: url(../img/professional-bg.jpg) center / cover no-repeat;
  padding: clamp(70px, 10svh, 110px) 0; /* 높이 확보용 */
}

.pro-hero__txt{
  /* width: 1520px; ❌ */
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px; /* 모바일 여백 */
}

.pro-hero__tit{
  font-size: clamp(2.6rem, 4vw, 5rem);
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 clamp(18px, 3vw, 40px);
}

.pro-hero__list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: clamp(10px, 1.4vw, 14px);
  color:#222;
  line-height: 1.6;
}

.pro-hero__list li{
  position:relative;
  padding-left: 30px;
  font-size: clamp(1.5rem, 1.6vw, 2.2rem);
}

.pro-hero__list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.25em;
  width: clamp(14px, 1.2vw, 18px);
  height: clamp(14px, 1.2vw, 18px);
  border-radius:999px;
  background: #0b57d0;
}

.pro-hero__list li::after{
  content:"";
  position:absolute;
  left: clamp(3px, .35vw, 4px);
  top: calc(0.25em + clamp(4px, .4vw, 5px));
  width: clamp(7px, .7vw, 9px);
  height: clamp(4px, .45vw, 5px);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.pro-table-wrap{
    padding-top: 120px;
}

.pro-table-head{
    position: relative;
    margin-bottom: 10px;
}

.pro-table-cap{
    display:block;
    text-align:right;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pro-table{
    border-top: 2px solid #161616;
}

.pro-row{
    display:grid;
    grid-template-columns: 70px 260px 1fr;
    gap: 18px;
    align-items:center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.pro-no{
    font-weight: 800;
    font-size: 20px;
    color:#005DAC;
    padding-left: 10px;
}

.pro-name{
    font-size: 20px;
    font-weight: 700;
    color:#111;
    letter-spacing: -0.01em;
}

.pro-desc{
    font-size: 20px;
    color:#4D4D4D;
    line-height: 1.6;
}

.ai-model{
    background:#fff;
    overflow:hidden;
}

.ai-model__txt{
    text-align:center;
    margin-bottom: 55px;
}

.ai-model__tit{
    margin:0;
    font-size: 5rem;
    font-weight: 800;
    color:#111;
}

.ai-model__sub{
    margin: 4rem auto 0;
    font-size: 2.6rem;
    line-height: 1.8;
    color:#005DAC;
    font-weight: 700;
}

.ai-visual{
    position: relative;
    width: min(1190px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto 45px;
}

.ai-visual__orbit{
    position:absolute;
    inset: 0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index: 1;
    pointer-events:none;
}
.ai-visual__orbit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-visual__icon{
    position:absolute;
    z-index: 2;
    height: auto;
    pointer-events:none;
}

.icon-shield{
    left: 17%;
    top: 21%;
}
.icon-ai{
    left: 7%;
    bottom: 22%;
}
.icon-clipboard{
    right: 11%;
    top: 41%;
}

.ai-visual__phone{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    animation: phoneFloat 3.8s ease-in-out infinite;
    will-change: transform;
}
.ai-visual__phone img{
    width:100%;
    height:auto;
    display:block;
}

@keyframes phoneFloat{
    0%,100%{
      transform: translate(-50%,-50%) translateY(0);
    }
    50%{
      transform: translate(-50%,-50%) translateY(-12px);
    }
}

.ai-model__bottom{
    text-align:center;
}
.ai-model__bottom p{
    margin:0 auto;
    font-size: 2.6rem;
    line-height: 1.8;
    color:#222;
  }
.ai-model__bottom strong{
    font-weight: 800;
}

/* media-ci */
.media .sub-content {
    margin: 12rem 0 22rem;
}

.ci .sub-tit {
    text-align:center;
    margin-bottom: 6rem;
}

.ci-logo-box {
    width: 1520px;
    margin: 0 auto;
    background: #F9F9F9;
    padding: 50px 50px;
}

.ci-logo-box .w-bg {
    background-color: #fff;
    width: 100%;
}
.ci-logo-box img {
    display:block;
    margin: 0 auto;
    height: auto;
    padding: 78px 536px;
}

.ci-desc{
    font-size: 22px;
    text-align: center;
    color:#333;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 3.3rem;
}

.ci-btns{
    margin-top: 16px;
    display:flex;
    justify-content:center;
    gap: 10px;
    flex-wrap: wrap;
}
.ci-btn{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 14px 44px;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    background:#fff;
    color:#4D4D4D;
    font-size: 16px;
    font-weight: 500;
    text-decoration:none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ci-ic{
    font-size: 12px;
    line-height: 1;
    opacity: .75;
}

.ci-color{
    margin-top: 115px;
}
.ci-color-tit{
    margin: 0 0 14px;
    font-size: 5rem;
    font-weight: 800;
    color:#111;
    text-align: center;
    margin-bottom: 7rem;
}
.ci-color-line{
    height: 2px;
    margin: 0 auto 80px;
    background: #161616;
}

.ci-color-line2 {
    height: 1px;
    margin: 80px auto 0;
    background: #eee;
}

.ci-color-grid{
    width: min(1200px, 100%);
    margin: 0 auto;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px;
    text-align:left;
    align-items:center;
}

.ci-color-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 138px;
}

.ci-color-name{
    margin: 0 0 10px;
    font-size: 3rem;
    font-weight: 800;
    color:#111;
    font-family: "Oswald";
}

.ci-color-spec{
  list-style:none;
  padding:0;
  margin:0;
  font-size: 16px;
  color:#111;
}

.spec-row{
  display:flex;
  align-items:center;
  gap: 16px;
  margin-bottom: 6px;
}

.spec-label{
  font-weight: 800;
}

.spec-val{
  min-width: 15px;
  font-weight: 500;
  color:#333;
  margin-right: 14px;
}

.spec-hex{
  margin-top: 10px;
  font-size: 16px;
}

.spec-hex .spec-label{
  font-weight: 800;
  margin-right: 8px;
  letter-spacing: 0.02em;
}

.spec-hex-val{
  letter-spacing: 0.04em;
}


.ci-color-chip{
  width: 136px;
  height: 136px;
  border-radius: 999px;
  background: var(--chip);
  flex: 0 0 auto;
}

 

/*inquiry*/

/* Layout */
.inquiry .sub-tit {
    margin-bottom: 4.6rem;
}
.inquiry{
  padding: 120px 0;
  background: #fff;
}
.inquiry .inner{
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 130px;
  align-items: start;
}

.inquiry-card{
    background: #005DAC;
    color: #fff;
    border-radius: 6px;
    padding: 52px 40px;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}
.card-title{
  font-weight: 500;
  margin: 0 0 6px;
  font-size: 3rem;
  font-family: "Oswald";
}
.card-subtitle{
    font-weight: 500;
    margin: 0;
    font-size: 3rem;
    line-height: 1.4;
    font-family: "Oswald";
}
.card-list{
    margin: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 18px;
}
.card-row{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
}
.card-row dt{
  font-weight: 700;
  font-size: 18px;
  font-family: "Oswald";
}
.card-row dd{
  margin: 0;
  font-size: 18px;
  font-family: "Oswald";
  font-weight: 400;
}
.card-row a{
  color: #fff;
  text-decoration: none;
}
.card-row a:hover{
  border-bottom-color: rgba(255,255,255,.8);
}

.card-logo{
  position: absolute;
  left: 36px;
  bottom: 26px;
  user-select: none;
}
.card-logo .osd{
  display: block;
  font-size: 86px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}
.card-logo .brand{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .35em;
}

/* Right side */
.inquiry-title{
  margin: 0 0 40px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

/* Form */
.form{
  width: 100%;
}
.field{
  margin-bottom: 1.8rem;
}
.field label{
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
}
.field input,
.field textarea{
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #d9d9d9;
    transition: border-color .2s ease;
}
.field textarea{
  resize: vertical;
  min-height: 120px;
}
.field input::placeholder,
.field textarea::placeholder{
  color: rgba(17,17,17,.35);
}

/* Button */
.form-actions{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.btn-send {
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 35px;
  border-radius: 999px;
  cursor: pointer;
}

.contact-field{
  width: 100%;
  max-width: 520px;
  margin-bottom: 3.8rem;
}

.contact-label{
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.contact-input {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-input input{
  width: 100%;
  max-width: 140px;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  padding: 6px 4px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  outline: none;
  background: transparent;
  transition: border-color .2s ease;
}

.contact-input input:focus {
  border-bottom-color: #111;
}

.contact-input .dash{
  font-size: 18px;
  font-weight: 500;
  color: #999;
  transform: translateY(-2px);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #111; 
  color: #111;
}

.brochure.download .sub-tit {
  text-align: center;
}

.brochure.download{
  background:#fff;
}

.brochure-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  
}

.brochure-item{
  text-decoration: none;
  color: inherit;
  display: block;
}

.brochure-card{
  position: relative;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 46px 32px;
  overflow: hidden;
}

.brochure-thumb{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.brochure-thumb img{
  width: min(240px, 100%);
  height: 340px;
  display:block;
  transition: transform .35s ease;
  transform: translateZ(0);
}

.brochure-overlay{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.12);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.dl-circle{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: #005DAC;
  display:grid;
  place-items:center;
  transform: scale(.92);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  box-shadow: 0 14px 28px rgba(11,87,208,.28);
}

.dl-circle svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}

.brochure-item:hover .brochure-overlay{
  opacity: 1;
}
.brochure-item:hover .dl-circle{
  opacity: 1;
  transform: scale(1);
}
.brochure-item:hover .brochure-thumb img{
  transform: scale(1.03);
}

.brochure-pill{
  display: flex;         
  align-items: center;
  justify-content: center;
  margin: 18px auto 0; 
  width: 92px;
  height: 34px;
  border-radius: 999px;
  background: #005DAC;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-family: "Oswald";
}

.brochure-title{
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 700;
  text-align:center;
  letter-spacing: -0.02em;
  color:#111;
}

.search-wrap .search-list .nice-select.open .list {
  width: 100%;
}

.search-wrap .search-list .nice-select .current {
  font-size: 1.6rem;
  font-weight: 500;
}
