:root {
  --color-primary: #2F3239;
  --color-secondary: #99A4AB;
  --color-corporate: #019178;
  --header-height: 100px;
  --content-width: 1200px;
  --content-margin-v: 40px;
  --content-margin-h: 20px;
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: translate(-75%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes arrowBack {
  0% {
    opacity: 0;
    transform: translate(75%, 50%) rotate(180deb);
  }
  100% {
    opacity: 1;
    transform: translate(0, 50%) rotate(180deb);
  }
}
@keyframes wave {
  0% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes showUnderline {
  0% {
    opacity: 1;
    transform: translate(-50%, 100%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 100%) scale(1);
  }
}
@keyframes showUp {
  0% {
    opacity: 0;
    transform: translate(0, 1em);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes checkUp {
  0% {
    opacity: 0;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes sending {
  0% {
    width: 0%;
  }
  20% {
    width: 20%;
  }
  40% {
    width: 40%;
  }
  60% {
    width: 60%;
  }
  80% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}
header, header *, header ::after, header ::before {
  box-sizing: content-box;
}

.btn-primary {
  border-color: var(--color-corporate);
  background-color: var(--color-corporate);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  border-color: #006b59;
  background-color: #006b59;
}
.btn-primary:focus, .btn-primary:active {
  box-shadow: 0 0 0 0.25rem rgba(102, 197, 158, 0.5) !important;
}

@keyframes leftFadeIn {
  from {
    opacity: 0;
    margin-left: -150px;
  }
  to {
    opacity: 100%;
    margin-left: 0;
  }
}
@keyframes rightFadeIn {
  from {
    opacity: 0;
    margin-right: -150px;
  }
  to {
    opacity: 100%;
    margin-right: 0;
  }
}
@keyframes loadingWindow {
  from {
    opacity: 0;
    margin-top: -50px;
  }
  to {
    opacity: 100%;
    margin-right: 0;
  }
}
header {
  height: var(--header-height);
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
}
header::after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  width: 100%;
  height: 1px;
  top: 100%;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}
header > .inner {
  width: var(--content-width);
  padding: 0 var(--content-margin-h);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 25px;
}
header .btn-menu {
  width: 20px;
  height: 20px;
  background-color: transparent;
  position: relative;
  padding: 0;
  margin-top: 12px;
}
header .btn-menu > span, header .btn-menu::before, header .btn-menu::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  font-size: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
header .btn-menu:hover > span, header .btn-menu:hover::before, header .btn-menu:hover::after {
  background-color: var(--color-corporate);
}
header .btn-menu::before {
  transform: translate(-50%, calc(-50% - 7px));
}
header .btn-menu::after {
  transform: translate(-50%, calc(-50% + 7px));
}

#gnb {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4.5rem;
  margin-top: 10px;
  transition: all 0.2s ease-in-out;
}
#gnb a {
  color: var(--color-primary);
}
#gnb a:hover {
  color: var(--color-corporate);
}
#gnb > li > a {
  font-size: 1.333rem;
  font-weight: 500;
}
#gnb > li:hover > ul {
  display: flex;
}
#gnb ul {
  position: absolute;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  display: none;
}
#gnb ul > li > a {
  font-weight: 500;
}

#container {
  padding-top: var(--header-height);
}
#container #contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#container #contents > .inner {
  width: var(--content-width);
  padding: 0 var(--content-margin-h);
}
#container #contents > .inner:last-child {
  padding-top: 60px;
  padding-bottom: 60px;
}
#container #contents .breadcrumb {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
#container #contents .breadcrumb > li:first-child {
  width: 16px;
  height: 16px;
  background: url("../../images/common/ico-home.svg") 50% 50% no-repeat;
}
#container #contents .breadcrumb > li:first-child a {
  font-size: 0;
}
#container #contents .breadcrumb > li a {
  font-size: 1.067rem;
}
#container #contents .breadcrumb > li + li {
  display: flex;
  align-items: center;
}
#container #contents .breadcrumb > li + li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../../images/common/ico-arrow.svg") 50% 50% no-repeat;
  margin: 0 0.5rem;
}
#container #contents .breadcrumb + h2 {
  margin-top: 1.1rem;
  margin-bottom: 2.5rem;
}
#container #contents h2 {
  font-size: 3.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2.1rem;
  margin-bottom: 3.5rem;
  animation: showUp 0.75s ease-in-out;
}
#container #contents .visual {
  width: 1160px;
  height: 238px;
  border-radius: 0 6vw 0 6vw;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#container #contents .visual.ethics {
  background-image: url("../../images/contents/img-visual-ethics.jpg");
  display: none;
}
#container #contents .visual.ceo {
  background-image: url("../../images/contents/img-visual-ceo.jpg");
  display: none;
}
#container #contents .visual.open {
  background-image: url("../../images/contents/img-visual-open.jpg");
  display: none;
}
#container #contents .visual.board {
  background-image: url("../../images/contents/img-board.jpg");
}

p.sig {
  margin-top: 2rem;
  font-weight: 500;
}
p.sig strong {
  font-weight: 600;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #D9D9D9;
  padding-bottom: 30px;
}
footer > .inner {
  width: var(--content-width);
  padding: 0 var(--content-margin-h);
  display: flex;
  padding-top: 40px;
  position: relative;
}
footer > .inner > a {
  display: inline-flex;
  align-items: center;
}
footer > .inner > a > img {
  filter: saturate(0);
  opacity: 0.65;
}
footer .gnb {
  margin-left: 5rem;
}
footer .gnb > ul {
  display: flex;
  gap: 5rem;
}
footer .gnb > ul a {
  color: var(--color-primary);
}
footer .gnb > ul a:hover {
  color: var(--color-corporate);
}
footer .gnb > ul > li > a {
  font-size: 1.2rem;
  font-weight: 500;
}
footer .gnb > ul > li > ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .gnb > ul > li > ul > li > a {
  font-size: 0.9333rem;
}
footer .tp {
  margin-left: 80px;
  padding-right: 11rem;
}
footer .tp p {
  font-size: 1rem;
  color: var(--color-primary);
}
footer .tp a {
  font-size: 1.3333rem;
  font-weight: 600;
  color: var(--color-corporate);
}
footer .qr {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  position: absolute;
  top: 2rem;
  right: 10rem;
  display: flex;
  gap: 7px;
}
footer .dropdown {
  margin-left: auto;
}
footer .dropdown > .btn {
  border: 1px solid #CECECE;
  height: auto;
}
footer p.copyright {
  margin-left: 320px;
}

.mega-menu {
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  display: none;
}
.mega-menu > ul {
  display: flex;
  gap: 6rem;
}
.mega-menu > ul > li > a {
  font-size: 1.4rem;
  font-weight: 600;
}
.mega-menu > ul > li > ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mega-menu .btn-close {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0;
  width: 2rem;
  height: 2rem;
  background-size: 1.25rem auto;
}
.mega-menu.active {
  display: flex;
}

.input-search-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}
.input-search-box .form-select {
  width: 150px;
  height: 60px;
  border: 1px solid #a3bbbf;
  border-radius: 0;
}
.input-search-box .input-group {
  width: 350px;
  height: 60px;
  border: 1px solid #a3bbbf;
}
.input-search-box .input-group .form-control {
  width: calc(100% - 60px);
  height: 100%;
  border: 0;
}
.input-search-box .input-group .search-btn {
  width: 60px;
  height: 60px;
  mask: url("../../images/contents/ico-search.svg") no-repeat center/24px;
  background-color: var(--color-corporate);
}

.board-table-box {
  font-size: 1.2rem;
}
.board-table-box > div {
  overflow: auto;
}
.board-table-box table {
  border-top: 2px solid var(--color-corporate);
  border-bottom: 2px solid var(--color-corporate);
}
.board-table-box th,
.board-table-box td {
  padding: 20px 0;
}
.board-table-box thead tr {
  border-bottom: 1px solid #a3bfbe;
}
.board-table-box thead th {
  font-weight: 600;
  background-color: #f5fafa;
  text-align: center;
}
.board-table-box tbody tr {
  border-bottom: 1px solid #A3ACBF;
}
.board-table-box tbody tr:last-child {
  border-bottom: 0;
}
.board-table-box tbody tr a:hover {
  font-weight: 500;
}
.board-table-box tbody .title {
  width: 77%;
  padding-left: 40px;
  padding-right: 40px;
}
.board-table-box tbody .title > a {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.board-table-box tbody .center {
  text-align: center;
}

.passing-wrap {
  margin-top: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3bfbb;
  border: none;
}
.pagination > li:hover a {
  color: #1A6BB3;
  font-weight: 600;
  background-color: #F5F7FA;
}
.pagination .page-item:first-child .page-link {
  background: url("../../images/common/ico-arrow.svg") no-repeat center/10px;
  transform: rotate(180deg);
}
.pagination .page-item:last-child .page-link {
  background: url("../../images/common/ico-arrow.svg") no-repeat center/10px;
}
.pagination .page-link:hover {
  color: var(--color-corporate);
}
.pagination .page-item.active .page-link {
  background-color: var(--color-corporate);
}

.bd-dt-box h1 {
  font-size: 1.7333rem;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.info-ut {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.info-ut + .info-ut {
  margin-top: 0.5rem;
}
.info-ut li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.info-ut li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.info-ut li.wt::before {
  background-image: url("../../images/contents/ico-board-info-01.png");
}
.info-ut li.dy::before {
  background-image: url("../../images/contents/ico-board-info-02.png");
}
.info-ut li.nm::before {
  background-image: url("../../images/contents/ico-board-info-03.png");
}
.info-ut li.wp::before {
  background-image: url("../../images/contents/ico-board-info-04.png");
}

.btn-cnt-box {
  text-align: center;
  margin-top: 50px;
}

.bd-dt-cnt-box {
  border-top: 1px solid #596580;
  border-bottom: 1px solid #596580;
  padding: 30px;
}
.bd-dt-cnt-box .img-box {
  margin-bottom: 30px;
  overflow: hidden;
}
.bd-dt-cnt-box .img-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.bd-dt-cnt-box > p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.atc-file-box {
  margin-top: 20px;
}
.atc-file-box > a {
  font-size: 1.2rem;
  font-weight: 600;
}
.atc-file-box > a:hover {
  color: var(--color-corporate);
}
.atc-file-box > a:hover::before {
  background-color: var(--color-corporate);
}
.atc-file-box > a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  mask: url("../../images/contents/ico-download.svg") center/contain no-repeat;
  background-color: var(--color-primary);
  vertical-align: middle;
  margin-right: 5px;
}

.grid-list > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 3rem;
}
.grid-list .thumbnail {
  display: block;
  padding-top: 66.6667%;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.grid-list .thumbnail img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.15s ease-in-out;
}
.grid-list .thumbnail:hover img {
  transform: scale(1.1);
}
.grid-list .title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1rem;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grid-list .date {
  font-size: 0.9333rem;
  margin-top: 1rem;
}

.carousel.main {
  width: calc(100vw - 120px);
  border-radius: 0 15vw 0 15vw;
  overflow: hidden;
}
.carousel.main .carousel-item {
  padding-top: 36%;
}
.carousel.main .carousel-item img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.carousel.main .carousel-item h2 {
  font-size: 1.5vw !important;
  font-weight: 500 !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  color: #fff;
}
.carousel.main .carousel-item h2 + p {
  font-size: 4.5vw;
  font-weight: 600;
  color: #fff;
}

.ico-wrap {
  display: flex;
  align-items: center;
}
.ico-wrap.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}
.ico-wrap.main a {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ico-wrap.main a p {
  margin-top: 0.75rem;
}

.life-partner {
  padding: 100px 0;
}

.senior-life {
  width: 100%;
  padding: 50px 0;
  background-color: var(--color-corporate);
  display: flex;
  justify-content: center;
  text-align: center;
}
.senior-life .inner {
  width: var(--content-width);
}
.senior-life .inner .row {
  width: 100%;
}
.senior-life .inner .row img {
  width: 42px;
}
.senior-life .inner h2 {
  color: #fff;
}
.senior-life .inner p {
  font-size: 1.1667rem;
  font-weight: 500;
  margin-top: 1rem;
  color: #fff;
}

.design .img-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.design .img-wrap img:first-child {
  max-width: 25%;
}
.design .img-wrap img:last-child {
  max-width: 70%;
}
.design .box {
  padding-top: 130px;
}
.design .box p:first-child {
  font-size: 1.4rem;
  color: var(--color-corporate);
  font-weight: 500;
}

.news-box-wrap {
  display: flex;
  gap: 40px;
  margin-top: 100px;
}
.news-box-wrap .news-box {
  flex: 1 1 0;
  padding: 34px;
  border: 1px solid #B8B8B8;
  border-radius: 24px;
}
.news-box-wrap .news-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.news-box-wrap .news-box a p {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-box-wrap .news-box a span {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-box-wrap .news-box a span.date {
  margin-top: 1rem;
}
.news-box-wrap .news-box a .img-box {
  width: 140px;
  height: 140px;
  position: relative;
  float: left;
  margin-right: 20px;
}
.news-box-wrap .news-box a .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-box-wrap .news-box a:hover p {
  color: var(--color-corporate);
}

.txt-logo {
  width: 211px;
}

.img-round-box {
  border-radius: 0 0 0 10vw;
  overflow: hidden;
}
.img-round-box img {
  max-width: 100%;
  width: 100%;
}

.external-link {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-corporate);
}
.external-link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  mask: url("../../images/contents/ico-external-link.svg") 50% 50%/contain no-repeat;
  background-color: var(--color-corporate) !important;
}
.external-link:hover {
  color: var(--color-corporate);
}

.top-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.colored {
  color: var(--color-corporate);
}

.flex-box {
  display: flex;
  align-items: baseline;
  gap: 1em;
}

table.type-01 {
  border-top: 1px solid var(--color-corporate);
}
table.type-01 tr > * {
  border-bottom: 1px solid #C6CAD2;
  padding: 10px;
}
table.type-01 th {
  background-color: #F1FBF8;
  color: var(--color-corporate);
  font-weight: 600;
}

body.menu-active header::after {
  height: 180px;
  z-index: 1;
}
body.menu-active header #gnb {
  gap: 2.5rem;
}
body.menu-active header #gnb ul.sub-menu {
  position: relative;
  display: flex;
  z-index: 2;
  top: 34px;
  background-color: transparent;
  box-shadow: none;
  padding-left: 0;
}

.row.column {
  flex-direction: column;
  gap: 30px;
}/*# sourceMappingURL=style.css.map */