@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,500i,600,600i,700";
@import "https://fonts.googleapis.com/css?family=Noto Sans KR:100,200,300,400,500,500i,600,600i,700";
@import "https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900";
@import "https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp";
@import "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200";
.primary {
  color: #a42444;
}

.secondary {
  color: #a42444;
}

/* default.scss */
html, body {
  width: 100%;
  height: auto;
  font-family: "Montserrat", "Noto Sans KR", "맑은고딕", "Malgun Gothic", "sans-serif";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  transition: all 0.3s;
  letter-spacing: -0.75px;
  overflow-x: hidden;
  word-break: keep-all;
}

p {
  word-break: keep-all;
}

@media (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .btn, .tit {
  font-family: "Montserrat", sans-serif;
}

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, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

caption {
  display: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  border: none;
  outline: none;
  transition: all 0.3s;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  border: 1px solid transparent;
  background: transparent;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

/* common.scss */
.w100 {
  width: 100%;
}

.over-hidden {
  overflow: hidden;
}

.pad0 {
  padding: 0;
}

.d-flex {
  display: flex;
}

.mt-btn3 {
  margin-bottom: 3rem;
}

.btn-link {
  text-decoration: underline;
}

.btn {
  padding: 1rem 2.25rem;
  font-weight: 500;
  border-radius: 2rem;
  transition: background 0.16s;
}
.btn .right-icon {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .btn {
    padding: 1rem 1.25rem;
  }
}
@media (max-width: 576px) {
  .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}
.btn-primary {
  background: #a42444;
  color: #fff;
}
.btn-primary:hover {
  background: #222;
}

.btn-secondary {
  background: #720f80;
  color: #fff;
}
.btn-secondary:hover {
  background: #490a52;
}

.btn-black {
  background: #222;
  color: #fff;
}
.btn-black:hover {
  background: #a42444;
}

.link {
  text-decoration: underline;
}

.btn-icon {
  color: #333;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
  padding: 0;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}
.btn-icon:focus, .btn-icon:hover {
  color: #a42444;
  text-decoration: none;
}
.btn-icon.go-top {
  display: none;
  position: fixed;
  color: #92959a;
  z-index: 10;
  bottom: 20px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 48px;
  border: 1px solid rgba(226, 229, 233, 0.5);
  line-height: 4px;
}
.btn-icon.go-top i {
  font-size: 1.25rem;
}
.btn-icon.go-top:hover, .btn-icon.go-top:focus {
  color: #333;
}
.btn-icon.go-top.shown {
  display: block;
}
.btn-icon.ico-back {
  width: 24px;
  height: 20px;
  font-size: 24px;
}

.txt-air-gradient {
  background: linear-gradient(310deg, rgb(0, 160, 233) 0%, rgb(143, 113, 245) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* flex.scss */
.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

/* grid.scss */
*,
*::before,
*::after {
  box-sizing: inherit;
}

.wrap-container {
  padding-top: 12px;
  padding-bottom: 12px;
}
.wrap-container .container {
  padding-top: 0;
  padding-bottom: 0;
}

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid.pad0, .container-sm.pad0, .container-md.pad0, .container-lg.pad0, .container-xl.pad0 {
  padding: 0;
}

@media (min-width: 576px) {
  .container-sm {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .pc_use {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .mb_use {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1464px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.row.align-items-center {
  align-items: center !important;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

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

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

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

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 2.5rem;
}

.mb-7 {
  margin-bottom: 3rem;
}

.mb-1x {
  margin-bottom: 1rem;
}

.mb-2x {
  margin-bottom: 2rem;
}

.mb-3x {
  margin-bottom: 3rem;
}

.mb-4x {
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .mb-4x {
    margin-bottom: 2rem;
  }
}

.mb-5x {
  margin-bottom: 5rem;
}

.material-icons {
  vertical-align: middle;
  font-size: inherit;
}
.material-icons + span {
  margin-left: 8px;
  vertical-align: middle;
}

.label {
  display: inline-block;
  background: #fff;
  color: #e0365f;
  padding: 0 8px;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
.header .logo {
  width: 150px;
  height: auto;
  display: inline-block;
  margin-right: 60px;
  line-height: 0.5;
}
.header img {
  width: 100%;
  height: auto;
}
.header .gnb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .gnb ul {
  display: flex;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .gnb li a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.2s;
  padding: 0 0;
}
.header .gnb li a:hover {
  font-weight: 700;
}
.header .cta-btn {
  display: inline-block;
  background: #fff;
  color: #a42444;
  font-weight: 600;
  border: none;
  border-radius: 48px;
  padding: 12px 36px;
  margin-left: 40px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .header .cta-btn {
    background: transparent;
    color: #fff;
    font-size: 2rem;
    padding: 0;
  }
}
.header .cta-btn:hover {
  background: #a42444;
  color: #fff;
}
.header.active {
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

@media (max-width: 768px) {
  .header .gnb {
    display: none;
  }
  .header .logo {
    width: 130px;
    margin-right: 0;
  }
}
.main-section {
  text-align: center;
  color: #fff;
  height: auto;
  background: url(../images/landing-main-bg.jpg) top center/cover no-repeat;
}
.main-section .bg {
  padding: 180px 0 120px;
  background: rgba(0, 0, 0, 0.6);
}
.main-section h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.main-section h2 {
  font-size: 1.125rem;
  font-weight: 400;
}
.main-section form {
  max-width: 760px;
  margin: 0 auto 0 auto;
  display: flex;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
}
.main-section form input[type=email] {
  flex: 1;
  border: none;
  padding-left: 1.75rem;
  outline: none;
}
.main-section form .btn {
  font-weight: 600;
}
.main-section .prize-grp {
  max-width: 1200px;
  margin: 0 auto;
}
.main-section .prize-grp h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}
.main-section .prize-grp p {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.86;
}
.main-section .logo-grp {
  gap: 4rem;
  margin-top: 4rem;
}
.main-section .logo-grp li {
  height: 72px;
}
.main-section .logo-grp img {
  height: 100%;
  transition: transform 0.15s;
}
.main-section .logo-grp img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .main-section {
    padding: 0;
  }
  .main-section h1 {
    font-size: 1.5rem;
  }
  .main-section form {
    background: none;
    border-radius: 0;
    flex-direction: column;
  }
  .main-section form input[type=email] {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .main-section form input[type=email], .main-section form button {
    width: 100%;
  }
  .main-section form button {
    margin-bottom: 0.5rem;
  }
  .main-section .col-md-4 {
    margin-bottom: 1.5rem;
  }
  .main-section .col-md-4 h2 {
    font-size: 1.3rem;
  }
  .main-section .logo-grp {
    gap: 1.5rem;
    padding: 1rem;
  }
  .main-section .logo-grp img {
    height: 50px;
  }
}

.section {
  padding: 150px 0;
}
.section .wrap-video {
  border-radius: 16px;
  background: #000;
  overflow: hidden;
  height: 524px;
}
.section h3 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: left;
}
.section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-product {
  position: relative;
}
.section-product .section-title {
  text-align: center;
}
.section-product .product-tabs {
  display: flex;
  justify-content: center;
  width: 600px;
  margin: 0 auto 2.5rem;
}
.section-product .product-tabs .tab-btn {
  font-size: 1.25rem;
  font-weight: 600;
  background: #fff;
  color: #222;
  border: none;
  padding: 0.75rem 2.5rem;
  flex: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.section-product .product-tabs .tab-btn:nth-child(1) {
  border-radius: 2rem 0 0 2rem;
}
.section-product .product-tabs .tab-btn:nth-child(2) {
  border-radius: 0 2rem 2rem 0;
}
.section-product .product-tabs .tab-btn:hover {
  background: hsl(240, 10%, 94%);
}
.section-product .product-tabs .tab-btn.active {
  background: #222;
  color: #fff;
}
.section-product .product-tabs .tab-btn.active:hover {
  background: #000;
}
.section-product .product-contents {
  min-height: 380px;
  position: relative;
}
.section-product .product-contents .product-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.section-product .product-contents .product-pane.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-product .product-contents .product-flex {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(60, 40, 120, 0.12);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section-product .product-contents .product-flex {
    flex-direction: column;
  }
}
.section-product .product-contents .product-info {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 3rem 3rem 5rem;
}
.section-product .product-contents .product-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #222;
}
.section-product .product-contents .product-info .desc {
  margin-bottom: 1.5rem;
}
.section-product .product-contents .product-info .features {
  list-style: none;
  padding: 0;
  margin-bottom: 4rem;
  font-weight: 600;
  color: #222;
}
.section-product .product-contents .product-info .features.primary li {
  color: #a42444;
}
.section-product .product-contents .product-info .features li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-product .product-contents .product-info .features li figure {
  width: 48px;
  line-height: 1;
}
.section-product .product-contents .product-info .features li figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-product .product-contents .product-info .learn-more-btn, .section-product .product-contents .product-info .get-estimate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.65em 1.7em;
  background: #a42444;
  color: #fff;
  text-decoration: none;
  transition: background 0.16s;
}
.section-product .product-contents .product-info .learn-more-btn:hover, .section-product .product-contents .product-info .get-estimate-btn:hover {
  background: #222;
}
.section-product .product-contents .product-info .get-estimate-btn {
  background: #222;
}
.section-product .product-contents .product-info .get-estimate-btn:hover {
  background: #a42444;
}
.section-product .product-contents .product-image {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-product .product-contents .product-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .section-product .product-contents .product-info,
  .section-product .product-contents .product-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section-product .product-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}
.section-product .product-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  text-align: center;
  line-height: 1.25;
  color: #222;
  font-weight: 600;
}
.section-product .product-icons li figure {
  margin-bottom: 0.5rem;
}
.section-product .product-icons li small {
  width: 160px;
  display: block;
  font-size: 0.7em;
  font-weight: 400;
}
@media (max-width: 576px) {
  .section-product .product-tabs {
    width: 100%;
  }
  .section-product .product-contents .product-info {
    padding: 2rem 1rem;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section-product .product-contents .product-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section-product .product-icons li small {
    width: 100px;
  }
}

/* section-product */
.sub-tit {
  color: #666;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  opacity: 0.5;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
  color: #222;
  line-height: 1.18;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .product-tabs .tab-btn {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
  .product-flex {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
  }
  .product-info h3 {
    font-size: 1.1rem;
  }
  .product-info .desc {
    font-size: 0.98rem;
  }
  .product-image img {
    max-width: 98vw;
  }
  .product-icons {
    gap: 1.2rem 0.7rem;
    margin-top: 1.2rem;
  }
  .product-icons li {
    font-size: 0.9rem;
  }
}
.section-dark {
  background: #111;
  color: #fff;
}
.section-dark .sub-tit {
  color: #fff;
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .section-desc {
  color: #fff;
}

.section-hardware .section-desc {
  margin-bottom: 3.5rem;
}
.section-hardware .hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  grid-template-areas: "bio bio rfid" "controller lock lock" "installer installer support";
}
@media (max-width: 1200px) {
  .section-hardware .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "bio bio" "rfid rfid" "controller lock" "installer support";
  }
}
@media (max-width: 700px) {
  .section-hardware .hardware-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "bio" "rfid" "controller" "lock" "installer" "support";
    gap: 1.2rem;
  }
}
@media (max-width: 576px) {
  .section-hardware .hardware-grid {
    display: block;
  }
}
.section-hardware .hardware-card {
  background: #ccc;
  border-radius: 1.3rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 220px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.13s;
}
@media (max-width: 768px) {
  .section-hardware .hardware-card {
    padding: 2rem 1.5rem;
    min-height: 360px;
  }
}
@media (max-width: 576px) {
  .section-hardware .hardware-card {
    margin-bottom: 1rem;
  }
}
.section-hardware .hardware-card:hover {
  box-shadow: 0 10px 32px 0 rgba(40, 40, 80, 0.14);
  transform: translateY(-2px) scale(1.012);
}
.section-hardware .hardware-card.card-bio {
  background: url(../images/sub1-biometric-product.jpg) no-repeat bottom center/cover;
  grid-area: bio;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .section-hardware .hardware-card.card-bio {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .section-hardware .hardware-card.card-bio {
    background-position: right bottom;
    padding-bottom: 200px;
    background-size: auto 50%;
    background-color: #eeeeee;
  }
}
.section-hardware .hardware-card.card-rfid {
  background: url(../images/sub2-rfid-product.jpg) no-repeat bottom right/cover;
}
@media (max-width: 576px) {
  .section-hardware .hardware-card.card-rfid {
    background-position: top center;
    background-size: auto 80%;
    background-color: #000;
  }
}
.section-hardware .hardware-card.card-controller {
  background: url(../images/sub3-controller-product.jpg) no-repeat bottom right/cover;
}
.section-hardware .hardware-card.card-lock {
  background: url(../images/sub4-lock-product.jpg) no-repeat bottom right/cover;
}
@media (max-width: 900px) {
  .section-hardware .hardware-card.card-lock {
    background-size: auto 70%;
    background-color: #cecece;
  }
}
.section-hardware .hardware-card.card-installer {
  background: url(../images/sub5-installer-product.jpg) no-repeat bottom right/cover;
  grid-area: installer;
  flex-direction: row;
}
.section-hardware .hardware-card.card-installer .hardware-card-body .desc {
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .section-hardware .hardware-card.card-installer {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .section-hardware .hardware-card.card-installer {
    background-position: left;
  }
}
.section-hardware .hardware-card.card-support {
  background: url(../images/sub6-support-product.jpg) no-repeat bottom right/cover;
}
@media (max-width: 900px) {
  .section-hardware .hardware-card.card-support {
    background-size: 100% auto;
    background-position: bottom;
    background-color: #f8f8f6;
  }
}
.section-hardware .hardware-card.dark {
  color: #fff;
}
.section-hardware .hardware-card.dark .hardware-card-body h3,
.section-hardware .hardware-card.dark .hardware-card-body .desc {
  color: #fff;
}
.section-hardware .hardware-card.txt-btm {
  justify-content: flex-end;
}
.section-hardware .hardware-card.txt-btm .hardware-card-body {
  flex: 0 0 0;
}
.section-hardware .hardware-card.txt-btm .hardware-card-body .desc {
  margin-bottom: 0;
}
.section-hardware .hardware-card:nth-child(1) {
  grid-area: bio;
}
.section-hardware .hardware-card:nth-child(2) {
  grid-area: rfid;
}
.section-hardware .hardware-card:nth-child(3) {
  grid-area: controller;
}
.section-hardware .hardware-card:nth-child(4) {
  grid-area: lock;
}
.section-hardware .hardware-card:nth-child(5) {
  grid-area: installer;
}
.section-hardware .hardware-card:nth-child(6) {
  grid-area: support;
}
.section-hardware .hardware-card .hardware-card-body {
  flex: 1 1 auto;
}
.section-hardware .hardware-card .hardware-card-body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #222;
  line-height: 1.2;
}
.section-hardware .hardware-card .hardware-card-body .desc {
  margin-bottom: 1.75rem;
}
.section-hardware .hardware-card .hardware-card-body .hardware-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #222;
}
.section-hardware .hardware-card .hardware-card-body .hardware-specs li strong {
  font-size: 1.75rem;
  display: block;
  font-weight: 700;
}
.section-hardware .hardware-card .hardware-card-body .hardware-specs li + li {
  margin-top: 1rem;
}
.section-hardware .hardware-card .hardware-card-body .btn {
  margin-top: 1.3rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8em 2.2em;
  border-radius: 2rem;
}

.section-casestudy .casestudy-video-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.section-casestudy .casestudy-tabs {
  padding: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.section-casestudy .casestudy-tabs .tab-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.1rem;
  padding: 8px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border 0.2s;
}
.section-casestudy .casestudy-tabs .tab-btn.active {
  color: #e0365f;
  border-bottom: 4px solid #e0365f;
  font-weight: 700;
}
.section-casestudy .casestudy-tabs .tab-btn:hover:not(.active) {
  color: #fff;
}
@media (max-width: 576px) {
  .section-casestudy .casestudy-tabs {
    position: relative;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 0.75rem;
  }
  .section-casestudy .casestudy-tabs .tab-btn {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.section-casestudy .casestudy-video-wrapper {
  width: 100%;
  height: 810px;
  margin: 0 auto 36px auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  background: #222;
}
.section-casestudy .casestudy-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
}
.section-casestudy .casestudy-cards {
  margin-top: 32px;
}
.section-casestudy .casestudy-cards .casestudy-card {
  background: #181818;
  border-radius: 1rem;
  padding: 1rem 2rem 2rem;
  flex: 0 0 33.33%;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  height: 100%;
}
.section-casestudy .casestudy-cards .casestudy-card .quote {
  text-align: right;
  color: #e0365f;
  font-size: 5rem;
  margin-bottom: 10px;
  width: 100%;
  line-height: 1;
}
.section-casestudy .casestudy-cards .casestudy-card .desc {
  font-size: 1.08rem;
  color: #eee;
  margin-bottom: 16px;
}
.section-casestudy .casestudy-cards .casestudy-card .author {
  font-size: 0.95rem;
  color: #bbb;
  margin-top: auto;
  font-style: italic;
}
@media (max-width: 768px) {
  .section-casestudy .casestudy-cards {
    flex-direction: column;
    align-items: center;
  }
  .section-casestudy .casestudy-cards .col + .col {
    margin-top: 16px;
  }
  .section-casestudy .casestudy-cards .casestudy-card {
    padding: 1rem;
  }
  .section-casestudy .casestudy-video-wrapper {
    max-width: 100%;
    height: 51.25vw;
  }
}

.logoMarqueeSection {
  max-width: 100%;
  margin: 0 auto;
}

.wrap-customer-logo .default-content-container {
  margin: 0 auto;
  padding: 100px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
}

.wrap-customer-logo .logoMarqueeSection > div > div {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

.wrap-customer-logo .marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.wrap-customer-logo .marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation: marquee 75s linear infinite;
}

.wrap-customer-logo .marquee a {
  display: inline-block;
  white-space: nowrap;
  margin-right: 10px;
  vertical-align: middle;
  background: #fff;
  height: 120px;
  width: 200px;
  text-align: center;
  padding: 30px 40px;
  box-sizing: border-box;
  position: relative;
}

.wrap-customer-logo .marquee a figure {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.wrap-customer-logo div.marquee > a > figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
}

.wrap-customer-logo .marquee-wrapper:hover .marquee {
  animation-play-state: paused !important;
}

.wrap-customer-logo .marquee-wrapper .marquee a:hover .label {
  display: block;
}

.wrap-customer-logo .marquee-wrapper .marquee a:hover img {
  filter: none;
}

.wrap-customer-logo .marquee-wrapper .marquee a .label {
  position: absolute;
  padding: 4px 8px 6px;
  top: 0;
  left: 0;
  color: #fff;
  background: #a42444;
  font-size: 13px;
  line-height: 100%;
  border-radius: 0 0 6px;
  display: none;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.section-contact {
  background: hsl(240, 10%, 94%);
  text-align: center;
}

.contact_form {
  aspect-ratio: 1020/1350;
  max-width: 1020px;
  margin: 0 auto;
  height: auto;
  background: #fff;
  border-radius: 1.5rem;
  padding: 0 2rem;
}
@media (max-width: 1020px) {
  .contact_form {
    width: 100%;
    height: 132.35vw;
    max-width: 100%;
    padding: 0 1rem;
  }
  .contact_form iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 830px) {
  .contact_form {
    height: 188.4vw;
  }
}
@media (max-width: 576px) {
  .contact_form {
    height: 408.33vw;
  }
}

.footer {
  background: #111;
  padding-bottom: 100px;
  color: #fff;
  font-size: 0.85rem;
}
.footer .footer-top .container {
  border-bottom: 1px solid #292929;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0 24px;
}
.footer .footer-top .footer-policy {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.footer .footer-top .footer-policy .footer-bar {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 24px;
  background: rgba(255, 255, 255, 0.2);
}
.footer .footer-top .footer-page-btn {
  background: #333;
  border-radius: 8px;
  padding: 12px 24px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.footer .footer-top .footer-page-btn .material-icons {
  font-size: 1.25rem;
}
.footer .footer-top .footer-page-btn:hover {
  background: #a42444;
  color: #fff;
}
.footer .footer-bottom {
  font-size: 0.9em;
}
.footer .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 36px 0;
}
.footer .footer-bottom .footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .footer-bottom .footer-info .logo {
  width: 140px;
  margin-right: 16px;
}
.footer .footer-bottom .footer-info .footer-copyright, .footer .footer-bottom .footer-info .footer-company {
  color: rgba(255, 255, 255, 0.3);
  margin-right: 12px;
  font-weight: 300;
}
.footer .footer-bottom .footer-sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .footer-bottom .footer-sns a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer .footer-bottom .footer-sns a i {
  color: #aaa;
  font-size: 1.3rem;
}
.footer .footer-bottom .footer-sns a:hover {
  color: #fff;
}

.mb_use {
  display: none;
}

@media (max-width: 1399px) {
  .main-section .wrap-form,
  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .header.active .container,
  .header .container {
    padding: 0 24px;
    text-align: center;
  }
  .header.active .container .btn-primary.mb_use,
  .header .container .btn-primary.mb_use {
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .text-left,
  .img-left {
    padding-right: 0;
  }
  .text-right {
    padding-left: 0;
  }
  .section1 {
    padding-top: 0;
  }
  .section1 h2 {
    margin-bottom: 50px;
  }
  .section1 h2 span {
    padding: 50px 0;
    background-position: center top, center bottom;
  }
  .section1 .row + .row {
    margin-top: 40px;
  }
  figure {
    text-align: center;
  }
  .section4 .feature-list .row {
    justify-content: flex-start;
  }
  .section4 .feature-list .row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section4 .video-grp {
    height: auto;
  }
  .main-section {
    padding-bottom: 0;
  }
  .main-section .wrap-txt {
    padding-right: 0;
  }
  .main-section .wrap-video {
    margin-bottom: 20px;
  }
  .section2 .row {
    justify-content: center;
  }
  .section2 .col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .section2 .col:nth-child(4), .section2 .col:nth-child(5) {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  .mb_use {
    display: block;
  }
  figure {
    width: 100%;
  }
  figure img {
    width: auto;
  }
  .section1 .col:nth-child(1),
  .section2 .col,
  .section4 .feature-list .row .col-4,
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .main-section h1 {
    font-size: 1.75rem;
    line-height: 1.1;
  }
  .section1 h2,
  .section3 h3,
  .section2 h2 {
    font-size: 1.5rem;
  }
  .section1 .location-grp i,
  .section1 .location-grp .txt-grp h4,
  .main-section .how-list h3,
  .section1 h3,
  .section2 h5 {
    font-size: 20px;
  }
  .section1 h3 {
    margin: 30px 0 16px;
    font-size: 24px;
    line-height: 1.25;
  }
  .section3 .txt-grp,
  .section2 p, p {
    font-size: 16px;
  }
  .header {
    padding: 8px 24px;
  }
  .section {
    padding: 50px 0;
  }
  .main-section {
    height: auto;
    padding: 0 0 0;
    background-size: cover;
    background-position: center top;
  }
  .main-section .bg {
    padding: 120px 0 60px;
  }
  .main-section .container {
    margin-top: 0;
  }
  .main-section .tit-grp {
    margin: 20px 0 40px;
  }
  .main-section .tit-grp figure {
    margin: 0 0 20px;
  }
  .main-section h1 strong {
    font-size: 100%;
  }
  .main-section h2 {
    margin: 16px 0 24px;
  }
  .section .sch-item dl {
    display: block;
  }
  .section .sch-item dl dt {
    margin-bottom: 4px;
  }
  .section .sch-item dl dt:after {
    content: none;
  }
  .timetable-item dl {
    display: block;
  }
  .wrap-form iframe {
    height: 920px;
  }
  .footer .container {
    padding: 50px 24px;
    display: block;
    text-align: center;
  }
  .footer .container .logo {
    display: block;
    margin: 0;
  }
  .footer .container .sns ul {
    justify-content: center;
    margin-top: 30px;
  }
  .btn-icon.go-top {
    right: 24px;
  }
  .section4 .feature-list .row .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .faq-category {
    display: none;
  }
  .faq-a {
    padding: 0 24px 24px 24px;
  }
  .footer {
    padding: 24px;
  }
  .footer .footer-top .footer-policy,
  .footer .footer-top .container,
  .footer .footer-bottom .container,
  .footer .footer-bottom .footer-info,
  .footer .container {
    display: block;
  }
  .footer .footer-bottom .footer-info {
    margin-bottom: 16px;
    text-align: left;
  }
  .footer .footer-bottom .footer-info span, .footer .footer-bottom .footer-info a {
    display: block;
  }
  .footer .footer-top .container {
    padding: 1rem 0;
  }
  .footer .footer-top .footer-policy {
    margin-bottom: 16px;
  }
  .footer .footer-top .footer-policy .footer-bar {
    display: none;
  }
  .footer .footer-top .footer-policy a {
    width: 100%;
    display: inline-block;
    text-align: left;
    margin-bottom: 8px;
  }
}/*# sourceMappingURL=style.css.map */