@charset "UTF-8";
/* -----------------------------------------------------
	utility
----------------------------------------------------- */
@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.css");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
footer,
header,
hgroup,
menu,

section,
main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture {
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

/* safariでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* -----------------------------------------------------
	basic
----------------------------------------------------- */
html {

}

body {
    font-family: "SUIT Variable", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #121212;
}
@media screen and (max-width: 992px) {
  body {
    font-size: 3.2vw;
  }
}

img {
  width: 100%;
  height: auto;
}

/* -----------------------------------------------------
	option
----------------------------------------------------- */
br.pc {
  display: block;
}
@media screen and (max-width: 992px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 992px) {
  br.sp {
    display: block;
  }
}

/* -----------------------------------------------------
	pages
----------------------------------------------------- */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 992px) {
  .table-scroll .privacy__content--table {
    min-width: 700px;
  }
}
.product__fv {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url("../../Content/img/Pages/Product/product-fv01.jpg");
    background-size: cover;
    background-position: center;
}
.product__fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.product__fv--wrapper {
  position: absolute;
  padding-top: 18vw;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .product__fv--wrapper {
    padding-top: 30vw;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.product__fv--title {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .product__fv--title {
    font-size: 2.1rem;
  }
}
.product__fv--copy {
  font-size: 2rem;
  line-height: 34px;
}
@media screen and (max-width: 992px) {
  .product__fv--copy {
    font-size: 1.1rem;
  }
}
.product__cta {
  padding-top: 130px;
  padding-bottom: 130px;
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 992px) {
  .product__cta {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.product__cta--content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  .product__cta--content {
    flex-direction: column;
    gap: 0;
  }
}
.product__cta--title {
  font-size: 2.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 50px;
}
@media screen and (max-width: 992px) {
  .product__cta--title {
    font-size: 1.2rem;
  }
}
.product__cta--link {
  display: block;
  width: 400px;
  background-color: #23b14b;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 0 #1a8238;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}
@media screen and (max-width: 992px) {
  .product__cta--link {
    max-width: 200px;
  }
}
.product__cta--link:hover {
  top: 3px;
  box-shadow: 0 3px 0 #1a8238;
  background-color: #1fa144;
}
.product__function {
  padding-top: 130px;
  padding-bottom: 130px;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #f4f4f4;
}
@media screen and (max-width: 992px) {
  .product__function {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.product__function--title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .product__function--title {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.product__function--box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media screen and (max-width: 992px) {
  .product__function--box {
    flex-direction: column;
  }
}
.product__function--content {
  width: 30%;
  background-color: #fff;
  padding: 20px;
}
@media screen and (max-width: 992px) {
  .product__function--content {
    width: 100%;
  }
}
.product__function--img {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto 10px;
}
@media screen and (max-width: 992px) {
  .product__function--img {
    max-width: 100px;
    margin: 0 auto 5px;
  }
}
.product__function--sub {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .product__function--sub {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.product__function--copy {
  font-size: 1.1rem;
  line-height: 30px;
}
@media screen and (max-width: 992px) {
  .product__function--copy {
    font-size: 0.9rem;
    text-align: center;
  }
}
.product__function--link {
  display: block;
  width: 400px;
  background-color: #23b14b;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 0 #1a8238;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
  margin: 80px auto 0;
}
@media screen and (max-width: 992px) {
  .product__function--link {
    max-width: 200px;
    width: 100%;
  }
}
.product__function--link:hover {
  top: 3px;
  box-shadow: 0 3px 0 #1a8238;
  background-color: #1fa144;
}
.product__contact {
  padding-top: 130px;
  padding-bottom: 130px;
  padding-right: 10%;
  padding-left: 10%;
}
@media screen and (max-width: 992px) {
  .product__contact {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.product__contact--title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .product__contact--title {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
.product__contact--copy {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .product__contact--copy {
    font-size: 1rem;
  }
}
.product__contact--link {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  width: 400px;
  color: #333;
  text-align: center;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 0 #d4d4d4;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
  margin: 40px auto 0;
}
@media screen and (max-width: 992px) {
  .product__contact--link {
    font-size: 1.2rem;
    min-width: 200px;
    width: 100%;
  }
}
.product__contact--link:hover {
  top: 3px;
  box-shadow: 0 3px 0 #d4d4d4;
  background-color: #eaeaea;
}

/* 모바일 토글 메뉴 (#sidebar) 고정: News 페이지처럼 (자동 노출/잘림 방지) */
@media screen and (max-width: 992px) {
    #sidebar {
        font-size: 1rem !important; /* 전체 16px 고정 */
        line-height: 1.4 !important;
        min-height: 100vh !important; /* 화면 전체 높이로 잘림 방지 */
        padding: 20px !important; /* 내부 패딩 추가 */
        background: #fff !important; /* 배경 흰색으로 News처럼 */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important; /* 전체 너비 */
        z-index: 1000 !important; /* 상위 레이어 */
    }

        #sidebar h1 {
            font-size: 1.2rem !important; /* 로고 제목 크기 */
            margin-bottom: 1rem !important;
            text-align: center !important;
        }

        #sidebar .navbar-logo img {
            max-height: 35px !important; /* 로고 크기 모바일 적합 */
            width: auto !important;
        }

        #sidebar ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

            #sidebar ul li {
                margin-bottom: 0 !important; /* li 간격 없애기 (원본 타이트) */
                border-bottom: none !important; /* 구분선 완전 제거 */
                padding: 0.5rem 0 !important; /* li 패딩 최소화 */
            }

                #sidebar ul li a {
                    padding: 0.5rem 1rem !important; /* a 패딩 타이트하게 (원본처럼) */
                    margin-bottom: 0 !important;
                }

                    #sidebar ul li a:hover {
                        background: #f8f9fa !important; /* 호버 배경 연한 회색 */
                    }

                #sidebar ul li img { /* 화살표 아이콘 */
                    width: 16px !important;
                    height: auto !important;
                    margin-left: 1rem !important; /* 오른쪽 여백 */
                }

                /* 모바일 언어 드롭다운 (#sidebar 내) */
                #sidebar ul li .navbar-language {
                    margin-top: 0rem !important;
                    padding: 0 !important;
                }

                    #sidebar ul li .navbar-language .custom-select {
                        background: url('../../Content/img/icon/down-arrow.png') no-repeat 97% 53%/15px auto !important; /* 아이콘 유지 */
                        font-size: 1rem !important; /* 폰트 크기 원본처럼 */
                        color: #222222 !important; /* 텍스트 색상 검정으로 보이게 */
                        background-color: #fff !important; /* 배경 흰색으로 대비 */
                        width: 100% !important;
                        padding: 0.2rem 2.5rem 0.2rem 0.8rem !important; /* 패딩 원본처럼 타이트 (오른쪽 아이콘 여백) */
                        border: solid !important; /* 테두리 없애기 (원본처럼) */
                        border-radius: 0 !important; /* 라운드 없애기 */
                        -webkit-appearance: none !important;
                        -moz-appearance: none !important;
                        appearance: none !important;
                        margin-top: 0 !important; /* 상단 여백 없애기 */
                        margin-bottom: 0 !important; /* 하단 여백 없애기 */
                        overflow: visible !important; /* 텍스트 숨김 방지 추가 */
                    }

    /* 닫기 버튼 (.menu-mobile.close) */
    .menu-mobile.close {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        font-size: 1.2rem !important;
        z-index: 1001 !important;
    }

        .menu-mobile.close img {
            width: 20px !important;
            height: 20px !important;
        }
}

/* PC navbar는 그대로 (모바일 토글에만 초점) – 필요 시 추가 */
.navbar-toggleBtn {
    display: none !important; /* PC 숨김 */
}

@media screen and (max-width: 992px) {
    .navbar-toggleBtn {
        display: block !important; /* 모바일 보임 */
    }

        .navbar-toggleBtn img {
            width: 24px !important;
        }
}
/*# sourceMappingURL=style.css.map */