@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap";
@import "https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css";
@import "https://fonts.googleapis.com/css2?family=Song+Myung&display=swap";
.inner {
  padding: 0 80px;
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

header {
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s, height 0.3s;
}
header:hover {
  background: #fff;
}
header:hover::after {
  opacity: 1;
  visibility: visible;
}
header:hover .inner .nav .gnb > li > .dep-01 {
  color: #000;
}
header:hover .inner .nav .gnb > li:hover > .dep-01,
header:hover .inner .nav .gnb > li.on > .dep-01 {
  color: #492d0c;
}
header:hover .inner .nav .gnb > li > .lnb {
  opacity: 1;
  visibility: visible;
}
header:hover .inner .logo a {
  background-image: url("/static/img/common/logo_b.svg");
}
header:hover .inner .language .ico {
  filter: invert(1) brightness(0);
}
header:hover .inner .language .btn button span {
  color: #000;
}
header::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 320px;
  border-top: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
header .inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
header .inner .logo {
  height: 30px;
  width: 128px;
  flex-shrink: 0;
}
header .inner .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/static/img/common/logo_b.svg") no-repeat center center/contain;
}
header .inner .nav {
  display: flex;
  align-items: center;
}
header .inner .nav .sidebar-close {
  display: none;
}
header .inner .nav .sidebar-bottom {
  display: none;
}
header .inner .nav .sidebar-language {
  display: none;
}
header .inner .nav .gnb {
  display: grid;
  grid-template-columns: repeat(4, 229px);
  align-items: flex-start;
  height: 120px;
}
header .inner .nav .gnb > li {
  position: relative;
  width: 229px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
header .inner .nav .gnb > li > .dep-01 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  display: flex;
  height: 120px;
  align-items: center;
  transition: color 0.3s;
  padding: 0 35px;
}
header .inner .nav .gnb > li:first-child .lnb {
  border-left: 1px solid #eeeeee;
}
header .inner .nav .gnb > li > .lnb {
  position: absolute;
  top: 120px;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 320px;
  width: 229px;
  white-space: nowrap;
  z-index: 10;
  padding: 30px 24px;
  opacity: 0;
  gap: 6px;
  visibility: hidden;
  border-right: 1px solid #eeeeee;
  transition: opacity 0.3s, visibility 0.3s;
}
header .inner .nav .gnb > li > .lnb.sub-groups {
  gap: 24px;
}
header .inner .nav .gnb > li > .lnb .sub-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
header .inner .nav .gnb > li > .lnb .sub-group .sub-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #666;
}
header .inner .nav .gnb > li > .lnb .sub-group .sub-list {
  display: flex;
  flex-direction: column;
}
header .inner .nav .gnb > li > .lnb .dep-02 {
  font-size: 18px;
  color: #666;
  line-height: 28px;
  transition: color 0.3s;
}
header .inner .nav .gnb > li > .lnb .dep-02:hover {
  color: #492d0c;
}
header .inner .btn-list {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 3px;
}
header .inner .language {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
header .inner .language .btn {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 28px;
  opacity: 0.5;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
header .inner .language .btn.active {
  opacity: 1;
  border-bottom: 1px solid #000000;
}
header .inner .language .btn button span {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: white;
}
header .allmenu {
  display: none;
}
header.white {
  background: #fff;
  border-bottom: 1px solid #eee;
}
header.white:hover {
  background: #fff;
  border-bottom: 1px solid #eee;
}
header.white:hover .inner .logo a {
  background-image: url("/static/img/common/logo_b.svg");
}
header.white:hover .inner .nav .gnb > li > .dep-01 {
  color: #111;
}
header.white:hover .inner .nav .gnb > li:hover > .dep-01,
header.white:hover .inner .nav .gnb > li.on > .dep-01 {
  color: #002e92;
}
header.white:hover .inner .language .ico {
  filter: invert(1) brightness(0);
}
header.white:hover .inner .language .btn button span {
  color: #111;
}
header.white::after {
  background: #fff;
  border-top: 1px solid #eee;
}
header.white .inner .logo a {
  background-image: url("/static/img/common/logo_b.svg");
}
header.white .inner .nav .gnb > li > .dep-01 {
  color: #111;
}
header.white .inner .nav .gnb > li:hover > .dep-01,
header.white .inner .nav .gnb > li.on > .dep-01 {
  color: #002e92;
}
header.white .inner .language .ico {
  filter: invert(1) brightness(0);
}
header.white .inner .language .btn button span {
  color: #111;
}
header.white .inner .nav .gnb > li > .lnb .dep-02 {
  color: #555;
}
header.white .inner .nav .gnb > li > .lnb .dep-02:hover {
  color: #002e92;
}

.main .hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
}
.main .hero .hero-swiper {
  width: 100%;
  height: 100%;
}
.main .hero .hero-swiper .swiper-slide {
  background: no-repeat center center/cover;
  height: 100%;
}
.main .hero .hero-swiper .swiper-slide .inner {
  flex-direction: column;
  justify-content: end;
  padding-bottom: 260px;
  height: 100%;
}
.main .hero .hero-swiper .swiper-slide .inner .text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main .hero .hero-swiper .swiper-slide .inner .text h1 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 80px;
  line-height: 88px;
}
.main .hero .hero-swiper .swiper-slide .inner .text p {
  font-family: "Montserrat";
  font-size: 22px;
  line-height: 32px;
}
.main .hero .page-inner {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.main .hero .page-inner .page-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.main .hero .page-inner .page-wrap p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}
.main .hero .page-inner .page-wrap p span {
  opacity: 0.5;
}
.main .hero .page-inner .page-wrap p b {
  font-weight: 600;
  color: #000;
}
.main .hero .page-inner .page-wrap .progress-wrap {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
}
.main .hero .page-inner .page-wrap .progress-wrap .progress {
  width: 0;
  height: 2px;
  background: #000;
}
.main .brand {
  background: #fafaf7;
}
.main .brand .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  gap: 56px;
  flex-direction: row;
}
.main .brand .inner .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main .brand .inner .left .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.main .brand .inner .left .title-wrap .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
}
.main .brand .inner .left .title-wrap .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main .brand .inner .left .title-wrap .text .en-text {
  font-family: "Montserrat";
  font-size: 24px;
  line-height: 36px;
  color: #333;
}
.main .brand .inner .left .title-wrap .text .ko-text {
  font-size: 20px;
  line-height: 30px;
  color: #666;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item.active {
  display: flex;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .logo {
  height: 40px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .logo.walkfill {
  width: 220px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .logo.eloermafill {
  width: 302px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .logo.drsys {
  width: 192px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .text .title {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .text .desc {
  font-size: 18px;
  line-height: 28px;
  color: #666;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .view-more {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .view-more p {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #492d0c;
}
.main .brand .inner .left .cosmetic-list .cosmetic-item .view-more .icon {
  width: 8px;
  height: 8px;
}
.main .brand .inner .line {
  width: 1px;
  height: auto;
  background: #666666;
  opacity: 0.2;
}
.main .brand .inner .cosmetic-img-list {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 635px;
}
.main .brand .inner .cosmetic-img-list .img-item {
  width: 635px;
  height: 120px;
  opacity: 0.4;
  border-radius: 12px;
}
.main .brand .inner .cosmetic-img-list .img-item.active {
  opacity: 1;
  height: 360px;
}
.main .brand .inner .cosmetic-img-list .img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.main .innovation {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f3f2eb 100%);
}
.main .innovation .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 60px;
}
.main .innovation .inner .section-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.main .innovation .inner .section-text-wrap .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.main .innovation .inner .section-text-wrap .title-wrap h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
}
.main .innovation .inner .section-text-wrap .title-wrap p {
  font-family: "Montserrat";
  font-size: 24px;
  line-height: 36px;
  color: #333;
}
.main .innovation .inner .section-text-wrap .desc {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #666;
}
.main .innovation .inner .section-text-wrap .circle-wrap {
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: 0;
}
.main .innovation .inner .section-text-wrap .circle-wrap > img {
  position: absolute;
  top: 0;
  right: 0;
  animation: circle 5s linear infinite;
  -webkit-animation: circle 5s linear infinite;
}
.main .innovation .inner .section-text-wrap .circle-wrap .view-more {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.main .innovation .inner .section-text-wrap .circle-wrap .view-more p {
  min-width: 10rem;
  color: #492D0C;
  font-family: "montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.42857;
  /* 142.857% */
}
@keyframes circle {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.main .innovation .inner .event-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.main .innovation .inner .event-wrap .line-title {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main .innovation .inner .event-wrap .line-title p {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #666;
}
.main .innovation .inner .event-wrap .line-title::before, .main .innovation .inner .event-wrap .line-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #666;
  opacity: 0.2;
}
.main .innovation .inner .event-wrap .event-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main .innovation .inner .event-wrap .event-container .event-list {
  width: 100%;
  overflow: hidden;
}
.main .innovation .inner .event-wrap .event-container .event-list .swiper-wrapper {
  align-items: stretch;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item {
  position: relative;
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  justify-content: end;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item:hover::before {
  background: linear-gradient(180deg, rgba(73, 45, 12, 0.1) 0%, #492d0c 100%);
  border: 2px solid #492d0c;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item:hover p {
  opacity: 1;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #eeeeee;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000000 100%);
  pointer-events: none;
  border-radius: 12px;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item p {
  position: relative;
  color: white;
  opacity: 0.5;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item .desc {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}
.main .innovation .inner .event-wrap .event-container .event-list .event-item .date {
  font-size: 16px;
  line-height: 28px;
}
.main .innovation .inner .event-wrap .event-container .progress-wrap {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
}
.main .innovation .inner .event-wrap .event-container .progress-wrap .progress {
  width: 33.3333%;
  height: 2px;
  background: #000;
  transition: width 0.4s ease;
}

.sub .page-hero {
  background: no-repeat center/cover;
  height: 400px;
}
.sub .page-hero .inner {
  height: 100%;
  flex-direction: column;
  padding-bottom: 40px;
  justify-content: end;
  gap: 80px;
}
.sub .page-hero .inner h1 {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 64px;
  line-height: 80px;
}
.sub .page-hero .inner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sub .page-hero .inner .breadcrumb .home-icon {
  width: 22px;
  height: 20px;
}
.sub .page-hero .inner .breadcrumb .line {
  width: 1px;
  height: 14px;
  background: #333;
}
.sub .page-hero .inner .breadcrumb p {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.sub .breadcrumb {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sub .breadcrumb .home-icon {
  width: 22px;
  height: 20px;
}
.sub .breadcrumb .line {
  width: 1px;
  height: 14px;
  background: #333;
}
.sub .breadcrumb .arrow {
  width: 12px;
  height: 12px;
}
.sub .breadcrumb p {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.sub .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.sub .pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #666;
  cursor: pointer;
  opacity: 0.5;
  padding: 0 4px 4px;
  border-bottom: 2px solid transparent;
}
.sub .pagination .page.active {
  opacity: 1;
  color: #492d0c;
  border-bottom: 2px solid #492d0c;
}
.sub .section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex-shrink: 0;
}
.sub .section-title {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #492d0c;
  min-width: 24rem;
}
.sub .section-title span {
  font-size: 18px;
  position: relative;
  top: -10px;
}
.sub .scheme {
  width: 100%;
  aspect-ratio: 872/460;
}
.sub .value-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub .value-body {
  padding-top: 84px;
  display: flex;
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
.sub .value-body::before {
  width: 100%;
  height: 384px;
  content: "";
  border: 1px dashed rgba(102, 102, 102, 0.5019607843);
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 500px;
}
.sub .value-body .value-item {
  display: flex;
  flex-direction: column;
  margin-left: -24px;
  gap: 72px;
  align-items: center;
  position: relative;
}
.sub .value-body .value-item:first-child {
  margin: 0;
}
.sub .value-body .value-item .value-head {
  width: 336px;
  height: 336px;
  border-radius: 400px;
  background: rgba(243, 242, 235, 0.5019607843);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.sub .value-body .value-item .value-head .num {
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background: #492d0c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: white;
}
.sub .value-body .value-item .value-head .name {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sub .value-body .value-item .value-head .name .ko-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #492d0c;
}
.sub .value-body .value-item .value-head .name .en-name {
  color: #666;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.sub .value-body .value-item .line {
  height: 72px;
  width: 1px;
  border-left: 1px dashed #666666;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 324px;
}
.sub .value-body .value-item .desc {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #333;
}
.sub .value-body .value-item .desc b {
  font-weight: 600;
}

.about .skin-section .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
}
.about .skin-section .inner .intro {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.about .skin-section .inner .intro .logo {
  width: 254px;
  height: 60px;
}
.about .skin-section .inner .intro .intro-text {
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #333;
}
.about .skin-section .inner .intro .intro-text b {
  color: #492d0c;
  font-weight: 600;
}
.about .skin-section .row-grop .row.top .text p {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}
.about .text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about .text h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #492d0c;
}
.about .text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #333;
}
.about .row-group {
  display: flex;
  flex-direction: column;
}
.about .row-group .row {
  display: flex;
  gap: 103px;
  justify-content: space-between;
}
.about .row-group .row.top img {
  width: 890px;
  height: 500px;
}
.about .row-group .row.bottom {
  align-items: center;
  margin-top: -80px;
}
.about .row-group .row.bottom img {
  width: 508px;
  height: 500px;
}
.about .row-group .row.bottom .text {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-grow: 1;
}
.about .standard-section .inner {
  gap: 103px;
  padding-left: 0;
  max-width: 1700px;
  margin: unset;
}
.about .standard-section .inner img {
  width: 1100px;
  height: 500px;
}
.about .osmocell-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 120px;
}
.about .osmocell-section .top {
  background: url("/static/img/sub/01-7.png") no-repeat center/cover;
  position: relative;
  height: 500px;
}
.about .osmocell-section .top .inner {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 48px;
  color: white;
}
.about .osmocell-section .top .inner h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
}
.about .osmocell-section .top .inner p {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.about .osmocell-section .bottom .inner {
  justify-content: center;
  align-items: center;
  gap: 103px;
}
.about .osmocell-section .bottom img {
  width: 508px;
  height: 500px;
}
.about .osmocell-section .bottom p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #333;
}

.vision .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 60px;
}
.vision .inner .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.vision .inner .title-wrap .title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.vision .inner .title-wrap .title h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #492d0c;
}
.vision .inner .title-wrap .title p {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
}
.vision .inner .title-wrap .desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.vision .inner .body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vision .inner .body .diagram {
  width: 238px;
  height: 238px;
  background: #492d0c;
  border-radius: 1000px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.vision .inner .body .diagram:after {
  content: "";
  position: absolute;
  width: 278px;
  height: 278px;
  border-radius: 1000px;
  border: 20px solid rgba(73, 45, 12, 0.1019607843);
  top: -20px;
  left: -20px;
  z-index: 1;
}
.vision .inner .body .diagram .logo {
  width: 170px;
  height: 40px;
}
.vision .inner .body .diagram p {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: white;
  font-family: "Montserrat";
}
.vision .inner .body .poligon {
  width: 1040px;
  height: 142px;
  background: linear-gradient(180deg, #f3f2eb 0%, rgba(243, 242, 235, 0) 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  margin-top: -38px;
}
.vision .inner .body .stategy-list {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.vision .inner .body .stategy-list .stategy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 48px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  gap: 24px;
  width: 484px;
  position: relative;
}
.vision .inner .body .stategy-list .stategy-item::after {
  content: "";
  background: url("/static/img/sub/01-10.svg") no-repeat center/cover;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
}
.vision .inner .body .stategy-list .stategy-item:last-child::after {
  content: unset;
}
.vision .inner .body .stategy-list .stategy-item .label {
  position: absolute;
  padding: 10px 24px;
  border-radius: 100px;
  background: #492d0c;
  color: white;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}
.vision .inner .body .stategy-list .stategy-item .icon {
  width: 140px;
  height: 140px;
}
.vision .inner .body .stategy-list .stategy-item .title {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}
.vision .inner .body .stategy-list .stategy-item .title b {
  font-weight: 600;
}
.vision .inner .body .stategy-list .stategy-item .desc {
  color: #333;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.vision .inner .body .stategy-list .stategy-item .note-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 388px;
}
.vision .inner .body .stategy-list .stategy-item .note-list .note {
  font-size: 18px;
  line-height: 28px;
  color: #666;
  word-break: keep-all;
}
.vision .inner .body .stategy-list .stategy-item .note-list .note b {
  font-weight: 600;
}

.history {
  background: linear-gradient(180deg, rgba(250, 250, 247, 0) 0%, #fafaf7 100%);
}
.history .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  gap: 127px;
}
.history .inner .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.history .inner .title-wrap h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #492d0c;
}
.history .inner .title-wrap p {
  font-family: "Montserrat";
  font-size: 24px;
  line-height: 36px;
  color: #666;
}
.history .inner .history-list {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 24px;
}
.history .inner .history-list::before {
  width: 1px;
  content: "";
  position: absolute;
  border-left: 1px dashed #492d0c;
  top: 0;
  height: 100%;
  left: 224px;
}
.history .inner .history-list .history-item {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.history .inner .history-list .history-item .year-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
.history .inner .history-list .history-item .year-wrap p {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  width: 61px;
}
.history .inner .history-list .history-item .year-wrap .line {
  width: 145px;
  height: 8px;
}
.history .inner .history-list .history-item p {
  font-size: 18px;
  line-height: 28px;
  color: #333;
}

.location {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.location iframe {
  width: 100%;
  height: 600px;
}
.location .inner {
  gap: 24px;
}
.location .inner .location-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  flex: 1;
  padding: 40px;
}
.location .inner .location-item .title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.location .inner .location-item .title-wrap .icon {
  height: 18px;
}
.location .inner .location-item .title-wrap .icon.address {
  width: 14px;
}
.location .inner .location-item .title-wrap .icon.tel {
  width: 16px;
}
.location .inner .location-item .title-wrap .icon.mail {
  width: 18px;
  height: 14px;
}
.location .inner .location-item .title-wrap p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #492d0c;
}
.location .inner .location-item .content {
  font-size: 18px;
  line-height: 28px;
  color: #666;
}

.brand .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
}
.brand .inner .section {
  padding-bottom: 80px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 24px;
}
.brand .inner .section .btn-visit {
  border: 1px solid rgba(0, 0, 0, 0.5019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  gap: 12px;
  cursor: pointer;
}
.brand .inner .section .btn-visit p {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
}
.brand .inner .section .btn-visit .icon {
  width: 10px;
  height: 10px;
}
.brand .inner .section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.brand .inner .brand-section .brand-body {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
  align-items: center;
  flex-grow: 1;
}
.brand .inner .brand-section .brand-body .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.brand .inner .brand-section .brand-body .title-wrap .logo {
  height: 60px;
}
.brand .inner .brand-section .brand-body .title-wrap .eldermafill {
  width: 453px;
}
.brand .inner .brand-section .brand-body .title-wrap .walkfill {
  width: 330px;
}
.brand .inner .brand-section .brand-body .title-wrap .dr-sys {
  width: 192px;
  height: 80px;
}
.brand .inner .brand-section .brand-body .title-wrap .label {
  font-size: 18px;
  line-height: 28px;
  color: #666;
}
.brand .inner .brand-section .brand-body .content-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 992px;
}
.brand .inner .brand-section .brand-body .content-wrap .content-item {
  border-radius: 12px;
  width: 100%;
  padding: 40px;
  background: #fafaf7;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #333;
}
.brand .inner .brand-section .brand-body .content-wrap .content-item b {
  font-weight: 500;
}
.brand .inner .brand-section .brand-body .content-wrap .content-item:has(.scheme) {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.brand .inner .product-section {
  flex-direction: column;
  gap: 48px;
}
.brand .inner .product-section .product-body {
  display: flex;
  gap: 81px;
}
.brand .inner .product-section .product-body .tab-wrap {
  display: flex;
  flex-direction: column;
  width: 300px;
  flex-shrink: 0;
}
.brand .inner .product-section .product-body .tab-wrap .tab {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #eeeeee;
  font-family: "Montserrat";
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #333;
}
.brand .inner .product-section .product-body .tab-wrap .tab.active {
  background: #492d0c;
  font-weight: 600;
  color: white;
}
.brand .inner .product-section .product-body .product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 48px;
}
.brand .inner .product-section .product-body .product-list .product-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand .inner .product-section .product-body .product-list .product-item .product-img {
  width: 261px;
  height: 348px;
  border: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.brand .inner .product-section .product-body .product-list .product-item .product-img .thumbnail {
  width: 100%;
  height: 100%;
}
.brand .inner .product-section .product-body .product-list .product-item .product-name {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #333;
}
.brand .inner .product-section .product-body .product-list .product-item > a {
  display: block;
  text-align: center;
  color: #492D0C;
  font-family: "montserrat", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.42857;
  /* 142.857% */
  opacity: 0.5;
}
.brand .inner .product-section .product-body .product-list .product-item > a:hover {
  opacity: 1;
}

.business-process .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
}
.business-process .inner .process-img {
  width: 100%;
  margin-top: 60px;
}
.business-process .inner .process-img.pc {
  display: block;
}
.business-process .inner .process-img.mo {
  display: none;
}
.business-process .inner .process-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
  padding-top: 60px;
}
.business-process .inner .process-list > img.arrow:nth-of-type(4),
.business-process .inner .process-list > img.arrow:nth-of-type(8) {
  display: none;
}
.business-process .inner .process-list .process-item {
  flex: 0 0 calc((100% - 120px) / 4);
  display: flex;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.business-process .inner .process-list .process-item .icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.business-process .inner .process-list .process-item .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.business-process .inner .process-list .process-item .text p {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.business-process .inner .process-list .process-item .text h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.business-process .inner .process-list .arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.business-process .inner .process-list .revision-wrap {
  position: absolute;
  top: 0;
  right: 172px;
}
.business-process .inner .process-list .revision-wrap .revision {
  position: relative;
  width: 385px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-process .inner .process-list .revision-wrap .revision .text {
  padding: 12px 20px;
  border: 1px dashed rgba(102, 102, 102, 0.5019607843);
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #333;
  background: white;
  position: relative;
  z-index: 1;
}
.business-process .inner .process-list .revision-wrap .revision .line {
  width: 385px;
  height: 36px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.inquiry .top {
  background: #fafaf7;
}
.inquiry .top .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  justify-content: space-between;
}
.inquiry .top .inner h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}
.inquiry .top .inner .info-list {
  padding-left: 24px;
  border-left: 1px solid rgba(102, 102, 102, 0.5019607843);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inquiry .top .inner .info-list .info-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.inquiry .top .inner .info-list .info-row .title {
  width: 80px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}
.inquiry .top .inner .info-list .info-row .content {
  font-size: 18px;
  line-height: 28px;
  color: #666;
}
.inquiry .inquiry-body .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 120px;
}
.inquiry .inquiry-body .inner h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}
.inquiry .inquiry-body .inner .checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.inquiry .inquiry-body .inner .checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.inquiry .inquiry-body .inner .checkbox input:checked + .checkmark {
  background: #492d0c;
  border-color: #492d0c;
}
.inquiry .inquiry-body .inner .checkbox input:checked + .checkmark::after {
  opacity: 1;
}
.inquiry .inquiry-body .inner .checkbox input:checked ~ .text {
  color: #000;
}
.inquiry .inquiry-body .inner .checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #666666;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.inquiry .inquiry-body .inner .checkbox .checkmark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.inquiry .inquiry-body .inner .checkbox .text {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  transition: color 0.2s;
}
.inquiry .inquiry-body .inner .policy-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.inquiry .inquiry-body .inner .policy-section .policy-text {
  width: 100%;
  height: 188px;
  overflow-y: scroll;
  border: 1px solid #eeeeee;
  padding: 24px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.inquiry .inquiry-body .inner .form-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.inquiry .inquiry-body .inner .form-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list {
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row {
  display: flex;
  gap: 24px;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .title {
  width: 230px;
  font-weight: 500;
  font-size: 18px;
  line-height: 60px;
  flex-shrink: 0;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .checkbox-list {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  flex-grow: 1;
  border-bottom: 1px solid #eee;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .checkbox-list::after {
  content: "";
  flex: 1 0 0;
  box-shadow: 0 -1px 0 #eeeeee;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .checkbox-list .checkbox-line {
  display: contents;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .checkbox-list .checkbox {
  flex: 1 0 auto;
  padding: 16px 24px 16px 0;
  box-shadow: 0 -1px 0 #eeeeee;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .input-wrap {
  border-bottom: 1px solid #eeeeee;
  padding: 0 16px;
  flex-grow: 1;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row input[type=text],
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row input[type=number] {
  border: none;
  font-size: 16px;
  line-height: 28px;
  width: 100%;
  height: 60px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row input[type=text]::-moz-placeholder, .inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row input[type=number]::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row input[type=text]::placeholder,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row input[type=number]::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input {
  display: flex;
  align-items: center;
  gap: 6px;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input input,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input input {
  width: 230px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 16px;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .dash,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .dash {
  width: 12px;
  height: 1px;
  background: black;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .at-icon,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .at-icon {
  width: 12px;
  height: 12px;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-domain,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-domain {
  padding: 0 16px;
  height: 60px;
  border-bottom: 1px solid #eeeeee;
  width: 230px;
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
  display: flex;
  align-items: center;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown {
  width: 248px;
  height: 60px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown p,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown p {
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown .arrow,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown .arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown.open .arrow,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown.open .arrow {
  transform: rotate(180deg);
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown.open .dropdown-list,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown.open .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown .dropdown-list,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown .dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown .dropdown-list li,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown .dropdown-list li {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 24px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .phone-input .email-dropdown .dropdown-list li:hover,
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row .email-input .email-dropdown .dropdown-list li:hover {
  background: #f6f4ef;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row textarea {
  resize: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 16px;
  width: 100%;
  height: 200px;
  font-size: 16px;
  line-height: 28px;
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.inquiry .inquiry-body .inner .form-section .form-group .form-list .form-row textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.inquiry .inquiry-body .inner .form-section .form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.inquiry .inquiry-body .inner .form-section .form-actions .btn {
  height: 52px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  min-width: 116px;
  cursor: pointer;
}
.inquiry .inquiry-body .inner .form-section .form-actions .btn.submit {
  background: black;
  color: white;
}
.inquiry .inquiry-body .inner .form-section .form-actions .btn.cancel {
  border: 1px solid rgba(0, 0, 0, 0.5019607843);
}

.product-line .inner {
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 120px;
  gap: 60px;
}
.product-line .inner .tab-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #eeeeee;
  border: 1px solid #eeeeee;
}
.product-line .inner .tab-wrap .tab {
  height: 64px;
  cursor: pointer;
  background: #fff;
  font-family: "Montserrat";
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-align: center;
}
.product-line .inner .tab-wrap .tab.active {
  background: #492d0c;
  color: white;
}
.product-line .inner .content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.product-line .inner .content .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: no-repeat center/cover;
  height: 400px;
  border-radius: 12px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: white;
}
.product-line .inner .content table {
  width: 100%;
  border-top: 1px solid #666666;
}
.product-line .inner .content table .number {
  width: 150px;
  text-align: center;
}
.product-line .inner .content table .name {
  text-align: left;
}
.product-line .inner .content table .category {
  text-align: center;
  width: 300px;
}
.product-line .inner .content table th {
  padding: 24px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  border-bottom: 1px solid #eeeeee;
}
.product-line .inner .content table td {
  border-bottom: 1px solid #eeeeee;
  padding: 16px 20px;
  font-size: 18px;
  line-height: 28px;
}

.pipeline .inner {
  padding-top: 120px;
  padding-bottom: 180px;
  flex-direction: column;
  gap: 80px;
}
.pipeline .inner .section {
  display: flex;
  gap: 24px;
}
.pipeline .inner .overview {
  padding-bottom: 80px;
  border-bottom: 1px solid #eeeeee;
}
.pipeline .inner .overview .overview-body {
  gap: 24px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}
.pipeline .inner .overview .overview-body .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  word-break: keep-all;
}
.pipeline .inner .overview .overview-body .overview-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border: 1px solid #eeeeee;
  padding: 40px;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .content {
  display: flex;
  gap: 24px;
  align-items: center;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .content .icon {
  width: 140px;
  height: 140px;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .content .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .content .text h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .content .text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #333;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .label-list {
  display: flex;
  gap: 12px;
}
.pipeline .inner .overview .overview-body .overview-list .overview-item .label-list .label {
  background: #492d0c;
  padding: 10px 20px;
  border-radius: 200px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.pipeline .inner .key-strategy .strategy-list {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.pipeline .inner .key-strategy .strategy-list .strategy-item {
  padding-bottom: 80px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.pipeline .inner .key-strategy .strategy-list .strategy-item:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}
.pipeline .inner .key-strategy .strategy-list .strategy-item .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.pipeline .inner .key-strategy .strategy-list .strategy-item .text h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
.pipeline .inner .key-strategy .strategy-list .strategy-item .text p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #333;
}
.pipeline .inner .key-strategy .strategy-list .strategy-item img {
  width: 100%;
}

.portfolio {
  display: flex;
  flex-direction: column;
}
.portfolio .inner .section {
  padding-bottom: 0;
  border-bottom: 0;
}
.portfolio .inner .overview .overview-body {
  flex-grow: 1;
  align-items: center;
}
.portfolio .core-competence {
  background: #fafaf7;
}
.portfolio .core-competence .inner {
  flex-direction: column;
}
.portfolio .core-competence .inner .core-competence-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.portfolio .core-competence .inner .core-competence-body h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.portfolio .core-competence .inner .core-competence-body .img {
  width: 100%;
}

.patents .inner {
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 120px;
  gap: 120px;
}
.patents .inner .section-title {
  width: 230px;
  flex-shrink: 0;
}
.patents .inner .section {
  display: flex;
  gap: 24px;
}
.patents .inner .patent .patent-body {
  flex-grow: 1;
  padding-top: 60px;
}
.patents .inner .patent .patent-body table {
  border-top: 1px solid #666666;
}
.patents .inner .patent .patent-body table .number {
  width: 124px;
}
.patents .inner .patent .patent-body table .category {
  width: 124px;
}
.patents .inner .patent .patent-body table .register-number {
  width: 186px;
}
.patents .inner .patent .patent-body table .etc {
  width: 124px;
}
.patents .inner .patent .patent-body table th {
  padding: 24px 0;
  border-bottom: 1px solid #eeeeee;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.patents .inner .patent .patent-body table td {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #666;
}
.patents .inner .patent .patent-body table td.name {
  color: #000;
}
.patents .inner .certification .certification-list {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 48px;
}
.patents .inner .certification .certification-list .certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.patents .inner .certification .certification-list .certification-item img {
  width: 100%;
  aspect-ratio: 293/390;
  border-radius: 12px;
  border: 1px solid #eeeeee;
}
.patents .inner .certification .certification-list .certification-item p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #333;
}

.exhibitions .inner {
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 120px;
  gap: 60px;
}
.exhibitions .inner .list-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: end;
}
.exhibitions .inner .list-section .search-bar {
  display: flex;
  align-items: center;
  justify-content: end;
  border-bottom: 1px solid #eee;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 16px;
}
.exhibitions .inner .list-section .search-bar .filter {
  display: flex;
  align-items: center;
  width: 120px;
  padding-right: 12px;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.exhibitions .inner .list-section .search-bar .filter p {
  font-size: 14px;
  line-height: 20px;
}
.exhibitions .inner .list-section .search-bar .filter .icon {
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
}
.exhibitions .inner .list-section .search-bar .filter.open .icon {
  transform: rotate(180deg);
}
.exhibitions .inner .list-section .search-bar .filter.open .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.exhibitions .inner .list-section .search-bar .filter .dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.exhibitions .inner .list-section .search-bar .filter .dropdown-list li {
  padding: 10px 16px;
  font-size: 14px;
  line-height: 22px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.exhibitions .inner .list-section .search-bar .filter .dropdown-list li:hover {
  background: #f6f4ef;
}
.exhibitions .inner .list-section .search-bar .line {
  width: 1px;
  height: 20px;
  background: #eeeeee;
}
.exhibitions .inner .list-section .search-bar .search {
  width: 260px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  justify-content: space-between;
}
.exhibitions .inner .list-section .search-bar .search input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 20px;
}
.exhibitions .inner .list-section .search-bar .search input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.exhibitions .inner .list-section .search-bar .search input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.exhibitions .inner .list-section .search-bar .search .search-icon {
  width: 16px;
  height: 16px;
}
.exhibitions .inner .list-section table {
  width: 100%;
  border-top: 1px solid #666666;
}
.exhibitions .inner .list-section table .number {
  width: 90px;
}
.exhibitions .inner .list-section table .date {
  width: 180px;
}
.exhibitions .inner .list-section table th {
  padding: 24px 0;
  border-bottom: 1px solid #eeeeee;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.exhibitions .inner .list-section table td {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #666;
}
.exhibitions .inner .list-section table tr:has(td):hover {
  background: #fafaf7;
}
.exhibitions .inner .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.exhibitions .inner .pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #666;
  cursor: pointer;
  opacity: 0.5;
  padding: 0 4px 4px;
}
.exhibitions .inner .pagination .page.active {
  opacity: 1;
  color: #492d0c;
  border-bottom: 2px solid #492d0c;
}

.exhibition-detail .inner {
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 120px;
  gap: 80px;
  align-items: center;
}
.exhibition-detail .inner .detail-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.exhibition-detail .inner .detail-body .head {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  gap: 12px;
  border-top: 2px solid #000000;
}
.exhibition-detail .inner .detail-body .head h1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.exhibition-detail .inner .detail-body .head p {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #666;
}
.exhibition-detail .inner .detail-body .content {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: 28px;
}
.exhibition-detail .inner .detail-body .attachment {
  border-bottom: 1px solid #eeeeee;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.exhibition-detail .inner .detail-body .attachment .label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.exhibition-detail .inner .detail-body .attachment .line {
  width: 1px;
  height: 14px;
  background: #eee;
}
.exhibition-detail .inner .detail-body .attachment .filename {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  cursor: pointer;
}
.exhibition-detail .inner .btn-list {
  width: 90px;
  height: 52px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: white;
}

.footer {
  background: #222222;
  color: white;
}
.footer .inner {
  padding-top: 60px;
  padding-bottom: 60px;
  justify-content: space-between;
}
.footer .inner .left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer .inner .left .logo {
  width: 186px;
  height: 44px;
}
.footer .inner .left .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .inner .left .info-wrap .info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .inner .left .info-wrap .info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .inner .left .info-wrap .info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer .inner .left .info-wrap .info::after {
  width: 1px;
  height: 14px;
  content: "";
  background: #eeeeee;
  opacity: 0.5;
}
.footer .inner .left .info-wrap .info:last-child::after {
  display: none;
}
.footer .inner .left .info-wrap .info {
  font-size: 14px;
  line-height: 20px;
  color: #eee;
}
.footer .inner .left .info-wrap .info .title {
  font-weight: 600;
}
.footer .inner .left .info-wrap .bottom.info {
  gap: 12px;
}
.footer .inner .left .info-wrap .bottom.info .title {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer .inner .left .info-wrap .bottom.info .title::after {
  width: 1px;
  height: 14px;
  content: "";
  background: #eeeeee;
  opacity: 0.5;
}
.footer .inner .right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .inner .right .nav {
  display: flex;
  gap: 60px;
}
.footer .inner .right .nav .nav-group {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.footer .inner .right .nav .nav-group .nav-title {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
}
.footer .inner .right .nav .nav-group .link-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .inner .right .nav .nav-group .link-list a {
  color: #eeeeee;
  font-size: 14px;
  line-height: 14px;
}
.footer .inner .right .nav .nav-group .sub-groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .inner .right .nav .nav-group .sub-groups .sub-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .inner .right .nav .nav-group .sub-groups .sub-group .sub-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #eeeeee;
}
.footer .inner .right .sns-list {
  display: flex;
  gap: 24px;
  justify-content: end;
}
.footer .inner .right .sns-list .sns {
  width: 24px;
  height: 24px;
}
.footer .inner .right .sns-list .sns img {
  width: 100%;
  height: 100%;
}

.search .inner {
  flex-direction: column;
  padding-top: 240px;
  padding-bottom: 120px;
  gap: 80px;
  align-items: center;
}
.search .inner h1 {
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  color: #492d0c;
}
.search .inner .search-bar {
  width: 100%;
  max-width: 738px;
  padding-bottom: 12px;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search .inner .search-bar input {
  flex-grow: 1;
  font-size: 20px;
  line-height: 30px;
}
.search .inner .search-bar input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.search .inner .search-bar input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.search .inner .search-bar .search-icon {
  width: 20px;
  height: 20px;
}
.search .inner .result {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}
.search .inner .result .total p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
}
.search .inner .result .total p b {
  font-weight: 600;
  color: #492d0c;
}
.search .inner .result .content {
  border-top: 1px solid #666666;
}
.search .inner .result .content .no-result-text {
  padding: 60px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #666;
  border-bottom: 1px solid #eeeeee;
}
.search .inner .result .content .breadcrumb {
  border-bottom: 1px solid #eeeeee;
  padding: 24px;
}
.search .inner .result .content .breadcrumb p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
}
.search .inner .result .content .breadcrumb .point {
  font-weight: 600;
  color: #492d0c;
}
.search .inner .result .content .breadcrumb .arrow {
  width: 6px;
  height: 10px;
}/*# sourceMappingURL=layout.css.map */