@charset "utf-8";

@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-Thin.otf) format("opentype");
    font-weight: 100;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-Light.otf) format("opentype");
    font-weight: 300;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-Regular.otf) format("opentype");
    font-weight: 400;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-Medium.otf) format("opentype");
    font-weight: 500;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-SemiBold.otf) format("opentype");
    font-weight: 600;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-Bold.otf) format("opentype");
    font-weight: 700;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-ExtraBold.otf) format("opentype");
    font-weight: 800;
}
@font-face {
    font-family: "Pretendard";
    src: url(../assets/font/Pretendard-Black.otf) format("opentype");
    font-weight: 900;
}
:root {
    /* Color */
    /* Primary */
    --color-primary-300: #f3f9fd;
    --color-primary-500: #236ed7;
    --color-primary-500-rgb: 35, 110, 215;

    /* pure */
    --color-white: #fff;
    --color-lightblack: #24292f;
    --color-black: #000000;
    --color-red: #9d1f32;
    --color-green: #25ada3;
    --color-sky: #339cd5;
    --color-blue: #005cb9;
    /* Neutral */
    --color-netural-500: #dddddd;
    --color-netural-600: #929292;
    --color-netural-700: #666666;
    --color-netural-800: #333333;

    /*//Color*/

    /* Font */
    --font-xsmall: 12px;
    --font-small: 14px;
    --font-primary: 16px;
    --font-medium: 20px;
    --font-large: 24px;
    --font-2xlarge: 50px;
    --font-3xlarge: 72px;
    /* //Font */

    /* layout */
    --layout-type1: 1590px;

    /* //layout */
}
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    font-family: "Pretendard", sans-serif;
    line-height: 100%;
}
html,
body {
    font-size: 16px;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
body {
    line-height: 100%;
    overflow-x: auto;
    overflow-y: scroll;
}
table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    position: relative;
}

p,
span {
    word-break: keep-all;
    color: var(--color-black);
}
a {
    text-decoration: none;
    color: var(--color-black);
}
ul,
li {
    list-style: none;
}
label {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

*:focus-visible {
    outline: none;
}

section {
    position: relative;
    width: 100%;
    height: 100%;
}
section + section {
    padding-top: 140px;
}
img {
    max-width: 100%;
}
/*----------------------Start: font-size---------------------------------------------------- */
h1,
.h1 {
    font-size: var(--font-3xlarge);
    font-weight: 700;
    letter-spacing: 0;
}

.h1type1 {
    font-size: 104px;
}
h2,
.h2 {
    font-size: var(--font-2xlarge);
    font-weight: 700;
    letter-spacing: 0;
}
.h2.type1 {
    font-size: 56px;
}

h3,
.h3 {
    font-size: var(--font-large);
    font-weight: 700;
    letter-spacing: 0;
}

.body1 {
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 100%;
}

.body2 {
    font-size: var(--font-primary);
    font-weight: 400;
    line-height: 100%;
}

.body3 {
    font-size: var(--font-small);
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
}
pre {
    white-space: pre-line;
    margin-left: 0;
    padding-left: 0;
}
.link {
    font-size: 15px;
    color: var(--color-primary-500) !important;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
}
.desc {
    font-size: var(--font-medium);
    color: var(--color-black);
    font-weight: 400;
    line-height: 150%;
}

/*---------------------//End: font-size---------------------------------------------------- */

/*----------------------Start: font-weight---------------------------------------------------- */
.txt-light {
    font-weight: 300 !important;
}
.txt-regular {
    font-weight: 400 !important;
}
.txt-medium {
    font-weight: 500 !important;
}
/*---------------------//End: font-weight----------------------------------------------------*/

/*---------------------Start: color---------------------------------------------------- */
.primary {
    color: var(--color-primary-500) !important;
}
.white {
    color: var(--color-white);
}
.black {
    color: var(--color-black);
}
.sky {
    color: var(--color-sky);
}
.blue {
    color: var(--color-blue);
}
.bluegray {
    color: #f2f6f9;
}
.red {
    color: var(--color-red);
}
.green {
    color: var(--color-green);
}

.gray-600 {
    color: var(--color-netural-600);
}
.gray-700 {
    color: var(--color-netural-700);
}
.whitebg {
    background-color: var(--color-white);
}
.primarybg {
    background-color: var(--color-primary-500);
}
.bluegraybg {
    background-color: #f2f6f9;
}
/*---------------------//End: color---------------------------------------------------- */

/*----------------------Start: space---------------------------------------------------- */
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-3 {
    margin-top: 12px !important;
}
.mt-4 {
    margin-top: 16px !important;
}

.mt-8 {
    margin-top: 40px !important;
}

.mt-10 {
    margin-top: 100px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-3 {
    margin-bottom: 12px !important;
}
.mb-4 {
    margin-bottom: 16px !important;
}

.mb-8 {
    margin-bottom: 80px !important;
}

.mb-10 {
    margin-bottom: 100px !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mr-5 {
    margin-right: 5px;
}
.ml-0 {
    margin-left: 0 !important;
}

.p-0 {
    padding: 0 !important;
}
.p-3 {
    padding: 12px !important;
}
.p-4 {
    padding: 16px !important;
}

.pt-0 {
    padding-top: 0 !important;
}
.pt-3 {
    padding-top: 12px !important;
}
.pt-4 {
    padding-top: 16px !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.pl-3 {
    padding-left: 12px !important;
}
.pl-4 {
    padding-left: 1px !important;
}
.pl-7 {
    padding-left: 70px !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pr-30 {
    padding-right: 12px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}

/*----------------------//End: space---------------------------------------------------- */

/*----------------------Start: text 배치---------------------------------------------------- */
.txt-left {
    text-align: left;
}
.txt-center {
    text-align: center;
}
.txt-right {
    text-align: right;
}
/*----------------------//End: text 배치---------------------------------------------------- */

/*----------------------Start: checkbox---------------------------------------------------- */
/* input 숨김 (접근성 유지) */
input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    padding: 0;
}

.chk-txt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-large);
    color: var(--color-netural-600);
    font-weight: 600;
    cursor: pointer;
}

.chk-input:disabled + .chk-txt {
    color: var(--color-netural-600);
    font-weight: 600;
}

.chk-txt::before {
    content: "";
    width: 58px;
    height: 58px;
    background-image: url(../assets/icons/unchkbx.svg);
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.chk-input:checked + .chk-txt::before {
    background-image: url(../assets/icons/chkbx.svg);
}
.chk-input:checked + .chk-txt {
    font-weight: 700;
    color: #e5c614;
}
/*----------------------//End: checkbox---------------------------------------------------- */

/*----------------------Start: file-upload---------------------------------------------------- */
.filebox {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    border: 1px solid;
    border-color: #f2f6f9;
    border-radius: 8px;
    position: relative;
    padding: 20px 35px;
    height: 80px;
    cursor: pointer;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
    transition: border-color 0.3s ease;
}
.filebox:focus-within {
    border-color: var(--color-primary-500);
}

input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.upload-label {
    color: var(--color-secondary-500);
    font-size: 12px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: fit-content;
    flex: 0 0 auto;
}
.upload-input {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #999;
    font-size: var(--font-medium);
    font-weight: 300;
    line-height: 130%;
}
.filebox.is-filled .upload-input {
    color: var(--color-black);
}

/*----------------------//End: file-upload---------------------------------------------------- */

/*----------------------Start: radiobox---------------------------------------------------- */
/* input 숨김 (접근성 유지) */
.rdo-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.rdo-txt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-medium);
    color: var(--color-black);
    font-weight: 500;
    line-height: 130%;
    cursor: pointer;
}

.rdo-txt::before {
    content: "";
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    border: 1.5px solid #999;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    transition: border-color 0.3s ease;
}
.rdo-input:checked + .rdo-txt::before {
    border: 3px solid var(--color-primary-500);
}

/*----------------------//End: radiobox---------------------------------------------------- */

/* ----------------------Start: title ----------------------------------------------------  */

.titles {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    position: relative;
    width: 100%;
}
.titles.type1 {
    row-gap: 50px;
}
.round-tit {
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: var(--font-medium);
    font-weight: 500;
    line-height: 1.5;
    border-radius: 20px;
    border: 1px solid;
    border-color: var(--color-black);
    width: 147px;
    height: 40px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}
.round-tit:hover,
.round-tit.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

/*----------------------//End: title ---------------------------------------------------- */

/* ----------------------Start: 아이템 배치----------------------------------------------------  */

.flex {
    display: flex;
}
.grid {
    display: grid;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.align-start {
    align-items: start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-evenly {
    justify-content: space-evenly;
}
.justify-between {
    justify-content: space-between;
}

/*----------------------//End: 아이템 배치 ---------------------------------------------------- */

/*----------------------Start: Button---------------------------------------------------- */
.btn {
    cursor: pointer;
    padding: 10px 20px;
    white-space: nowrap;
    flex: 1;
    max-width: 100%;
    transition: background-color 0.3s ease;
}
.btn.contact {
    border-radius: 4px;
    font-size: var(--font-medium);
    font-weight: 600;
    color: var(--color-white);
    width: 200px;
    padding: 20px 37px;
    background-color: rgba(0, 0, 0, 0.65);
    transition: background-color 0.3s ease;
    margin-top: 40px;
}
.btn.contact:hover {
    background-color: var(--color-black);
}
.num-btn {
    background-color: transparent;
    color: var(--color-white);
    opacity: 0.5;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.5;
    padding: 10px 0;
}
.num-btn.active,
.num-btn.next {
    opacity: 1;
}

.prevbtn {
    width: 40px;
    height: 40px;
    background-image: url(../assets/icons/previco.svg);
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.1);
    background-size: 24px auto;
    background-position: center;
    border: 1px solid var(--color-netural-500);
    border-radius: 50%;
    padding: 10px;
}
.nextbtn {
    width: 40px;
    height: 40px;
    background-image: url(../assets/icons/nextico.svg);
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.1);
    background-size: 24px auto;
    background-position: center;
    border: 1px solid var(--color-netural-500);
    border-radius: 50%;
    padding: 10px;
}

/* 햄버거 버튼 */
.btn.hamburger {
    position: relative;
    top: -5px;
    width: 40px;
    height: 28px;
    padding: 0;
    border: 0;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform-origin: 50% 50%;
    width: 100%;
    height: 2.6px;
    background-color: var(--hamburger-color, var(--color-black));
    transition:
        top 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}
.hamburger span {
    top: 50%;
    transform: translateY(-50%);
}
.hamburger span::before,
.hamburger span::after {
    content: "";
}
.hamburger span::before {
    top: -13px;
}
.hamburger span::after {
    top: 15px;
}

.hamburger:hover > span {
    background: transparent;
}
.hamburger:hover > span::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger:hover > span::after {
    top: 0;
    transform: rotate(-45deg);
}
/* //햄버거 버튼 */
.morebtns {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;

    color: var(--color-primary-500);
    font-weight: 700;
    line-height: 1.5;
    flex: 0;
    cursor: pointer;
}
.morebtns-label {
    color: inherit;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
}
.morebtns-label::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}
.morebtns:hover .morebtns-label::after {
    width: 100%;
}
.btn.moreico {
    color: inherit;
    display: inline-block;
    max-width: unset;
    flex: 0;
    background-color: transparent;
    padding: 10px 0;
}

.moreico svg {
    width: 45px;
    height: 15px;
}

.moreico:hover svg {
    transform: translateX(10px);
}
.morebtns:hover .moreico svg {
    animation: arrowSlide 0.6s ease infinite;
}

@keyframes arrowSlide {
    0% {
        transform: translateX(0);
    }
    60% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}
.btn.tit-middle {
    font-size: var(--font-medium);
    font-weight: 500;
    line-height: 150%;
}
.btn.whitebg {
    max-width: 220px;
    border: 1px solid;
    border-radius: 4px;
    border-color: var(--color-black);
    background-color: var(--color-white);
    text-align: center;
    padding: 0px 20px;
    display: block;
    align-content: center;
    height: 60px;
}
.btn.whitebg:hover {
    background-color: #f4f4f4;
}
.btn.blackbg {
    max-width: 220px;
    border: 1px solid;
    border-radius: 4px;
    border-color: transparent;
    background-color: var(--color-lightblack);
    color: var(--color-white);
    text-align: center;
    padding: 0px 20px;
    display: block;
    align-content: center;
    height: 60px;
}
.btn.blackbg:hover {
    background-color: var(--color-black);
}
.btn.blackbg.wide,
.btn.whitebg.wide {
    height: 80px;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    max-width: 320px;
}
/*----------------------//End: Button ---------------------------------------------------- */

/* ----------------------Start: icon----------------------------------------------------  */
.ico-small {
    width: 12px;
    height: 12px;
}
.ico-medium {
    width: 16px;
    height: 16px;
}
.ico-large {
    width: 24px;
    height: 24px;
}
/*----------------------//End: icon ---------------------------------------------------- */

/* ----------------------Start: tab----------------------------------------------------  */
.tabs {
    display: flex;
}

.tab {
    width: fit-content;
    border: 1px solid;
    border-color: transparent;
    border-radius: 30px;
    height: 60px;
    background-color: var(--color-white);
    font-size: var(--font-medium);
    color: var(--color-black);
    font-weight: 600;
    line-height: 100%;
    padding: 0 34px;
    text-align: center;
    align-content: center;
    display: inline-block;
    cursor: pointer;
}

.tabcontents {
    display: flex;
}
.tabcontent {
    width: 100%;
}

.tab-descriptions {
    display: none;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
    position: absolute;
    left: 0;
}

.tab-description {
    display: inline-flex;
    align-items: flex-start;
}

/*----------------------//End: tab ---------------------------------------------------- */

/*----------------------Start: table---------------------------------------------------- */

.table1 table {
    width: 100%;
}
th {
    font-size: var(--font-medium);
    font-weight: 500;
    color: var(--color-black);
    line-height: 100%;
    padding: 20px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid;
    border-color: var(--color-black);
    background: var(--color-white);
    z-index: 0;
    word-break: keep-all;
}

tr:hover {
    background-color: var(--color-secondary-100);
    cursor: pointer;
}
tbody {
    border-bottom: 1px solid;
    border-color: var(--color-black);
}
th.gradientbg {
    padding: 19px 0;
    border-radius: 30px 30px 0 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 0 6px rgba(145, 21, 89, 0.5);
    border-bottom: 12px solid transparent;
    background:
        linear-gradient(90deg, #f86b81 0%, #e86fb8 100%) padding-box,
        linear-gradient(90deg, #f86b81 0%, #e86fb8 100%) border-box;
    z-index: 1;
}

td {
    border-top: 0.5px solid;
    border-color: #e7eef2;
    background: var(--color-white);
    padding: 20px 8px;
    vertical-align: middle;
    text-align: center;
    font-size: var(--font-medium);
    font-weight: 300;
    color: var(--color-black);
    line-height: 140%;
    z-index: 0;
    word-break: keep-all;
}
td.whiteline {
    border-bottom: 1px solid;
    border-color: var(--color-white);
}

td.tit {
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 20px 41px;
}
td.subtit {
    font-size: 18px;
    line-height: 100%;
    text-align: left;
    padding: 20px 8px;
}
td.bg {
    background-color: #e7eef2;
}
td.gradientbg {
    padding: 20px 8px 18px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #f86b81 0%, #e86fb8 100%) border-box;
}
td.gradientbg.bottomline {
    border-bottom: 12px solid transparent;
}
/*----------------------//End: table---------------------------------------------------- */

/* ----------------------Start: grid----------------------------------------------------  */
.row {
    display: flex;
    flex-wrap: wrap;
    --gap-x: 30px;
    --gap-y: 0;
    margin-left: calc(-0.5 * var(--gap-x));
    margin-right: calc(-0.5 * var(--gap-x));
    margin-top: calc(-1 * var(--gap-y));
}
.row > * {
    padding-left: calc(0.5 * var(--gap-x));
    padding-right: calc(0.5 * var(--gap-x));
    margin-top: var(--gap-y);
    min-width: 0;
}

.row-cols-1 > * {
    width: 100%;
}
.row-cols-2 > * {
    width: 50%;
}
.row-cols-3 > * {
    width: 33.33%;
}
.row-cols-4 > * {
    width: 25%;
}
.row-cols-5 > * {
    width: 20%;
}
.row-cols-6 > * {
    width: 16.66%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}
.col {
    flex: 1 0 0;
}

.col-1 {
    flex: 0 0 auto;
    width: 16.66%;
}

.col-2 {
    flex: 0 0 auto;
    width: 20%;
}

.col-3 {
    flex: 0 0 auto;
    width: 30%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33%;
}

.col-5 {
    flex: 0 0 auto;
    width: 40%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 60%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.67%;
}

.col-9 {
    flex: 0 0 auto;
    width: 70%;
}

.col-10 {
    flex: 0 0 auto;
    width: 80%;
}

.col-11 {
    flex: 0 0 auto;
    width: 83.34%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 300px) {
    .col-sm {
        flex: 1 0 0;
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 40%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 60%;
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 70%;
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.34%;
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 100%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.33%;
    }
    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.66%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0;
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 40%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 60%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.34%;
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.67%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.33%;
    }
    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.66%;
    }
}

@media (min-width: 1280px) {
    .col-lg {
        flex: 1 0 0;
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 40%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 60%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.67%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.34%;
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.67%;
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.33%;
    }
    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66%;
    }
}

/* basic-그리드 */
.grid-container {
    display: grid;
    width: 100%;
}
.grid-container.double {
    grid-template-columns: repeat(2, 1fr);
}
.grid-container.type1 {
    grid-template-columns: minmax(10%, 10%) minmax(90%, 90%);
}
.grid-container.type2 {
    max-width: 725px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 60px;
}
.grid-container.type3 {
    grid-template-columns: minmax(30%, 30%) minmax(70%, 70%);
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    margin-top: 20px;
}
.grid-container.type4 {
    grid-template-columns: 286px auto;
}
/* //basic-그리드 */

/* ----------------------//End: grid----------------------------------------------------  */

/*----------------------Start: layerPop---------------------------------------------------- */
.layerPop {
    display: none;
    width: 100%;
    height: 100svh;
    position: fixed;
    z-index: 1000;
}
.layerbg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    inset: 0;
}

.layerPop-contents {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 16px 30px;
}
.layerPop .contents-area {
    position: relative;
    z-index: 2;
}
/* ----------------------//End: layerPop----------------------------------------------------  */

/*----------------------Start: rolling-banner---------------------------------------------------- */
.rolling-ani {
    min-width: var(--layout-type1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Start: 이미지 영역 */
.rolling-banners {
    --slide-count: 3;
    --slide-width: 100%;
    width: calc((var(--slide-width)) * var(--slide-count));
    display: flex;
    height: 100vh;
    transition: transform 0.6s ease;
    will-change: transform;
}
.rolling-banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.slidebg {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(1);
    transform-origin: center;
    transition: transform 2.5s ease;
}
.slidebg::before {
    content: "";
    position: absolute;
    width: 100%;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transform-origin: center;
    animation: heroZoom 3s ease-out both;
    will-change: transform;
}
.slidebg.type1::before {
    background-image: url(../assets/images/section1-banner1.png);
}

.slidebg.type2::before {
    background-image: url(../assets/images/section1-banner2.png);
}
.slidebg.type3::before {
    background-image: url(../assets/images/section1-banner3.png);
}

/* //End: 이미지 영역 */

/* Start 글씨 영역 */
.visual-description {
    position: absolute;
    left: calc((100vw - var(--layout-type1)) / 2);
    top: 55%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}
.banner-contents .visual-title {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.visual-title {
    margin-bottom: 32px;
}
.visual-maintit,
.visual-subtit {
    color: var(--color-white);
    transform: translateY(80px);
    opacity: 0;
    transition:
        transform 1.5s ease,
        opacity 1.5s ease;
}
.visual-maintit {
    line-height: 120%;
    margin-bottom: 40px;
}
.visual-subtit {
    font-size: 24px;
    line-height: 150%;
}
/* //End: 글씨 영역 */

/* Start: 슬라이드 버튼 */
.rolling-controls {
    position: absolute;
    left: calc((100vw - var(--layout-type1)) / 2);
    bottom: 25%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.rolling-control,
.num-control {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.progress-bar {
    width: 100px;
    height: 1px;
    display: block;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid;
    border-color: transparent;
    box-sizing: content-box;
}
.progress-bar .progress-fill {
    position: absolute;
    inset: 0;
    background: #fff;
    transform-origin: left center;
    transform: scaleX(0);
    will-change: transform;
}

/* //End: 슬라이드 버튼 */

/* 스와이퍼 관련 */
.rolling-banner.swiper-slide-active .visual-maintit,
.rolling-banner.swiper-slide-active .visual-subtit {
    transform: translateY(0);
    opacity: 1;
}
/* Start: rolling-banner zoom */
.rolling-banner.swiper-slide-active .slidebg {
    transform: scale(1.05);
}
@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.03);
    }
}
@media (prefers-reduced-motion: reduce) {
    .slidebg,
    .slidebg::before {
        transition: none;
        animation: none;
    }
}
/* End: rolling-banner zoom */
/* //스와이퍼 관련 */

/* ----------------------//End: rolling-banner----------------------------------------------------  */

/*----------------------Start: items---------------------------------------------------- */
.items {
    width: 100%;
    overflow: hidden;
}

.item-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 8px;
    row-gap: 40px;
    max-width: 725px;
    padding-left: 10px;
}

.cop-name {
    font-size: 96px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 100%;
}
strong.cop-name {
    font-weight: 700;
}
.items .desc {
    font-weight: 300;
    line-height: 1.8;
}

/*----------------------//End: items---------------------------------------------------- */

/*----------------------Start: simplebanner---------------------------------------------------- */
.simplebanner {
    min-width: var(--layout-type1);
    height: 1640px;
    position: relative;
}
/* Start: 이미지 영역 */
.visual-img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}
.section3-bg {
    background-image: url(../assets/images/section3-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.green-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(14, 59, 59, 0.35);
}

/* End: 이미지 영역 */
.simplebanner-description {
    position: relative;
    z-index: 1;
    padding-top: 140px;
}

.titles.white .h2 {
    color: var(--color-white);
}
.titles.white .morebtns {
    color: #fff;
}
.cards {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 150px 90px;
}
.card {
    width: 359px;
    height: 481px;
    border-radius: 24px;
    background-color: var(--color-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 42px 28px;
    transform: 0.2s linear;
    transition: transform 0.2s linear;
    cursor: pointer;
}
.card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-50px);
}

.card.top-right {
    margin-top: 250px;
}
.card.bottom-left {
    margin-top: -250px;
}

/* Start: 카드 윗부분 */
.card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-primary-500);
}
.card:hover .card-title {
    color: var(--color-white);
}
.card-title p {
    color: inherit;
    font-weight: 700;
    font-size: var(--font-primary);
}
/*//End: 카드 윗부분 */
.card-contents {
    display: flex;
    flex-direction: column;
}
.card-img {
    width: auto;
    justify-content: flex-end;
    display: inline-flex;
    padding-top: 30px;
    color: var(--color-white);
    margin-bottom: 45px;
    opacity: 0;
    transition: 0.2s linear;
}

.card:hover .card-img {
    opacity: 1;
}
/* Start: 카드 하단 설명 */
.card-description {
    display: flex;
    flex-direction: column;
    color: var(--color-black);
    width: 100%;
}
.card:hover .card-description {
    color: var(--color-white);
}
.card-maintit {
    font-size: 28px;
    font-weight: 700;
    color: inherit;
}
.card-subtit {
    font-size: 18px;
    padding-top: 38px;
    font-weight: 700;
    color: inherit;
}
.card-desc {
    padding-top: 24px;
    min-height: 104px;
    line-height: 160%;
    color: inherit;
}
/* //End: 카드 하단 설명 */
/* ----------------------//End: simplebanner----------------------------------------------------  */

.animation {
    display: flex;
    align-items: flex-end;
    position: relative;
}
.slide-ani .contents-area {
    margin-top: 60px;
}
.contents-area.slide {
    display: flex;
    column-gap: 221px;
    align-items: flex-end;
    justify-content: flex-start;
    width: auto;
    max-width: 100%;
}
.slide {
    --slide-width: 432.8px;
    --slide-gap: 60px;
    --slide-visible: 3.5;
    --slide-visible-gaps: 3;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: 1590px;
}
@media screen and (min-width: 1921px) {
    .slide {
        max-width: 1870px;
    }
}
.thumb-slides {
    width: max-content;
    display: flex;
    column-gap: var(--slide-gap);
    height: 496px;
    transition: transform 0.6s ease;
    will-change: transform;
    /* margin-left: clamp(20px, 4vw, 100px); */
}
.thumb-slide {
    position: relative;
    width: var(--slide-width);
    flex: 0 0 auto;
    height: 100%;
    border-radius: 24px;
    border: 1px solid;
    border-color: var(--color-netural-500);
    box-sizing: border-box;
    transition: transform 0.6s ease;

    padding: 62px 49px 54px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.thumb-slide.darkbg {
    --color-darkbg: #1a355b;
    background-color: var(--color-darkbg);
}
.thumb-slides.is-jumping {
    transition: none;
}
.thumb-slide img {
    width: fit-content;
    height: fit-content;
    object-fit: cover;
}
.thumb-slide.active {
    box-sizing: border-box;
}

.thumb-slide.darkbg .slide-desc {
    color: rgba(255, 255, 255, 0.8);
}
.slide-maintit {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.slide-maintit-text {
    position: relative;
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
}
.slide-maintit-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.slide-maintit:hover .slide-maintit-text::before,
.thumb-slide:hover .slide-maintit-text::before {
    transform: scaleX(1);
}
.solution-ico {
    width: 14px;
    height: 14px;
    background: url(../assets/icons/section5-titico.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.thumb-slide.darkbg .solution-ico {
    filter: invert(1);
}
.slide-desc {
    line-height: 160%;
    padding-top: 25px;
    color: #4e4e4e;
}

.slide-ani .buttons {
    row-gap: 10px;
    margin-top: 10px;
}
.label {
    font-size: var(--font-large);
    font-weight: 500;
    line-height: 130%;
    color: var(--color-black);
    min-width: 286px;
    padding: 25px 0;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
/*----------------------Start: layout---------------------------------------------------- */
#wrapper {
    min-width: 200px;
    min-height: 100px;
    height: 100%;
    position: relative;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    align-content: baseline;
    z-index: 999;
    width: 100%;
    background-color: var(--color-white);
    transition:
        transform 0.3s ease,
        background-color 0.2s ease;
    padding: 35px 0;
}

#head.on {
    height: 100%;
    background-color: var(--color-white);
}
.header.is-hidden {
    transform: translateY(-100%);
}
.header .contents-area {
    width: var(--layout-type1);
    height: 100%;
    flex-direction: row;
    align-items: flex-start;
}
.logos {
    display: inline-block;
}
.logo {
    width: 173.72px;
    height: 47px;
    background-image: url(../assets/images/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 999;
    display: block;
}
.logo-white {
    width: 173.72px;
    height: 47px;
    background-image: url(../assets/images/logo-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: none;
}
.gnb {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}
.menus {
    display: flex;
    align-items: center;
    column-gap: 40px;
    padding-right: 208px;
}
.menu {
    background-color: transparent;
    width: 140px;
    height: 50px;
    border-radius: 12px;
    display: inline-block;
    align-content: center;
    text-align: center;
    cursor: pointer;
    position: relative;
}
.menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 15px;
}
.menu.active {
    background-color: var(--color-white);
    color: var(--color-primary-500);
    font-weight: 500;
}
.menu-tit {
    font-size: var(--font-medium);
    font-weight: 400;
    display: inline-block;
    width: 100%;
    height: 100%;
    align-content: center;
    cursor: pointer;
}
.menu-tit:hover {
    font-weight: 500;
    color: var(--color-primary-500);
}
/* 서브메뉴 노출 */
.submenu {
    padding: 11px 12px;
    background-color: var(--color-white);
    border-radius: 6px;
    border: 1px solid;
    border-color: transparent;
}

.submenu a {
    font-size: var(--font-small);
    font-weight: 500;
    line-height: 100%;
    color: var(--color-black);
    text-wrap: wrap;
}
.submenu.active,
.submenu:hover {
    background-color: var(--color-primary-300);
}
.submenu.active a,
.submenu:hover a {
    color: var(--color-primary-500);
    font-weight: 600;
}
.submenu-group {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 16px;
    width: 140px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 0.2s,
        transform 0.2s;
    margin-top: 15px;
}

.menu:hover .submenu-group,
.menu .submenu-group:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* //서브메뉴 노출 */

.otherbtns {
    display: flex;
    align-items: center;
    column-gap: 48px;
}
/* header가 불투명배경일 때 */
.header.is-transparent {
    background-color: transparent;
    box-shadow: none;
}
.header.is-transparent .logo {
    display: none;
}
.header.is-transparent .logo-white {
    display: block;
}

.header.is-transparent .menu-tit {
    color: var(--color-white);
}
.header.is-transparent .menu-tit:hover {
    color: var(--color-white);
    font-weight: 400;
}
.header.is-transparent .menu.active,
.header.is-transparent .menu:hover {
    background-color: rgba(255, 255, 255, 0.16);
}
.header.is-transparent .menu.active a {
    color: var(--color-white);
}
.header.is-transparent .round-tit {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transition: all 0.3s linear;
}
.header.is-transparent .round-tit:hover,
.header.is-transparent .round-tit.active {
    border-color: var(--color-black);
    background-color: var(--color-black);
}
.header.is-transparent .hamburger span,
.header.is-transparent .hamburger span::before,
.header.is-transparent .hamburger span::after {
    background-color: var(--color-white);
}
.header.is-transparent .hamburger:hover > span {
    background-color: transparent;
}
.header.is-transparent .submenu-group {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.08);
}
.header.is-transparent .submenu:hover {
    background-color: var(--color-primary-300);
}
.header.is-transparent .submenu a {
    color: var(--color-black);
}
.header.is-transparent .submenu:hover a {
    color: var(--color-primary-500);
}
/* //header가 불투명배경일 때 */

/* 전체메뉴 모드일 때*/
.header.is-wholemenu {
    height: 370px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.header.is-wholemenu.is-transparent {
    background: #fff;
    color: #000;
}

.header.is-wholemenu.is-transparent .logo-white {
    display: none;
}
.header.is-wholemenu.is-transparent .logo {
    display: block;
}
.header.is-wholemenu .menus {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.header.is-wholemenu .menu {
    display: block;
}
.header.is-wholemenu.is-transparent .menu a {
    color: var(--color-black);
    font-weight: 400;
}
.header.is-wholemenu.is-transparent .round-tit {
    border-color: var(--color-black);
    color: var(--color-black);
}
.header.is-wholemenu.is-transparent .hamburger span,
.header.is-wholemenu.is-transparent .hamburger span::before,
.header.is-wholemenu.is-transparent .hamburger span::after {
    background-color: var(--color-black);
}
.header.is-wholemenu .submenu-group {
    display: block;
    position: static;
    background: #fff;
    transform: none;
    transition: none;
    visibility: visible;
    opacity: 1;
    border: unset;
    padding: 16px 0;
    box-shadow: none;
    margin-top: 0;
}

.header.is-wholemenu .submenu a {
    font-weight: 400;
}
.header.is-wholemenu .submenu:hover {
    background-color: var(--color-primary-300);
}
.header.is-wholemenu .submenu:hover a {
    font-weight: 600;
    color: var(--color-primary-500);
}
/* //전체메뉴 모드일 때*/

.container {
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* contents-area  감싼 거 타입*/
.contents-area {
    min-width: var(--layout-type1);
    max-width: var(--layout-type1);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}
.contents-area.wide {
    width: 1660px;
}
.contents-area.half {
    width: 50%;
}

.contents-area.rev {
    flex-direction: row;
}

/* //contents-area  감싼 거 타입*/

/* section4*/
.section4 {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding-bottom: 520px;
    overflow: visible;
    min-width: var(--layout-type1);
}

.bg-clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.bg-clip.type1 {
    position: absolute;
    inset: 0;
    background: var(--color-primary-500);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

.news-content {
    border-top: 1px solid;
    border-color: rgba(255, 255, 255, 0.25);
    padding: 31px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
.news-content:last-of-type {
    border-bottom: 1px solid;
    border-color: rgba(255, 255, 255, 0.25);
}

.news-tit {
    font-size: 26px;
    line-height: 120%;
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-tit::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.3s ease;
}
.news-content:hover .news-tit::before,
.news-tit:hover::before {
    width: 100%;
}
.news-subtit {
    padding-top: 16px;
}
/* news-area*/

/* slogans */
.slogan-area {
    position: absolute;
    left: 0;
    left: 0;
    bottom: -1px;
    width: 100%;
    overflow: visible;
    scroll-behavior: smooth;
}
.slogan-pin {
    padding: 70px 0;
    position: relative;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow: hidden;
}
.slogan-pin.whitebg {
    position: absolute;
    left: 0;
    top: -2px;
    width: 100%;
    height: calc(100% + 3px);
    background: var(--color-white);
    clip-path: polygon(0px 59.5472%, 100% 31.2623%, 100% 100%, 0% 100%);
}
.contents-area.slogan {
    width: var(--layout-type1);
    width: 90%;
    padding: 50px 0;
}
.slogan-clip {
    position: absolute;
    inset: 0;
    background: #fff;
    clip-path: polygon(0 42%, 100% 22.05%, 100% 100%, 0 100%);
}
.slogan.primary {
    color: var(--color-primary-500);
}

.slogan-text {
    font-size: 127px;
    line-height: 1;
    color: var(--color-primary-500);
    font-weight: 700;
    position: relative;
    z-index: 10;
}
.slogan-text.white {
    color: var(--color-white);
}

/* //slogans */

/* //section4 */

/* section6 */
.section6 {
    position: relative;
    overflow: hidden;
    padding: 200px 0;
    min-width: var(--layout-type1);
}

.section6 .contents-area {
    position: relative;
    z-index: 1;
}

.section6 .h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
}

.section6 .body1 {
    font-size: 22px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.8);
}
/* //section6 */
/* footer */
.footer {
    margin-top: 240px;
}
.footer-contents {
    padding: 80px 0;
    width: var(--layout-type1);
}
.footer .row {
    align-items: flex-end;
}
.footer-description,
.copyright {
    margin-top: 40px;
}

.footer-tits {
    display: flex;
    column-gap: 30px;
}
.footer-tit,
.footer-desc {
    font-size: var(--font-primary);
    font-weight: 300;
    line-height: 180%;
    color: var(--color-netural-800);
    letter-spacing: 0.32px;
}
.footer-tit.fax {
    padding-left: 5px;
}
.footer-tit.type1 {
    font-weight: 500;
    line-height: 150%;
}
.menu-symbols {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}
.symbols {
    display: flex;
    align-items: flex-end;
    column-gap: 30px;
    padding-top: 50px;
}
.symbol {
    width: 80px;
    height: 80px;
}
.symbol-img1 {
    background-image: url(../assets/icons/section6-symbol1.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.symbol-img2 {
    background-image: url(../assets/icons/section6-symbol2.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.symbol-img3 {
    background-image: url(../assets/icons/section6-symbol3.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
/* //footer */

/*----------------------//End: layout---------------------------------------------------- */

/* ----------------------Start: other-class----------------------------------------------------  */

.w-full {
    width: 100% !important;
    max-width: 100% !important;
}
.h-full {
    height: 100% !important;
}

.buttons {
    display: flex;
}
.buttons.vertical {
    flex-direction: column;
}
.backdrop {
    background-color: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.hidden {
    overflow: hidden;
}
.lg-block {
    display: inline-block;
}

.md-block {
    display: none;
}

.transparent {
    background-color: transparent;
}
.clip-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
.visibility-none {
    visibility: none;
}
.visibility-visible {
    visibility: visible;
}
/* ----------------------//End: other-class----------------------------------------------------  */

@media screen and (max-width: 1280px) {
    /* section */
    section {
        min-height: auto;
        height: 100%;
        overflow: hidden;
    }

    section + section {
        padding-top: 80px;
    }

    /* //section */
    h1,
    .h1 {
        font-size: 36px;
    }
    h2,
    .h2 {
        font-size: 36px;
    }
    h3,
    .h3 {
        font-size: var(--font-small);
    }
    .body1 {
        font-size: 14px;
    }
    .body2 {
        font-size: var(--font-xsmall);
    }

    /* header */
    .header {
        height: auto;
        padding: 40px 5% 8px 5%;
        /* margin-top: 30px; */
    }
    .header .contents-area {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .contents-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        /* height: 100%; */
        padding-bottom: 17px;
        /* margin-top: 30px; */
    }

    .header.is-wholemenu .menus {
        gap: 8px;
    }
    .btn.hamburger {
        width: 28px;
        height: 18px;
    }

    header.md-block.is-layer-open {
        background: #fff;
    }
    .header.md-block.is-layer-open .logo {
        display: block;
    }
    .header.md-block.is-layer-open .logo-white {
        display: none;
    }
    .header.md-block.is-layer-open .menu-tit {
        color: var(--color-black);
    }
    .header.md-block.is-layer-open .menu-tit:hover {
        color: var(--color-primary-500);
        font-weight: 600;
    }
    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
        height: 2px;
    }

    .hamburger span::before {
        top: -10px;
    }
    .hamburger span::after {
        top: 10px;
    }

    .header.md-block.is-layer-open .hamburger span,
    .header.md-block.is-layer-open .hamburger span::before,
    .header.md-block.is-layer-open .hamburger span::after {
        background: #000;
    }
    .header.md-block.is-layer-open .hamburger span {
        background: transparent;
    }
    .header.md-block.is-layer-open .hamburger span::before {
        top: 0;
        transform: rotate(45deg);
    }
    .header.md-block.is-layer-open .hamburger span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    .logo,
    .logo-white {
        width: 124px;
        height: 34px;
        margin-top: -8px;
    }
    .menus {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .menu {
        width: 100%;
        height: fit-content;
        min-height: 60px;
        column-gap: 0;
        row-gap: 8px;
    }
    .menu-tit {
        height: 60px;
        font-size: 24px;
    }
    .menu-tit:hover {
        color: var(--color-primary-500);
        font-weight: 500;
    }
    .submenu a {
        font-size: var(--font-primary);
    }
    .submenu-group {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        padding: 0 16px;
        width: 100%;
        box-shadow: none;
        border-radius: unset;
        margin-top: 8px;
        display: none;
    }
    .header.is-transparent .submenu-group {
        box-shadow: none;
    }
    .submenu {
        border-radius: 16px;
    }
    .section1 header {
        margin-top: 30px;
    }
    /* //header */
    .contents-area {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    .grid-container.double {
        grid-template-columns: 1fr;
    }

    .lg-block,
    .lg-grid {
        display: none;
    }
    .md-block {
        display: inline-block;
    }
    .row {
        --gap-x: 0;
    }

    /* radio */
    .rdo-txt::before {
        width: 16px;
        height: 16px;
    }
    .rdo-txt {
        font-size: var(--font-small);
    }
    /* //radio */

    /* filebox */
    .filebox {
        height: 40px;
        border-radius: 4px;
        padding: 0 15px;
    }
    .upload-input {
        font-size: var(--font-small);
    }
    /* //filebox */
    /* tab */
    .tabs {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        gap: 4px;
    }

    .tab {
        flex: 0 0 auto;
        white-space: nowrap;
        height: 40px;
        font-size: var(--font-small);
        padding: 0 16px;
    }
    /* //tab */

    /* table */
    col:nth-child(1) {
        width: 15%;
    }
    col:nth-child(2) {
        width: 15%;
    }
    /* col:nth-child(3),
    col:nth-child(4) {
        width: 35%;
    } */
    th {
        font-size: var(--font-xsmall);
        padding: 14px 21px;
        line-height: 120%;
    }
    th.gradientbg {
        font-size: var(--font-primary);
        padding: 14px 11px;
        border-radius: 8px 8px 0 0;
        border-bottom: 6px solid transparent;
    }
    td.gradientbg {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        padding: 12px 8px 11px;
    }
    td.gradientbg.bottomline {
        border-bottom: 6px solid transparent;
    }
    td {
        font-size: var(--font-small);
    }
    td.tit {
        padding: 14px 9px;
        font-size: var(--font-small);
        line-height: 120%;
    }
    td.subtit {
        padding: 14px 7px;
        font-size: var(--font-small);
        line-height: 120%;
    }

    /* //table */
    /* rollingbanner */
    .rolling-ani {
        min-width: 100%;
        max-width: 100%;
    }
    .slidebg.type1::before {
        background: url(../assets/images/section1-mdbanner1.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .slidebg.type2::before {
        background: url(../assets/images/section1-mdbanner2.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .slidebg.type3::before {
        background: url(../assets/images/section1-mdbanner3.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .visual-maintit {
        margin-bottom: 16px;
    }
    .visual-description {
        left: 5%;
        top: 62%;
    }
    .rolling-controls {
        left: 5%;
        bottom: 15%;
    }
    .num-btn {
        font-size: var(--font-xsmall);
    }
    .progress-bar {
        width: 76px;
    }
    .prevbtn,
    .nextbtn {
        width: 30px;
        height: 30px;
        padding: 8px;
        background-size: 16px auto;
    }
    /* //rollingbanner */

    /* items */
    .section2 .contents-area {
        padding: 0 5%;
    }
    .cop-name {
        font-size: 48px;
    }
    .morebtns {
        column-gap: 18px;
    }
    .morebtns-label {
        font-size: 14px;
    }
    .moreico svg {
        width: 18px;
        height: 12px;
    }
    .item-description {
        row-gap: 30px;
        padding-top: 0;
        padding-left: 0;
        margin-top: 40px;
    }
    .items .desc {
        font-size: var(--font-small);
        line-height: 160%;
    }
    /* //items */

    /* simplebanner */
    .simplebanner {
        min-width: 100%;
        max-width: 100%;
        min-height: 1280px;
        height: fit-content;
        padding: 0 5% 90px;
    }
    .simplebanner-description {
        padding-top: 80px;
    }
    .cards {
        gap: 28px 0;
        margin-top: 40px;
    }
    .card {
        width: 100%;
        max-width: 100%;
        min-height: 247px;
        height: auto;
    }
    .card:hover {
        transform: translateY(-20px);
    }
    .card.top-right,
    .card.bottom-left {
        margin-top: 0;
    }
    .card-title p {
        font-size: var(--font-xsmall);
    }
    .card-contents {
        flex-direction: row;
        margin-top: 40px;
        width: 100%;
        position: relative;
    }
    .card-description {
        order: 1;
        padding-top: 0;
    }
    .card-img {
        order: 2;
        padding-top: 0;
        position: absolute;
        top: -16px;
        right: 0;
        margin-bottom: 0;
    }
    .card-img svg {
        max-width: 66px;
        max-height: 68px;
    }
    .card-maintit {
        font-size: 22px;
    }
    .card-subtit {
        padding-top: 22px;
        font-size: var(--font-small);
    }
    .card-desc {
        padding-top: 20px;
        min-height: 57px;
    }

    /* //simplebanner */
    .section4 {
        padding-bottom: 210px;
        min-width: 100%;
        max-width: 100%;
    }
    .section4 .contents-area {
        padding: 0 5%;
    }
    .news-contents {
        margin-top: 40px;
    }
    .news-content {
        row-gap: 24px;
        padding: 24px 8px;
    }
    .news-tit {
        font-size: var(--font-primary);
    }
    /* slogan */
    .contents-area.slogan {
        padding: 0;
    }
    .slogan-pin {
        padding: 0;
    }
    .slogan-text {
        font-size: 34px;
    }
    /* //slogan */

    /* slide-ani */
    .slide-ani .contents-area {
        width: 100%;
        margin-left: 0;
        align-items: center;
        text-align: left;
        padding: 0 5%;
        /* margin-top: 50px; */
    }

    .thumb-slides {
        --slide-width: 260px;
        min-height: 310px;
        height: auto;
    }
    .thumb-slide {
        width: 260px;
        padding: 32px 24px;
    }

    .slide-ani .slide {
        --slide-width: 260px;
        --slide-gap: 24px;
        padding-left: 16px;
        padding-right: 0;
        padding-top: 0;
    }
    .slide-maintit {
        column-gap: 8px;
    }
    .slide-maintit-text {
        font-size: 20px;
    }
    .slide-ani .body1 {
        font-size: var(--font-primary);
        letter-spacing: -0.54px;
        line-height: 160%;
    }
    .slide-ani .body2 {
        font-size: 10px;
    }
    .titles {
        row-gap: 20px;
    }
    .solution-ico {
        width: 7px;
        height: 7px;
    }
    /* //slide-ani */

    /* //animation-hover */
    .section6 {
        padding: 100px 0;
        min-width: 100%;
        max-width: 100%;
    }
    .section6 .contents-area {
        padding: 5%;
    }

    .section6 .h1 {
        font-size: 28px;
        text-align: right;
    }
    .section6 .body1 {
        font-size: var(--font-primary);
        text-align: right;
    }
    .btn.contact {
        font-size: var(--font-primary);
        margin-top: 0;
        padding: 17px 30px;
        width: 160px;
    }
    /* footer */
    .footer {
        width: 100%;
        margin-top: 120px;
    }
    .footer-contents {
        align-items: flex-start;
        padding: 25px 5% 80px;
        width: 100%;
    }
    .footer .row {
        position: relative;
        max-width: 100%;
        width: 100%;
    }
    .footer-description,
    .copyright {
        margin-top: 30px;
    }
    .footer-tits {
        padding: 10px 0;
        position: absolute;
        top: 0;
        right: 0;
        column-gap: 8px;
    }
    .footer-tit,
    .footer-desc {
        font-size: var(--font-xsmall);
        text-align: left;
        display: flex;
        flex-direction: column;
    }
    .footer-tit.md {
        flex-direction: row;
    }
    .footer-tit {
        font-weight: 500;
    }
    .footer-desc {
        font-weight: 300;
    }

    .footer-tits .footer-desc {
        width: auto;
        padding-left: 5px;
    }
    .footer-tit.fax {
        padding-left: 8px;
    }
    .symbols {
        padding-top: 0;
        position: absolute;
        bottom: -7px;
        right: 0;
        column-gap: 8px;
    }
    .symbol {
        width: 39px;
        height: 39px;
    }

    .btn.blackbg.wide,
    .btn.whitebg.wide {
        max-width: 135px;
        font-size: var(--font-small);
        height: 40px;
    }
}
