@charset "utf-8";

:root {
  --point-color-01: #06a8eb;
  --point-color-02: 0, 141, 182; /* #008db6 */
  --point-color-03: 6, 140, 196; /* #068cc4 */

  --point-color-06: 14, 112, 180; /* #0e70b4 */
  --point-color-07: 0, 80, 135; /* #005087, #084879 */
  --point-color-08: 40, 95, 186; /* #285fba */

  /* darker blue*/
  --point-color-04: 9, 29, 95; /* #091d5f */
  --point-color-13: 23, 28, 36; /* #171c24 */
  --point-color-14: 29, 80, 189; /* #1d50bd */

  /* teal */
  --point-color-05: 151, 217, 214; /* #97d9d6 */

  /* light blue gray */
  --point-color-09: 169, 173, 185; /* #a9adb9 */
  --point-color-10: 240, 242, 246; /* #f0f2f6, #f3f3f5, #eaebef, #eef0f3, #f8f9fa, #eaebef */
  --point-color-11: 65, 65, 69; /* #414145 */
  --point-color-12: 230, 235, 243; /* #e6ebf3 */
  /* rgb(var(--point-color-10)); */
}

.btn-primary {
  background-color: var(--point-color-01);
  border-color: rgb(var(--point-color-03));
}
.btn-outline-primary {
  color: rgb(var(--point-color-03));
  border-color: rgb(var(--point-color-03));
}
.btn-primary:hover,
.btn-outline-primary:hover {
  background-color: rgb(var(--point-color-02));
  border-color: rgb(var(--point-color-03));
}

/*****************************************************
	Common
*****************************************************/

@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1400px) {
}

/* 레이아웃 */
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row.no-gutters {
  margin-right: 0;
  margin-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 {
  padding-right: 15px;
  padding-left: 15px;
}
.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.layout.between {
  justify-content: space-between;
}
.layout.half .ly-item {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (min-width: 1300px) {
  .container {
    max-width: 1230px;
  }
}

/* Carousel */
.carousel-box .prev-btn span,
.carousel-box .next-btn span {
  display: inline-block;
  text-indent: -5000em;
}
.owl-dots-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.owl-carousel .owl-dots-wrapper .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border: none;
  border-radius: 50%;
  background-color: hsl(0, 0%, 100%);
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--point-color-01);
}
.owl-carousel .play-pause-btn {
  color: hsl(0, 0%, 100%);
}

/* 기타 */
.multi-row-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mark {
  padding: 0;
  background-color: transparent;
}

/*****************************************************
	Include
*****************************************************/

/***** Header *****/
/* top sub */
.top-sub {
  background-color: var(--point-color-01);
}
.top-sub a {
  display: block;
  height: 40px;
  line-height: 40px;
  font-weight: 200;
  white-space: nowrap;
  color: hsl(0, 0%, 100%);
  font-size: 0.85rem;
}
.top-sub-layout {
  justify-content: space-between;
}
.top-sub-layout ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.top-sub-layout ul > li {
  position: relative;
  margin-right: 20px;
}
.top-sub-layout ul > li:last-child {
  margin-right: 0;
}
.top-sub-layout ul > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10.5px;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 14px;
  background-color: rgb(var(--point-color-05));
}
.top-sub-link-main,
.top-sub-link-login {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: center left;
}
.top-sub-link-main {
  background-image: url(/template/t001005/images/top-sub-icon01.png);
}
.top-sub-link-login {
  background-image: url(/template/t001005/images/top-sub-icon02.png);
}
.top-sub-link-popup {
  padding-left: 10px;
  padding-right: 25px;
  background-color: rgb(var(--point-color-03));
}
.top-sub-link-popup::after {
  content: "\e5cf";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-47%);
  font-family: "material-icons";
  font-size: 18px;
}
.top-sub-link-popup.on::after {
  content: "\e5ce";
}

/* top main */
#header {
  position: relative;
  z-index: 10;
}
#header .top-main-layout > .ly-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  align-items: center;
}
#header .site-logo {
  display: block;
  margin-right: 10px;
}
#header .site-logo {
  width: 128px;
  height: auto;
}
#header .site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0;
}
#header .site-title .site-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0;
}
#header .sub-site-title {
  font-size: 18px;
  font-weight: 500;
  color: hsl(0, 0%, 20%);
}
#header .sub-site-title small {
  font-size: 12px;
  display: block;
}
#header .nav-bg-fostrap {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: inline-block;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background-color: rgb(var(--point-color-04));
  vertical-align: baseline;
  cursor: pointer;
  transition: 0.3s;
}
#header .nav-bg-fostrap .navbar-fostrap {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  background-color: rgb(var(--point-color-04));
  transition: 0.3s;
}
#header .nav-bg-fostrap .navbar-fostrap span {
  display: block;
  width: 18px;
  height: 2px;
  margin-bottom: 4px;
  background-color: hsl(0, 0%, 100%);
}
#header .nav-bg-fostrap .navbar-fostrap span:last-child {
  margin-bottom: 0;
}
.top-sub .container .row .col-12 {
  padding-right: 0;
}
@media (min-width: 576px) {
  .top-sub .container .row .col-12 {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  #header .top-main {
    position: relative;
  }
  #header .top-main .header-bg {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    height: 60px;
    background-color: rgb(var(--point-color-10));
    box-shadow: 0 5px 7px -2px rgba(59, 56, 56, 0.35);
    overflow: hidden;
  }
  #header .top-main .header-bg.on {
    display: block;
  }
  #header .top-main-layout > .ly-item:last-child {
    display: none;
  }
  #header .nav-bg-fostrap {
    display: none;
  }
}
#mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.menubar-box {
  position: fixed;
  top: 0;
  right: -354px;
  z-index: 110;
  width: 300px;
  height: 100vh;
  max-width: 70vw;
  background-color: hsl(0, 0%, 100%);
  transition: right 0.3s;
}
.menubar-box.on {
  right: 0;
}
.menubar-title-box {
  position: relative;
  height: 54px;
  line-height: 54px;
}
.menubar-title {
  padding-left: 20px;
  margin: 0;
  background-color: rgb(var(--point-color-06));
  font-size: 24px;
  line-height: inherit;
  color: hsl(0, 0%, 100%);
}
.menubar-close {
  position: absolute;
  top: 0;
  left: -54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 100%);
  width: 54px;
  height: 54px;
  text-align: center;
  background-color: rgb(var(--point-color-07));
  transition: 0.3s;
}
.menubar-close:hover,
.menubar-close:focus {
  background-color: hsl(204, 100%, 16%);
}
.menubar-close:hover,
.menubar-close:focus {
  color: hsl(0, 0%, 100%);
}
.menubar {
  list-style: none;
  display: block;
  height: 100%;
  margin: 0;
  overflow-y: auto;
}
.menubar [role="menuitem"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.menubar > li > [role="menuitem"] {
  height: 60px;
  background-color: hsl(0, 0%, 100%);
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  color: hsl(0, 0%, 40%);
}
.menubar > li > [role="menuitem"].active {
  color: rgb(var(--point-color-03));
}
.menubar > li > [role="menuitem"]:hover {
  color: rgb(var(--point-color-03));
}
.menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox {
  display: block;
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  width: 100%;
  height: auto;
}
.menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox > .menubox-inner {
  opacity: 1;
}
.menubar .menubox-inner [role="menuitem"] {
  padding-right: 10px;
}

/* 2 depth menuitem */
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
  display: block;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1rem;
  color: hsl(0, 0%, 40%);
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"]:hover,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"]:focus {
  text-decoration: underline;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"].active {
  color: rgb(var(--point-color-03));
}
.menubar > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"] + .menubox > .menubox-inner > [role="menu"] {
  display: block;
  background-color: rgb(var(--point-color-10));
}

.menubar > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar > li > [role="menuitem"][aria-haspopup="true"]::after,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: hsl(0, 0%, 40%);
}
.menubar > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before {
  right: 20px;
  width: 16px;
  height: 2px;
}
.menubar > li > [role="menuitem"][aria-haspopup="true"]::after,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
  right: 27px;
  width: 2px;
  height: 16px;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
  background-color: hsl(0, 0%, 56%);
}
.menubar > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"]::after,
.menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"][aria-expanded="true"]::after {
  display: none;
}
/* 3 depth menu */
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] {
  list-style: none;
  display: none;
  padding: 10px 0;
  margin: 0;
  background-color: hsl(240, 9%, 90%);
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"]::after {
  content: "";
  clear: both;
  display: block;
}
/* 3 depth menu li */
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li {
  position: relative;
  padding: 0 0 0 10px;
  margin-bottom: 5px;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  z-index: 1;
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgb(var(--point-color-06));
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li:last-child {
  margin-bottom: 0;
}
/* 2 depth menuitem 하위 메뉴 열림 */
.menubar .menubox-inner > [role="menu"] > li [role="menuitem"][aria-expanded="true"] + [role="menu"] {
  display: block;
  border-bottom: 1px solid #ddd;
}
/* 2 depth menuitem 하위 메뉴 닫힘 */
.menubar .menubox-inner > [role="menu"] > li [role="menuitem"][aria-expanded="false"] + [role="menu"] {
  display: none;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"] {
  display: block;
  font-size: 15px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"]:hover,
.menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"]:focus {
  background-color: rgb(var(--point-color-10));
}

.menubar .menubox-inner > .menu-deco {
  display: none;
}
.menubar .menubox-inner > [role="menu"] {
  display: none;
}
.menubar .menubox-inner > [role="menu"] > li [role="menuitem"][aria-expanded="false"] + [role="menu"] {
  display: none;
}
@media (min-width: 576px) {
  .menubar .menubox-dummy,
  .menubar .menubox-inner {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .menubar .menubox-dummy,
  .menubar .menubox-inner {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .top-menu {
    position: relative;
    right: -20px;
  }
  .menubar-box {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: 20;
    width: 100%;
    height: 100%;
    max-width: none;
    background-color: hsl(0, 0%, 100%);
    /* overflow: hidden; */
    transition: right 0.3s;
  }
  .menubar .menubox {
    display: none;
  }
  .menubar > li > [role="menuitem"][aria-expanded="true"] + .menubox {
    display: none;
  }
  .menubar-title-box {
    display: none;
  }
  .menubar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .menubar > li {
    list-style: none;
    height: 60px;
  }
  .menubar > li:hover .menubox {
    display: block;
    background-color: transparent;
  }
  .menubar .menubox-inner [role="menuitem"] {
    padding-right: 0;
  }
  .menubar > li > [role="menuitem"] {
    height: 100%;
    background-color: hsl(0, 0%, 100%);
    border-bottom: none;
    font-size: 19px;
    font-weight: 500;
    color: hsl(0, 0%, 7%);
  }
  .menubar > li > [role="menuitem"].active {
    background-color: hsl(0, 0%, 100%);
    color: rgb(var(--point-color-03));
  }
  .menubar > li > [role="menuitem"][aria-haspopup="false"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 12px;
    background: url(/common/images/external-link.png) no-repeat center;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
    font-size: 17px;
    color: hsl(0, 0%, 33%);
  }
  .menubar > li > [role="menuitem"][aria-haspopup="true"]::before,
  .menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::before,
  .menubar > li > [role="menuitem"][aria-haspopup="true"]::after,
  .menubar .menubox-inner > [role="menu"] > li > [role="menuitem"][aria-haspopup="true"]::after {
    display: none;
  }
  .menubar > li > [role="menuitem"] > .menuitem-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .menubar > li > [role="menuitem"] > .menuitem-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    display: block;
    width: 0;
    height: 3px;
    background: rgb(var(--point-color-08));
    transition: all 0.3s ease;
  }
  .menubar > li:hover > [role="menuitem"] > .menuitem-text::after {
    left: 0;
    width: 100%;
  }
  .menubar .menubox {
    position: absolute;
    top: 60px;
    z-index: 1;
    width: auto;
  }
  .menubar .menubox.on {
    z-index: 101;
  }
  .menubar .menubox-dummy,
  .menubar .menubox-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: -1;
  }
  .menubar .menubox-dummy {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
  }
  .menubar .menubox-dummy::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc((100vw - 100%) / 2 * -1);
    display: block;
    width: calc((100vw - 100%) / 2);
    height: 100%;
    background-color: rgb(var(--point-color-07));
  }
  .menubar .menubox-dummy::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc((100vw - 100%) / 2 * -1 + 9px);
    display: block;
    width: calc((100vw - 100%) / 2);
    height: 100%;
    background-color: hsl(0, 0%, 100%);
  }
  .menubar .menubox.on .menubox-dummy,
  .menubar .menubox.on .menubox-inner {
    z-index: 1;
  }
  .menubar .menubox.on .menubox-inner {
    z-index: 2;
  }
  .menubar .menubox-dummy-1,
  .menubar .menubox-inner > .menu-deco {
    flex: 0 0 25%;
    max-width: 25%;
    display: block;
    background-color: rgb(var(--point-color-10));
  }
  .menubar .menubox-dummy-1 {
    position: relative;
    z-index: 1;
    background-color: rgb(var(--point-color-10));
  }
  .menubar .menubox-inner > .menu-deco {
    position: relative;
    padding: 40px 15px 15px;
    background-color: rgb(var(--point-color-07));
  }
  .menubar .menubox-inner > .menu-deco::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 421px;
    height: 322px;
    background: url(/site/resource/ansan/www/images/menu-bg.png) no-repeat center;
  }
  .menubar .menubox-inner .menu-deco-inner {
    position: relative;
    z-index: 3;
    margin-top: 30px;
  }
  .menubar .menubox-inner .menu-deco-inner::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    display: block;
    width: 25px;
    height: 2px;
    background-color: hsl(0, 0%, 100%);
  }
  .menubar .menu-deco-title {
    margin-bottom: 10px;
    font-size: 27px;
    font-weight: 500;
    color: hsl(0, 0%, 100%);
  }
  .menubar .menu-deco-text {
    font-size: 16px;
    font-weight: 300;
    color: hsl(0, 0%, 100%);
    opacity: 0.5;
    line-height: 1.6;
  }
  .menubar .menubox-dummy-2,
  .menubar .menubox-inner > [role="menu"] {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: hsl(0, 0%, 100%);
  }
  .menubar .menubox-inner > [role="menu"] {
    background-color: transparent;
  }
  .menubar .menubox-inner > [role="menu"] > li {
    list-style: none;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menuitem"] {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    white-space: nowrap;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menu"] {
    display: block !important;
    padding: 10px 0;
    background-color: transparent;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li {
    width: 100%;
    float: none;
    margin-bottom: 4px;
    padding: 0;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li::before {
    left: 8px;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li > [role="menuitem"].active {
    color: rgb(var(--point-color-08));
    text-decoration: underline;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .menubar .menubox-inner > [role="menu"] > li > [role="menu"] > li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .top-menu {
    position: relative;
    right: -25px;
  }
  .menubar .menubox::before {
    right: calc((100vw - 1140px) / 2 + 1140px + 20px - (1140px * 0.25));
  }
  .menubar [role="menuitem"] {
    padding: 0 25px;
  }
  .menubar .menubox-dummy,
  .menubar .menubox-inner {
    max-width: 1140px;
  }
}
@media (min-width: 1300px) {
  .menubar .menubox::before {
    right: calc((100vw - 1200px) / 2 + 1200px + 20px - (1200px * 0.25));
  }
  .menubar .menubox-dummy,
  .menubar .menubox-inner {
    max-width: 1200px;
  }
  .menubar .menubox-dummy-2,
  .menubar .menubox-inner > [role="menu"] {
    padding-right: 0;
  }
  .menubar .menubox-inner > .menu-deco {
    padding-left: 0;
  }
}

/***** Footer *****/
#footer {
  padding: 30px 15px;
}
body.sub #footer {
  border-top: 1px solid #eee;
}
#footer .footer-layout-left {
  align-items: flex-start;
}
#footer .footer-layout-left > .ly-item:first-child {
  padding-top: 4px;
  margin-right: 40px;
}
#footer .footer-menu {
  display: block;
  margin-bottom: 15px;
}
#footer .footer-menu ul {
  display: inline-block;
  margin: 0;
}
#footer .footer-menu ul > li {
  position: relative;
  float: left;
  list-style: none;
}
#footer .footer-menu ul > li > a {
  display: inline-block;
  font-size: 0.875rem;
  color: rgb(var(--point-color-11));
  padding-right: 12px;
}
#footer .footer-menu ul > li:first-child > a {
  padding-left: 0;
}
#footer .footer-menu ul > li:last-child > a {
  padding-right: 0;
}
#footer .footer-menu ul > li > a:hover,
#footer .footer-menu ul > li > a:focus {
  text-decoration: underline;
}
#footer .footer-menu ul > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: rgb(var(--point-color-09));
}
#footer address {
  margin-bottom: 5px;
}
#footer .address {
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 2px;
  color: hsl(0, 0%, 52%);
}
#footer .tel-fax,
#footer .tel-fax a {
  font-size: 14px;
  color: hsl(0, 0%, 52%);
}
#footer .copyright {
  display: block;
  font-size: 14px;
  color: hsl(0, 0%, 62%);
}
#footer .footer-layout-right {
  flex-wrap: wrap;
  justify-content: flex-end;
}
#footer .footer-layout-right > .ly-item {
  margin-bottom: 10px;
}
#footer .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
}
#footer .sns-list > li {
  margin-right: 8px;
}
#footer .footer-family-site {
  text-align: right;
}
#footer .footer-family-site button {
  position: relative;
  display: block;
  min-width: 180px;
  padding: 0.5rem 0.75rem;
  border-radius: 2px;
  background-color: hsl(0, 0%, 90%);
  font-size: 16px;
  color: hsl(0, 0%, 27%);
  text-align: left;
}
.dropup .dropdown-toggle {
  position: relative;
}
.dropup .dropdown-toggle::after {
  content: "\e316";
  font-family: "Material-Icons";
  position: absolute;
  top: 45%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  border: none;
  margin: 0;
  vertical-align: baseline;
  font-size: 18px;
}
@media (min-width: 380px) {
  #footer .footer-menu ul > li > a {
    padding-right: 20px;
  }
  #footer .footer-menu ul > li:not(:last-child)::after {
    right: 9.5px;
  }
}
@media (min-width: 768px) {
  #footer .address,
  #footer .tel-fax {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  #footer .footer-menu ul > li:first-child > a {
    color: rgb(var(--point-color-03));
  }
}

a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}
#footer .footer-layout-right {
  justify-content: center;
}
#footer .col-lg-4 {
  padding-top: 1rem;
}
#footer .sns-list a {
  width: 32px;
  height: 32px;
  padding: 2px 0;
  text-align: center;
  display: block;
  transition: 0.2s;
  background: #717171;
  border-radius: 300px;
}
#footer .sns-list a:hover,
#footer .sns-list a:focus {
  background: #909090;
}

@media (min-width: 992px) {
  #footer .col-lg-3 {
    padding-top: 0;
  }

  #footer .footer-layout-right {
    justify-content: flex-end;
  }
}

/*****************************************************
	Main
*****************************************************/

/***** Main Visual *****/
#main-visual {
  max-width: 2000px;
  margin: 0 auto;
}
.mv-box {
  position: relative;
  height: 280px;
}
.mv-carousel .item {
  height: 280px;
}
.mv-carousel .item-img {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv-text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 5px;
  background-color: rgba(0, 0, 0, 60%);
  color: #fff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}
.mv-tagline {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.8;
}
.mv-title-box {
  padding: 5px 0;
}
.mv-title {
  font-size: 18px;
  font-weight: 300;
}
.mv-title .mark {
  font-weight: 600;
}
.mv-carousel .owl-dots-wrapper {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (min-width: 576px) {
  .mv-box,
  .mv-carousel .item {
    height: 340px;
  }
  .mv-text {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .mv-box,
  .mv-carousel .item {
    height: 440px;
  }
  .mv-text {
    display: block;
  }
}
@media (min-width: 992px) {
  .mv-box,
  .mv-carousel .item {
    position: relative;
    height: 540px;
  }
  .mv-box::before {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 110px;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: skew(0, -3deg);
    -moz-transform: skew(0, -3deg);
    -ms-transform: skew(0, -3deg);
    -o-transform: skew(0, -3deg);
    transform: skew(0, -3deg);
    background-color: rgb(var(--point-color-12));
  }
  .mv-text-box {
    top: 180px;
    left: 0;
    z-index: auto;
    align-items: flex-start;
    height: auto;
    padding: 25px;
    background-color: transparent;
  }
  .mv-title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
  }
  .mv-title-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -130px;
    transform: translateY(-50%);
    z-index: 1;
    display: block;
    width: 569px;
    height: 424px;
    background: transparent url(/template/t001001/images/main-mv-text-bg.png) no-repeat center;
    display: none;
  }
  .mv-title,
  .mv-tagline {
    position: relative;
    z-index: 1;
  }
  .mv-title {
    margin-bottom: 5px;
    font-size: 35px;
  }
  .mv-tagline {
    font-size: 16px;
  }
  .mv-carousel .owl-dots-wrapper {
    bottom: 200px;
  }
  .mv-text {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .mv-box,
  .mv-carousel .item {
    height: 640px;
  }
  .mv-text-box {
    top: 210px;
  }
  .mv-title {
    font-size: 40px;
  }
  .mv-tagline {
    font-size: 18px;
  }
  .mv-text {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .mv-text {
    font-size: 32px;
  }
}

/***** 갤러리 *****/
.sec-box-gallery {
  position: relative;
  max-width: 125rem;
  min-height: 115px;
  padding: 30px 15px 20px;
  margin: 0 auto;
  background-color: rgb(var(--point-color-12));
}
.gallery-carousel-box {
  background-color: var(--point-color-01);
  padding: 75px 30px 20px;
}
.gallery-container .tagline-box {
  height: 100%;
  padding: 45px 30px;
  background-color: rgb(var(--point-color-03));
}
.gallery-container .tagline {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.075em;
  color: hsl(0, 0%, 100%);
}
.gallery-carousel .item {
  position: relative;
  overflow: hidden;
}
.gallery-carousel .item-header {
  height: 12.5rem;
  background-color: hsl(0, 0%, 80%);
  background-image: url(/common/images/thumb-non.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.gallery-carousel .item-header img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.gallery-carousel .item-body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.gallery-carousel .item-body .item-title {
  padding: 10px 20px;
  font-size: 1.188rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-carousel .item-link:hover .item-title,
.gallery-carousel .item-link:focus .item-title {
  color: hsl(0, 0%, 90%);
  text-decoration: underline;
}
.gallery-carousel .item-body .item-date {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.5);
}
.gallery-carousel .item-link:hover .item-date,
.gallery-carousel .item-link:focus .item-date {
  text-decoration: underline;
}
.gallery-carousel-box .btn-wrapper {
  position: absolute;
  top: 19px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.gallery-carousel-box .btn-wrapper .btn-divider {
  display: inline-block;
  width: 1px;
  height: 27px;
  margin: 0 3px 0 2.5px;
  background-color: rgba(255, 255, 255, 20%);
}
.gallery-carousel-box .play-pause-btn span {
  font-size: 2.25rem;
  color: hsl(0, 0%, 100%);
}
.gallery-carousel-box .prev-btn,
.gallery-carousel-box .next-btn {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
}
.gallery-carousel-box .prev-btn::before,
.gallery-carousel-box .next-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "material-Icons";
  font-size: 40px;
  color: hsl(0, 0%, 100%);
}
.gallery-carousel-box .prev-btn::before {
  content: "\e314";
}
.gallery-carousel-box .next-btn::before {
  content: "\e315";
}
.gallery-carousel-box .non-info {
  text-align: center;
  background: white url(/common/images/non-board.png) no-repeat top 15px center;
  padding: 12rem 0.5rem 1.2rem;
  font-size: 1.3rem;

  background-position: top 40px center;
  padding: 10rem 0.5rem 3.2rem;
  background-size: 96px auto;
}
@media (min-width: 992px) {
  .sec-box-gallery {
    min-height: 85px;
  }
  .sec-gallery {
    position: relative;
    z-index: 2;
    margin-top: -200px;
  }
}
@media (min-width: 1200px) {
  .sec-box-gallery {
    min-height: 110px;
  }
  /* .gallery-container {
			top: -250px;
	} */
  .gallery-container > .row {
    position: relative;
  }
  .gallery-container [class|="col"]:nth-child(2) {
    position: static;
  }
  .gallery-container .tagline-box {
    padding-left: 25px;
    padding-right: 20px;
  }
  .gallery-carousel-box {
    position: static;
    padding: 40px 50px 30px;
  }
  .gallery-carousel-box .btn-wrapper {
    top: auto;
    left: 15px;
    bottom: 35px;
    width: auto;
  }
  .gallery-carousel .item-body {
    position: static;
    background-color: transparent;
  }
  .gallery-carousel .item-body .item-title {
    padding: 10px 0 5px;
    font-size: 1.125rem;
  }
}
@media (min-width: 1300px) {
  .gallery-container [class|="col"]:nth-child(1) {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .gallery-container [class|="col"]:nth-child(2) {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .gallery-container .tagline-box {
    padding-left: 30px;
    padding-right: 30px;
  }
  .gallery-container .tagline {
    font-size: 25px;
  }
}

/***** 공지사항, 퀵메뉴 및 배너 *****/
.sec-box-etc {
  max-width: 125rem;
  padding: 0 15px 30px;
  margin: 0 auto;
  background-color: rgb(var(--point-color-12));
}
.sec-box-etc .deco {
  position: absolute;
  top: 25px;
  left: 30px;
  z-index: 1;
  padding-bottom: 5px;
  border-bottom: 1px solid hsl(0, 0%, 100%);
  color: hsl(0, 0%, 100%);
}
@media (min-width: 400px) {
  .sec-box-etc .deco {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding-bottom: 5px;
    border-bottom: 1px solid hsl(0, 0%, 100%);
    color: hsl(0, 0%, 100%);
  }
}
@media (min-width: 768px) {
  .sec-box-etc .deco {
    position: absolute;
    top: 25px;
    left: 30px;
    transform: none;
    z-index: 1;
    padding-bottom: 5px;
    border-bottom: 1px solid hsl(0, 0%, 100%);
    color: hsl(0, 0%, 100%);
  }
}
@media (min-width: 992px) {
  .sec-box-etc .row-sub [class|="col"]:first-child {
    padding-right: 10px;
  }
  .sec-box-etc .row-sub [class|="col"]:last-child {
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  .sec-etc-support .deco {
    top: 15px;
    left: 20px;
  }
  .sec-box-etc > .container > .row > [class|="col"]:first-child {
    padding-right: 10px;
  }
  .sec-box-etc .row-sub [class|="col"]:first-child {
    padding-left: 10px;
  }
}

/* 공지사항 */
.sec-etc-board {
  padding: 30px;
  margin-bottom: 20px;
  background-color: hsl(0, 0%, 100%);
}
.sec-etc-board .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sec-etc-board .header .sec-title {
  margin-bottom: 0;
}
.sec-etc-board .header .link-more {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/template/t001001/images/more.png) no-repeat center;
  text-indent: -5000em;
  transition: 0.3s;
}
.sec-etc-board .header .link-more:hover,
.sec-etc-board .header .link-more:focus {
  transform: rotate(180deg);
}
.sec-etc-board .notice-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: single;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0dbdb;
  margin-bottom: 20px;
}
.sec-etc-board .notice-first-date {
  -ms-flex: 0 0 5.063rem;
  flex: 0 0 5.063rem;
  position: relative;
  height: 4.625rem;
  margin-right: 20px;
  background-color: hsl(0, 0%, 98%);
  text-align: center;
}
.sec-etc-board .notice-first-date .date {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--point-color-01);
  display: block;
  padding-top: 10px;
}
.sec-etc-board .notice-first-date .year-month {
  font-size: 0.938rem;
  font-weight: 600;
  color: hsl(0, 0%, 62%);
  display: block;
  margin-top: -1px;
}
.notice-first-content {
  width: calc(100% - 5.063rem - 20px);
  position: relative;
}
.sec-etc-board .notice-first-title {
  height: 3.563rem;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: hsl(0, 0%, 20%);

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sec-etc-board .notice-first.new .notice-first-title.overflow::after {
  position: absolute;
  top: calc(3.375rem - 24px);
  right: -15px;
}
.sec-etc-board .notice-first-detail {
  display: none;
  font-size: 0.938rem;
  color: hsl(0, 0%, 40%);
  height: 2.625rem;
  line-height: 1.4;
}
.notice-first-link {
  display: block;
}
.notice-first-link:hover .notice-first-date,
.notice-first-link:focus .notice-first-date {
  background-color: hsl(0, 0%, 93%);
}
.notice-first-link:hover .notice-first-title,
.notice-first-link:focus .notice-first-title,
.notice-first-link:hover .notice-first-detail,
.notice-first-link:focus .notice-first-detail {
  color: hsl(0, 0%, 5%);
  text-decoration: underline;
}
.sec-etc-board .list-wrapper ul {
  margin-bottom: 0;
}
.sec-etc-board .list-wrapper li {
  margin-bottom: 10px;
}
.sec-etc-board .list-wrapper .list-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.sec-etc-board .list-wrapper .list-item-wrapper .title,
.sec-etc-board .list-wrapper .list-item-wrapper .date {
  white-space: nowrap;
}
.sec-etc-board .list-wrapper .list-item-wrapper .title {
  position: relative;
  color: hsl(0, 0%, 40%);
  font-size: 0.938rem;
  padding-right: 25px;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec-etc-board .list-wrapper a:hover .list-item-wrapper .title,
.sec-etc-board .list-wrapper a:focus .list-item-wrapper .title {
  color: hsl(0, 0%, 5%);
  text-decoration: underline;
}
.sec-etc-board .list-wrapper .list-item-wrapper .date {
  color: hsl(0, 0%, 62%);
  font-size: 0.813rem;
  font-weight: 300;
}
.sec-etc-board .list-wrapper .new .list-item-wrapper .title::after {
  content: url("../../t000001/images/new.png");
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .sec-etc-board .notice-first-title {
    display: block;
    height: auto;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(0, 0%, 20%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sec-etc-board .notice-first-detail {
    display: block; /* IE에서 display 속성의 -webkit-box 값을 지원하지 않기 때문에 IE에서 해당 콘텐츠가 보여지도록 하기 위해 우선 block을 지정함 */
    display: -webkit-box;
  }
}
@media (min-width: 992px) {
  .sec-etc-board .notice-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: single;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .sec-etc-board {
    height: 319px;
    padding: 20px 30px 15px;
    margin-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .sec-etc-board {
    height: 346.5px;
    padding: 30px;
  }
}

/* 교수지원 프로그램 */
.sec-etc-support {
  position: relative;
  height: 11.25rem;
  margin-bottom: 20px;
  background-image: url(/template/t001001/images/main-support-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgb(var(--point-color-13));
  letter-spacing: -0.025em;
}
.sec-etc-support .header {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.sec-etc-support .sec-title {
  font-size: 1.625rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  text-align: center;
}
.sec-etc-support .link-more {
  display: inline-block;
  width: 6.125rem;
  height: 1.875rem;
  line-height: 1.875rem;
  border-radius: 1000px;
  background-color: var(--point-color-01);
  font-size: 0.813rem;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  text-align: center;
  transition: 0.3s;
}
.sec-etc-support .link-more:hover,
.sec-etc-support .link-more:focus {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .sec-etc-support {
    height: calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  .row-sub {
    height: 100%;
  }
  .sec-etc-support {
    height: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .sec-etc-support .sec-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1300px) {
  .sec-etc-support .sec-title {
    font-size: 1.625rem;
  }
}

/* 퀵메뉴 */
.quick-list {
  height: 11.25rem;
  margin-bottom: 20px;
  background-color: rgb(var(--point-color-02));
}
.quick-list::after {
  content: "";
  display: block;
  clear: both;
}
.quick-list > li {
  float: left;
  display: block;
  width: 50%;
  height: 50%;
  border-left: 1px solid rgba(255, 255, 255, 10%);
  border-bottom: 1px solid rgba(255, 255, 255, 10%);
}
.quick-list > li:first-child {
  border-left: none;
}
.quick-list > li:nth-last-child(-n + 2) {
  border-bottom: none;
}
.quick-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.063rem;
  color: hsl(0, 0%, 100%);
  transition: 0.3s;
}
.quick-list > li a:hover,
.quick-list > li a:focus {
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .sec-etc-quick {
    height: calc(50% - 10px);
  }
  .quick-list {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .quick-list {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .sec-etc-quick {
    height: calc(50% - 10px);
  }
  .quick-list {
    height: 100%;
  }
}

/* 배너 */
.sec-etc-banner {
  position: relative;
}
.banner-carousel .item {
  position: relative;
}
.banner-carousel .item-link {
  display: block;
}
.banner-carousel .item-link .item-img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.banner-carousel .owl-dots-wrapper {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 0;
}
.banner-carousel .play-pause-btn {
  color: hsl(0, 0%, 100%);
}
@media (min-width: 768px) {
  .banner-carousel .item-link .item-img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .sec-etc-banner,
  .carousel-box,
  .banner-carousel,
  .banner-carousel .owl-stage-outer,
  .banner-carousel .owl-stage,
  .banner-carousel .owl-item,
  .banner-carousel .item {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .banner-carousel .owl-dots-wrapper {
    left: auto;
    right: 10px;
    bottom: 10px;
    transform: none;
  }
}

/*****************************************************
	Sub
*****************************************************/
.sub-container {
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.sub-container #content {
  padding: 0;
  margin-bottom: 0;
}
.sub-top {
  display: none;
}

.cont-title {
  border-bottom: 1px dotted hsl(0, 0%, 80%);
}

.page-navi {
  position: relative;
  background-color: var(--point-color-01);
}
.page-navi .container {
  padding-left: 0;
  padding-right: 0;
}
.page-navi .navbar {
  border-color: rgba(255, 255, 255, 0.4);
}
.page-navi .navbar .navbar-nav > .nav-item .nav-link {
  color: hsl(0, 0%, 100%);
}
.page-navi .navbar .navbar-nav > .nav-item .nav-link:hover,
.page-navi .navbar .navbar-nav > .nav-item .nav-link:focus {
  color: hsl(0, 0%, 90%);
}
.page-navi .navbar .navbar-nav > .nav-item .nav-link:before {
  color: hsl(0, 0%, 100%);
}
.page-navi .navbar .navbar-nav > .nav-item,
.page-navi .navbar .navbar-nav > .nav-item:first-child {
  border-color: rgba(255, 255, 255, 0.4);
}
.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item.active {
  background-color: rgb(var(--point-color-03));
}
.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover,
.page-navi .navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
  color: rgb(var(--point-color-03));
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: rgb(var(--point-color-10));
}
@media (min-width: 576px) {
  .page-navi .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .sub-container {
    margin-bottom: 4.5rem;
    margin-top: 3rem;
  }
  .sub-container #content {
    padding: 0;
    margin-bottom: 1.875rem;
  }
  /* .sub-top {display:flex;align-items:center;justify-content:flex-end;background-color: hsl(0, 0%, 80%);background-position: top center;background-repeat: no-repeat;padding: 1.5rem 0;height:220px;} */
  .sub-top {
    display: block;
    background-color: hsl(0, 0%, 80%);
    background-position: top center;
    background-repeat: no-repeat;
    padding: 1.5rem 0;
    height: 220px;
    padding-top: 80px;
  }
  .sub-top .sub-top-txt {
    text-align: left;
  }
  .sub-top .sub-top-txt h2 {
    display: inline-block;
    margin: 0;
    font-size: 1.688rem;
  }

  .page-navi .navbar .navbar-nav > .nav-item,
  .page-navi .navbar .navbar-nav > .nav-item:first-child,
  .page-navi .navbar .navbar-nav > .nav-item:nth-child(2n + 1) {
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* snb
		.sub-container .snb {max-width: 280px;margin-bottom: 3.5rem;}
		.sub-container .snb-title {display: -ms-flexbox;display: -webkit-box;
  display: -ms-flexbox;
  display: flex;-ms-flex-align: center;align-items: center;-ms-flex-pack: center;justify-content: center;padding: 2.188rem 0;min-height: 11.25rem;text-align: center;background: #333e55;color: hsl(0, 0%, 100%);font-size: 1.4rem;}
		.sub-container .snb-title > span {font-weight: 100;}
		.sub-container .snb .snb-list {}
		.sub-container .snb .snb-list >li {background: none;border-bottom: 1px solid #d7d7d7;padding: 0;margin: 0;}
		.sub-container .snb .snb-list >li > a {position: relative;display: block;padding: 1.063rem 1.75rem 1.063rem 1.25rem;}
		.sub-container .snb .snb-list >li.active > a {background: hsl(0, 0%, 98%);color: rgb(var(--point-color-14));font-weight: 600;}
		.sub-container .snb .snb-list >li > a:after {content:'\e5cc';position:absolute;font-family: 'material-Icons';top: 0.9rem;right: 0.5rem;font-size: 1.3rem;color: #c2c2c3;font-weight: 600;}
		.sub-container .snb .snb-list >li.active > a:after {color: rgb(var(--point-color-14));}
		.sub-container .snb .snb-list >li > a:hover, .sub-container .snb .snb-list > li > ul >li > a:focus {color: rgb(var(--point-color-14));font-weight: 600;}
		.sub-container .snb .snb-list >li.active > a:hover, .sub-container .snb .snb-list > li > ul >li.active > a:focus {color: rgb(var(--point-color-14));text-decoration:underline;}
		.sub-container .snb .snb-list >li > ul {display:none;margin: 0;padding: 0.8rem  1.05rem;border-top: 1px solid #d7d7d7;}
		.sub-container .snb .snb-list >li.active > ul {display: block;}
		.sub-container .snb .snb-list >li > ul > li {margin: 0;padding-left: 0.9rem;background-position: 5px 11px;}
		.sub-container .snb .snb-list >li > ul > li > a {font-size: 0.9rem;color: hsl(0, 0%, 33%); transition: 0.4s;}
		.sub-container .snb .snb-list >li > ul > li.active > a {color: #539513;font-weight: 600;}
		.sub-container .snb .snb-list >li > ul > li > a:hover, .sub-container .snb .snb-list >li > ul > li > a:focus {color: #63ac1c;font-weight: 600;}
		.sub-container .snb .snb-list >li > ul > li.active > a:hover, .sub-container .snb .snb-list >li > ul > li.active > a:focus {}
		.sub-container .snb .snb-list >li > ul > li ul {display:none;}
		 */
}
/* tit */
.bu1 {
  padding-left: 18px;
  background: url(/site/resource/ansan/disasteredu/images/bu1.png) no-repeat 0 5px;
}

.cont-tit {
  position: relative;
}
.cont-tit span.num {
  font-size: 3.5rem;
  color: #daeff8;
  font-weight: 900;
  position: absolute;
  top: -0.5rem;
  left: 0;
  line-height: 0.7;
}
.cont-tit span.tit {
  padding: 0 0 0 4.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

/* list-style */
.list-style01 li {
  position: relative;
  padding-left: 12px;
}
.list-style01 li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--point-color-01);
  position: absolute;
  top: 10px;
  left: 0;
}
.list-style02 li {
  position: relative;
  padding-left: 12px;
}
.list-style02 li::before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background-color: #7a7a7a;
  position: absolute;
  top: 10px;
  left: 0;
}
ol.list-num > li {
  padding: 0.7rem 0 0.5rem 2.5rem;
  position: relative;
}
ol.list-num > li span.num {
  background: rgb(var(--point-color-03));
  width: 32px;
  padding: 5px 0;
  height: 32px;
  text-align: center;
  color: hsl(0, 0%, 100%);
  position: absolute;
  top: 0.5rem;
  left: 0;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .cont-tit span.num {
    font-size: 7rem;
    top: 0;
  }
  .cont-tit span.tit {
    padding: 3rem 0 0 3.5rem;
  }
}
