html {
  cursor: none;
  background: #fff;
}

.cursor { position: fixed; width: 30px; height: 30px; border-radius: 50%; background: #fff; transition: transform 0.2s; mix-blend-mode: difference; transform: translate(-50%, -50%); pointer-events: none; z-index: 100;transition: width 0.3s ease, height 0.3s ease;left: -30px;}

.cursor-large {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  html {
    cursor: auto;
  }
  .cursor {
    display: none;
  }  
}

.pc-br {
    display: block;
}
.m-br {
    display: none;
}

.pt-1 {padding-top: 10px !important;}
.pt-2 {padding-top: 20px !important;}
.pt-3 {padding-top: 30px !important;}
.pt-4 {padding-top: 40px !important;}
.pb-1 {padding-bottom: 10px !important;}
.pb-2 {padding-bottom: 20px !important;}
.pb-3 {padding-bottom: 30px !important;}
.pb-4 {padding-bottom: 40px !important;}
.mt-1 {margin-top: 10px !important;}
.mt-2 {margin-top: 20px !important;}
.mt-3 {margin-top: 30px !important;}
.mt-4 {margin-top: 40px !important;}
.mb-1 {margin-bottom: 10px !important;}
.mb-2 {margin-bottom: 20px !important;}
.mb-3 {margin-bottom: 30px !important;}
.mb-4 {margin-bottom: 40px !important;}

.font-size12 { font-size: 12px; }
.font-size14 { font-size: 14px; }
.font-size16 { font-size: 16px; }
.font-size18 { font-size: 18px; }
.font-size20 { font-size: 20px; }

.hide {
    position: absolute;
    top: -5000em;
    left: 0;
  }

  .custom-checkbox {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    gap: 8px;
  }
  
  .custom-checkbox input {
    display: none;
  }
  
  .custom-checkbox span {
    width: 20px;
    height: 20px;
    border: 1px solid #cfd2d8;
    position: relative;
  }
  
  .custom-checkbox input:checked + span {
    background-color: #000;
    border-color: #000;
  }
  
  .custom-checkbox span::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -64%) rotate(45deg);
    opacity: 0;
  }
  
  .custom-checkbox input:checked + span::after {
    opacity: 1;
  }

.input-file {
    display: flex;
    align-items: center;
    margin-bottom: 10px;    
  }
  
  .input-file:first-of-type {
    margin-top: 0;
  }
  
  .input-file:last-of-type {
    margin-bottom: 0;
  }
  
  .input-file [type="file"] {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0 none
  }

  .input-file .file-box {
    position: relative;
    width: 80%;
  }
  
  .input-file .file-label {
    width: 20%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    background-color: #1c1f2a;
    margin-bottom: 0;
    margin-left: 8px;
    font-size: 18px;
  }
  
  .input-file .file-label.file-focus {
    outline: dotted 2px red !important
  }
  
  .input-file .file-name {
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding: 0 45px 0 15px !important;
    border-radius: 4px;
    border: solid 1px #ced2d8;
    background-color: #fff;
    font-size: 16px;
    color: #111;
  }
  
  .input-file .file-delete {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: url("../images/icon-file-delete.svg") no-repeat center center;
  }

  .file-info {
    font-size: 16px;
    color: #9b9b9b;
    line-height: 24px;
    margin-top: 12px;
    letter-spacing: -0.5px;
  }
  
  .input-file .file-down {
    height: 48px;
    line-height: 48px;
    border: 1px solid #111;
    padding: 0 10px;
    border-radius: 4px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

.inner {
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.header {
    position: fixed;
    width: 100%;
    height: 72px;
    left: 0;
    top: 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
}
.header.down {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.header.down .logo {
    background-image: url('../images/logo_red.svg');
    opacity: 0;
    animation: fadeInBackground .2s forwards;
}

.header.down .nav ul li a {
    color: #000;
}
.header.down .m-menu .menu-btn span {
    background-color: #000;
}
.header .inner {
    position: relative;
}
.header .logo {
    width: 115px;
    height: 31px;
    background: url('../images/logo.svg') no-repeat center;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .2s;
}
.header .logo a {
    width: 100%;
    height: 100%;
    display: block;
    transition: .2s;
}
.header .nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header > .nav > ul > li {
  position: relative;
}

.header .nav > ul > li .gnb-depth2 {
  position: absolute;
  padding: 22px 16px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.23);
  border-radius: 9px;
  width: 100%;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  text-align: center;
}

.header .nav > ul > li .gnb-depth2.wide {
  width: 110%;
}

.header .nav > ul > li .gnb-depth2 a {
  font-size: 15px;
  color: #2f2f2f;
  letter-spacing: -0.5px;
  line-height: 2;
}

.header .nav > ul > li .gnb-depth2 .on a,
.header .nav > ul > li .gnb-depth2 a:hover {
  color: #f40005;
  font-weight: 700;
}

.header .nav > ul > li:hover .gnb-depth2 {
  display: block;
}

.header .nav > ul > li > a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: .2s;
    line-height: 72px;
    padding: 0 47px;
}

.header.down > .nav > ul > li > a span {
    position: relative;
    padding-bottom: 3px;
}

.header.down > .nav > ul > li > a span::after {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .3s;
}

.header.down .nav > ul > li > a:hover span::after {
    width: 100%;
}

.header.down .nav > ul > li.on > a span::after {
    width: 100%;
}

.header .m-menu {
    position: relative;
    width: 70px;
    height: 100%;
    margin-right: 12px;
    display: none;
}
.header .m-menu .menu-btn {
    width: 24px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header .m-menu .menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: .2s;
}

.header .m-menu span:nth-child(2) {
    top: 8px;
}
.header .m-menu span:nth-child(3) {
    top: 16px;
}

.m-nav {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 60px 20px 20px;
    z-index: 21;
    transition: .3s;
}

.m-nav.open {
    right: 0;
}

.m-nav .menu-close {
    width: 40px;
    height: 40px;
    background: url("../images/icon_x.svg") no-repeat center;
    position: absolute;
    top: 12px;
    right: 8px;
}

.m-nav > ul > li {
    overflow: hidden;
}

.m-nav > ul > li:not(:last-child) {
    border-bottom: 1px solid #e5e6e9;
}

.m-nav > ul > li > a,
.m-nav > ul > li > p {
    font-size: 20px;
    line-height: 55px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    display: block;
    user-select: none;
}

.m-nav > ul > li > p {
    background: url("../images/menu_down.svg") no-repeat right 0 center;
}

.m-nav > ul > li.has.open p {
    background: url("../images/menu_up.svg") no-repeat right 0 center;
    color: #ff021a;
    font-weight: 600;
}

.m-nav > ul > li.has.open .submenu {
    max-height: 300px;
    padding-bottom: 15px;
    transition: 1s;
}
.m-nav .submenu {
    max-height: 0;
    transition: .5s;
}

.m-nav .submenu li a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 17px;
    line-height: 40px;
    letter-spacing: -1px;
}

.m-nav .submenu li.on a {
    color: #ff021a;
    font-weight: 600;
}

.back-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    z-index: 20;
    display: none;
}

.footer {
    background: #f9fafb;
    padding: 40px 0 60px;
}

.footer .inner {
    display: flex;
    justify-content: space-between;
}

.footer .ft-logo {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
}

.footer .ft-info {
    font-size: 14px;
    color: #8d95a0;
}

.footer .ft-info p {
    line-height: 1.5;
    word-break: keep-all;
}

.footer .ft-info p .line {
    display: inline-block;
    margin: 0 10px;
}

.footer .family-box {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    width: 200px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 20px;
    position: relative;
}

.footer .family-box .family-btn {
    width: 100%;
    height: 100%;
    display: block;
    align-content: center;
    padding: 0 20px;
    background: url("../images/family_up.svg") no-repeat right 19px center;
    user-select: none;
}

.footer .family-box.open {
    background: #000;
}

.footer .family-box.open .family-btn {
    background-image: url("../images/family_down.svg");    
    color: #fff;
}

.footer .family-box.open .family-site {
    bottom: 45px;
    visibility: visible;
    opacity: 1;
}

.footer .family-box .family-site {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 35px;
    border: 1px solid #000;
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    transition: .2s;
    visibility: hidden;
    opacity: 0;
}

.footer .family-box .family-site li a {
    font-size: 14px;
    line-height: 26px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border-radius: 0;
    padding: 13px 0.75rem;
    font-size: 1rem;
    line-height: 20px;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out
  }

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
  }
  
  .pageing .page-item .page-link {
    color: #767676;
    border: 0;
    margin: 0 5px;
    padding: 5px 10px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    background-color: initial;
  }
  
  .pageing .page-item .page-link:hover {
    background: none;
  }
  
  .pageing .page-item .on,
  .pageing .page-item .focus,
  .pageing .page-item .hover {
    text-decoration: underline;
    color: #222;
    font-weight: 600;
  
  }
  
  .pageing .page-item .next,.pageing .page-item .prev {
    border: 1px solid #dee2e6;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    line-height: 22px;
    text-align: center;
    font-size: 29px;
  }
  
  .pageing .btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
  }
  
  .pageing .btn.previous-ten {
    margin-right: 6px;
    background: url("../images/prev02.png") no-repeat center center
  }
  
  .pageing .btn.previous {
    margin-right: 20px;
    background: url("../images/prev.png") no-repeat center center
  }
  
  .pageing .btn.next-ten {
    margin-left: 6px;
    background: url("../images/next02.png") no-repeat center center
  }
  
  .pageing .btn.next {
    margin-left: 20px;
    background: url("../images/next.png") no-repeat center center
  }