

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    /* .navbar a {
        float: none;
        width: 100%;
    } */
}

/**********************************/
.app {
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

/* body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

section {
    width: 100%;
    height: calc(100% - 50px);
    height: -moz-calc(100% - 50px);
    height: -webkit-calc(100% - 50px);

    overflow-y: auto;

    text-align: center;
    font-size: 18px;
} */

article {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 27px;
    text-align: center;
}

/* select box */
select {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid darkgray;
    background-color: white;
    width: calc(90% - 13px);
    height: 30px;
    font-size: 16px;
    color:#333;
    padding: 0 5px 0 5px;
    margin: 0px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
select::placeholder{
    color:  rgb(123, 131, 167);
    font-style: italic;
}
select::-webkit-input-placeholder {
    color: rgb(123, 131, 167);
    font-style: italic;
}
select:-ms-input-placeholder {
    color: rgb(123, 131, 167);
    font-style: italic;
}

.selectAutoWidth{
    width: auto;
}

/**********************************/
/* Style the top navigation bar */
.navbar {
    display: block;
    width: 100%;
    overflow: hidden; /* Hide overflow */
    background-color: white;

    border-bottom: 1px solid rgba(128, 128, 128, 0.121);

}

/* Style the navigation bar links */
.logoArea {
    float: left; /* Make sure that the links stay side-by-side */
    display: block; /* Change the display to block, for responsive reasons (see below) */
    color: black;
    text-align: center; /* Center the text */
    padding: 18px 15px; /* Add some padding */
    text-decoration: none; /* Remove underline */
}

.logoImage {
    height: 20px;

    vertical-align: middle;
}

.rightNavArea {
    float: right;
    margin: 15px 10px 15px 0px;
    padding: 0 5px 0 5px;

    /* border-radius: 5px;
    border: 1px solid rgb(131, 125, 125); */
}


/**********************************/
.content {
    display: block;
    width: 100%;
    height: calc(100% - 58px);
    margin: 0 0 0 0;
    padding: 0 0 0 0;

    overflow-y: overlay;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
}

.content::-webkit-scrollbar {
    display: none;
    width: 10px;
}
.content::-webkit-scrollbar-thumb {
    background-color: grey;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.content::-webkit-scrollbar-track {
    display: none;
}

/* information block */
.rowArea {
    display: flex;

    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    vertical-align: middle;
    text-align: center;

    padding: 50px 5px 50px 5px;
    color: rgb(70, 65, 65);

    /* border:1px solid blue; */
    /* background-image: url("../common/images/hpMainBg.png"); */
}
.rowArea1{
    background-color: #fffcfa;
}
.rowArea2{
    background-color: #f2f2f2;
}
.rowArea3{
    background-color: #bbcff09b;
}
.rowArea4{
    background-color: rgba(206, 205, 205, 0.13);
}
.rowArea5{
    background-color: rgba(169, 167, 238, 0.07);
}
.rowAreaReverse{
    flex-direction: column-reverse;
}

.textArea {
    display:block;
    margin: auto 15px auto 15px;
    padding: 0;

    /* border: 1px solid red; */
}
.textAreaLeft {
    text-align: left;
}
.textAreaCenter {
    text-align: center;
}
.textAreaBorder {
    width:45%;
    background-color: #fffcfa;
    padding:10px;
    margin-bottom: 15px;

    /* border: 1px solid red; */
}
.textAreaFullWidth {
    width:100%;
    margin:0 auto 20px auto;
}
.textAreaWideScreen {
    width:70%;
    margin:0 auto 20px auto;
}

.imageArea {
    display:block;
    margin: 0 15px 0 15px;

    /* border: 1px solid red; */
}


.mainTitle {
    display:block;
    color:#2f0e02de;
    font-size: 70px;
    font-weight: bolder;
    white-space: pre-line;
}

.mainTitleDescription {
    margin-top: 5px;
    color:#2f0e02de;
    font-size: 55px;
    font-weight: bolder;
    white-space: pre-line;
}

.mainDescription {
    margin-top: 10px;
    font-size: 20px;
    white-space: pre-line;
}

.mainTitleImage {

    height: 500px;

    border-radius: 10px;
}

.sectionTitle {
    width:100%;
    text-align: left;
    display:block;
    color:#2f0e02de;
    font-size: 50px;
    font-weight: bolder;
    white-space: pre-line;

    /* border: 1px solid red; */
}

.sectionRowContentArea{
    width: 100%;
    margin-top: 30px;
    text-align: center;

    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

    /* border: 1px solid blue; */
}

.sectionRowContentAreaStart{
    justify-content: start;
    /* margin-top:10px; */
    /* border: 1px solid blue; */
}

.sectionRowTitle {
    font-size: 22px;
    font-weight: bolder;
    color:#2f0e02de;
    white-space: pre-line;

    /* border: #000 1px solid; */
}

.sectionRowDescription {
    width:300px;
    margin-top: 15px;
    font-size: 20px;
    color:#2f0e02de;
    white-space: pre-line;
}

.sectionRowDescriptionFullWidth {
    width:100%;
    /* border: 1px red solid; */
}

.useCaseImageArea {
    display:block;
    margin: 10px 0 0 0;
    text-align: center;

    /* border: 1px solid red; */
}

.useCaseImage {
    width: 300px;

    border-radius: 10px;
}

.numberBoxImage {
    width: 35px;
    vertical-align: bottom;

    padding:0;
    margin:0;
}

/**********************************/
.footer {
    padding: 20px; /* Some padding */
    text-align: center; /* Center text*/
    background: white;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
}

.footer span {
    color: black;
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
}

/* Change color on hover/mouse-over */
.footer span:hover {
    color: darkgray;
    cursor: pointer;
}

/**********
* Install App    *
***********/
.installAppAreaContainer {
    display: block;

    width: 100%;

    overflow-y: auto;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */

    /* border:1px solid blue; */
}
.installAppAreaContainer::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.installAppListArea {
    display: flex;

    width:100%;

    justify-content: space-evenly;
    flex-wrap: wrap;

    /* border:1px solid red; */
}

.eachInstallAppArea {
    /* border: 1px solid blue; */

    display: block;
    overflow: hidden;

    width: 80px;
    height: 80px;

    text-align: center;

    margin: 0 0 15px 1px;
    padding: 3px 0 0 0;

    border-radius: 15px;
}

.eachInstallAppImage {
    /* border: 1px solid red; */

    max-width: 100%;
    max-height: 300px;
    margin: 0px 0px 0px 0px;
    padding: 0 0 0 0;
}

.eachInstallAppImage:active {
    opacity: .7;
}

.eachInstallAppTitle {
    /* border: 1px solid red; */

    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;

    padding: 0 0 0 0;
    margin: 0px 0px 0px 0px;

    font-size: 17px;
    font-weight: 100;
}

.installAppGuideArea {
    /* border: 1px solid blue; */

    display: block;
    overflow: hidden;

    text-align: center;

    margin: 0 0 15px 1px;
    padding: 3px 0 0 0;
}

.installAppGuideImage {
    border: 1px solid gray;
    max-width: 98%;
    margin: 0px 0px 0px 0px;
    padding: 0 0 0 0;
}

.installAppGuideImage:active {
    opacity: .7;
}


/**********
* Modal Area    *
***********/
/* The Modal (background) */
.modal {
    display: block; /* Hidden by Vue.js component */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4);

    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}

@-webkit-keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}


/* Modal Content */
.modal-content {
    display: block;

    line-height: 50px;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 100%;
    max-height: 100%;
    overflow-y: auto; /* Enable scroll if needed */
    text-align: center;

    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);

    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.modal-content-top {
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation-name: animatetop;
    animation-name: animatetop;
}

.modal-content-bottom {
    position: fixed;
    bottom: 0;
    top:auto;

    -webkit-animation-name: animatebottom;
    animation-name: animatebottom;
}

.modal-content-left {
    position: fixed;
    height: 100%;
    width: 80%;

    -webkit-animation-name: animateleft;
    animation-name: animateleft;
}

.modal-content-full {
    position: fixed;
    width: 100%;
    height: 100%;

    padding: 0;
    margin: 0;
    border: 0;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@-webkit-keyframes animatebottom {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
  }

@keyframes animatebottom {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes animateleft {
    from {left: -300px; opacity: 0}
    to {left: 0; opacity: 1}
  }

@keyframes animateleft {
    from {left: -300px; opacity: 0}
    to {left: 0; opacity: 1}
}

.modal-header {
    position: relative;
    display:block;
    padding: 0px 16px;
    text-align: center;

    /* border:1px solid red; */
}

.modal-body {
    /* border: 1px soild red; */

    position: relative;
    display: block;

    padding: 2px 16px;

    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-body-full {
    width: 100%;
    height: 100%;

    overflow-y: hidden;
    padding: 0;
    margin: 0;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* The Close Button */
.close {
    display:flex;
    align-items: center;
    justify-content: end;

    width:30px;
    height: 30px;
    color: rgb(119, 112, 112);
    float: right;
    font-size: 25px;
    font-weight: bold;

    border: 1ps solid red;
}
.close:active,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.closeButtonIcon {
    width: 25px;
    height: 25px;
}

/**********
* Main    *
***********/
.title{
    display:block;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0px;
}

.titleDescription{
    display: block;
    font-size: 17px;
    text-align: center;
    line-height: 25px;
    white-space: pre-line;
}

.middleTitleDescription{
    font-size: 17px;
    text-align: left;
}

/******************
/* Terms of Service Area */
.termsServiceArea{
    /* border:1px solid red; */

    display: inline-block;
    width: 90%;
    text-align: left;
    margin-top: 5px;
    padding:0px;
    line-height: 25px;
    color: black;
}

.termsServiceTitle{
    font-weight: bold;
    font-size: 15px;
}

.termsServiceAgreeAll{
    /* border:1px solid blue;  */

    display: inline-flexbox;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 5px;
    padding: 0px;
    text-align: left;
    font-weight: bold;
    font-size: 17px;
}

.termsServiceAgreeDetail{
    border: 1px solid darkgray;

    display: inline-block;

    padding: 15px 18px 13px 18px;
}

.termsServiceAgreeDetailItem{
    /* border:1px solid red;  */

    display: inline-block;

    text-align: left;
    font-size: 15px;
}

.termsServiceAgreeDetailItemArrow{
    border:1px solid blue;

    display:inline-flex;
    width: 100%;
    text-align: right;
}

.termsIframe{
    border: 0px;
    width:100%;
    height: 420px;
}

.termsContent{
    white-space: pre-line;
    color: #666;
    line-height: 1.5;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 12px 16px 10px 16px;
    font-size: 15px;
    max-height: 400px;
    vertical-align: top;
}

/**********
* Form Objects    *
***********/
.input-container {
    display: block;
    width: 100%;
    margin: 0px 0 8px 0;
    line-height: 5px;

    /* border:1px solid red; */
}

.buttonVerticalSpace {
    display: block;
    margin: 0px;
    padding: 0px;
    height: 30px;
    width: 100%;
}

.hrSpace {
    display: block;
    margin: 10px 0 10px 0;
    padding: 0px;
    width: 90%;

    border:0.5px gray solid;
}

/**********
* Buttons    *
***********/
/* Action Button Area */
.actionButtonArea{
    width: 100%;
    text-align: center;
    align-items: center;

    margin: 0;
    padding: 10px 15px 20px 15px;
    box-sizing: border-box;
    border: 1px solid white;
    background-color: white;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    position: sticky;
    bottom:0px;
}

.actionButton {
    display: block;
    width: 100%;
    height: 40px;

    color: white;
    text-align: center;
    text-decoration: none;
    /* background-color: rgb(33, 128, 28); */
    background-color: #45289C;

    font-size: 15px;
    font-weight: normal;
    line-height: 18px;

    border: 1px solid  #45289C;
    border-radius: 10px;

    cursor: pointer;
}
.actionButton:active, .actionButton:hover {
    opacity: .7;
}

.actionButtonIcon {
    width: 18px;
    height: 18px;

    vertical-align: middle;
}

/**********
* Message Alert    *
***********/
.messageContentArea{
    width:100%;
    height: 100%;
    max-height: 300px;
    overflow: auto;
}

.messageContent{
    font-size: 17px;
    text-align: center;
    line-height: 23px;
    white-space: pre-line;
}

/**********
* Image Viewer    *
***********/
.imagesContainer {
    display: inline-block;

    width: 100%;
    max-height: 450px;

    text-align: center;
    overflow-y: auto;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */

    line-height: 25px;

    /* border: 1px solid red; */
}
.imagesContainer::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.eachImageArea {
    display: inline-block;

    text-align: center;

    margin: 0 0 15px 1px;
    padding: 3px 0 0 0;

    /* border: 1px solid blue; */
}

.eachImage {
    display: inline-block;

    max-width: 100%;

    margin: 0;
    padding: 0;
}

.eachImage:active {
    opacity: .7;
}

.eachImageTitle {
    /* border: 1px solid red; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;

    padding: 0 0 0 0;
    margin: 0px 0px 0px 0px;

    font-size: 17px;
    font-weight: 100;
}

.eachImageDescription {
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-line;

    padding: 0 10px 0 10px;
    margin: 0px 0px 0px 0px;

    font-size: 15px;
    font-weight: 100;
}

/**********
* Count    *
***********/
.countUl{
    display: flex;
    width: 100%;
    padding: 0;
    color: #666;
    justify-content: center;
    margin: auto;

    /* border:1px solid red; */

}
@media (min-width:800px) {    /* PC */
    .countUl {
        width: 100%;
    }
}

.countLi{
    width: 33%;
    list-style: none;

    /* border:1px solid blue; */
}

.countLi:first-child {
    border-left: 0;
}

.count{
    margin-bottom: 10px;
    color: rgb(87, 9, 9);
    overflow-y: auto;
    font-size: 40px;
}
@media (min-width:800px) {    /* PC */
    .count {
        font-size: 70px;
    }
}

.countTitle{
    font-size: 22px;
    font-weight: bold;
}
@media (min-width:800px) {    /* PC */
    .countTitle {
        font-size: 25px;
    }
}







/* 기본 폰트 설정 */
body {
  font-family: 'Noto Sans KR', sans-serif;
}
/* Remixicon 관련 불필요한/오류 유발 스타일 제거: Remixicon은 자동으로 아이콘을 로드함 */
/* :where([class^="ri-"])::before { content: "\f3c2"; } */

/* 히어로 섹션 배경 이미지 스타일 */
.hero-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
/* 히어로 섹션 콘텐츠는 z-index를 높여 배경 위에 보이도록 함 */
.hero-content {
  position: relative;
  z-index: 2;
}

/* 특징 카드 호버 효과 */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 탭 콘텐츠 기본 숨김 */
.tab-content {
  display: none;
}
/* 활성 탭 콘텐츠 표시 */
.tab-content.active {
  display: block;
}

/* 커스텀 체크박스 스타일 */
.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out; /* 체크 상태 변경 애니메이션 */
}
.custom-checkbox:checked {
  background-color: #45289C; /* 체크 시 배경색 */
  border-color: #45289C; /* 체크 시 테두리색 */
}
.custom-checkbox:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 모바일 메뉴 오버레이 스타일 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-overlay a {
    color: white;
    font-size: 1.8rem;
    padding: 15px 0;
    transition: color 0.2s;
}
.mobile-menu-overlay a:hover {
    color: #818CF8; /* secondary color */
}
.mobile-menu-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
}



/**********************************/
.footer {
    position: relative;

    padding: 20px 0 20px 0;
    box-sizing: border-box;

    background: rgba(9, 9, 9, 0.945);
    line-height: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.857);

    /* border:1px solid red; */
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footerContainer {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    align-items: start;

    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
}
@media (min-width: 600px) {    /* PC */
    .footerContainer {
        padding: 0 20px;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.footerCompanyInfo{
    /* border: 1px solid orange; */

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 15px;
    box-sizing: border-box;
}
.footerCompanyInfo > div:first-child {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
}
.footerCompanyInfo > div {
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.footerCompanyInfo > div[style*="cursor:pointer"] {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    margin-top: 8px;
}
.footerCompanyInfo > div[style*="cursor:pointer"]:hover {
    opacity: 1;
    color: #ffffff;
}

.footerTerms{
    /* border: 1px solid orange; */

    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;

    padding: 15px;
    box-sizing: border-box;
}
@media (min-width: 600px) {    /* PC */
    .footerTerms{
        align-items: flex-end;
        text-align: right;
    }

}

.footerMsg{
    font-size: 13px;
    opacity: 0.8;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-bottom: 10px;
}

.footerLinks {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-start;
    gap: 15px;
}
@media (min-width: 600px) {    /* PC */
    .footerLinks {
        gap: 20px;
        justify-content: flex-end;
    }
}
.footerLinks span {
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.857);
}
.footerLinks span:hover {
    opacity: 1;
    color: #ffffff;
}
.footerLinks span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.2s ease;
}
.footerLinks span:hover::after {
    width: 100%;
}

.footerCopyright {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 8px;
}

.footerSocial {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 15px;
}
@media (min-width: 600px) {    /* PC */
    .footerSocial {
        justify-content: flex-end;
        margin-top: 10px;
    }
}
.footerSocialButtonIcon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: brightness(1);
}

.footerSocialButtonIcon:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: brightness(1.2);
}
