@charset "utf-8";

/* company */
.company1{
  padding-bottom: 44px;
}

.company-subtitle{
    font-size: 70px;
    font-weight: 700;
    color: var(--main-color);
    font-family: var(--font-garam);
    line-height: 118%;
} 

.company1-txt{
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.company1-txt p{
  font-size: 20px;
  font-weight: 400;
  color: #222222;
  line-height: 150%;
  word-break: keep-all;
}

.company2-img{
  width: calc(100% - 140px);
  height: 650px;
  margin-left: auto;
  background-image: url(../img/subpage/company/company1_sec2_img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company3{
  padding-top: 150px;
}

.company3-wrap{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between ;
  padding: 0 70px;
}

.history-txt{
  position: relative;
}

.company-subtitle.history-title{
  position: sticky;
  top: 40px;
  text-align: left;
}

.history-wrap{
  max-width:50%;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.history-wrap::-webkit-scrollbar {
  display: none;
}

.history-bar{ 
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #82765B33;
}

.active-bar{
  width: 100%;
  height:auto;
  height: 0;
  background-color: var(--sub-color);
  transition: height 0.1s linear;
}

.history{
  width: 100%;
  height: 100%;
  margin-left: 60px;
  
}

.hisroty-list{
  width: 100%;
  display: flex;
  margin-bottom: 40px;
}

.year{
  font-size: 30px;
  font-weight: 700;
  margin-right: 28px;
}

.story{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap:9px;
  margin-left: 28px;
}

.story-list{
  list-style: disc;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color:#222222;
}

.list-txt{
  display: flex;
  align-items: center;  
}

.date{
  max-width: 47px;
  width: 100%;
  margin-right: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.content{
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
}

.map-hd{
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.map-add-wrap{
  display: flex;
  align-items: center;
}

.map-add{
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.map-add span{
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
  font-family: var(--font-garam);
  position: relative;
  margin-right: 9px;
  padding-right: 9px;
}

.map-add span::after{
  position: absolute;
  content:'';
  right: 0;
  top:50%;
  transform: translateY(-50%);
  width: 1px;
  height: 9px;
  background-color: #c5c5c5;
}

.map-add p{
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  word-break: keep-all;
}

.map-box{
  width: 100%;
}

.map-box iframe{
  width: 100%;
  height: 600px;
}

.pic-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.pic-box{
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  max-height: 420px;
}

.pic-thumb{
  max-width: 330px;
  width: 41.25%;
  background-color: var(--sub-color);
  padding: 9%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.pic-thumb img{
  transform: scale(1.0);
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
  border-radius: 0;
}

.pic-box:hover .pic-thumb img{
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.pic-info{
  background-color: #82765b10;
  padding: 8% 7%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pic-box:hover .pic-info{
  background-color: #D7CEBE;
  transition: all 0.4s ease-in-out;
}

.pic-info >  p{
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--main-color);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;Z
}

.pic-info span{
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.sub-more-btn{
  margin-top: auto;
}

.modal-wrap.active{
  display: block;
}

.modal-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
}

.modal-bg.active{
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: 3001;
}

.modal-box{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  max-width: 500rem;
  width: auto;
  text-align: right;
  z-index: 3002;
  opacity: 0;
}

.modal-box.active{
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.modal-close{
  padding: 4px;
  display: inline-block;
  cursor: pointer;
  background-image: url(../img/close.png);
  width: 32px;
  height: 32px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 6px;
}

.modal-palette{
  max-width: 500rem;
}



/* brand */
.brand1{
  padding-bottom: 150px;
}
.brand-con {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.brand-txt {
  margin-top: 94px;
  min-width: 320px;
}

.brand-txt span {
  font-size: 60px;
  font-weight: 700;
  font-family: var(--font-garam);
}

.brand-txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #222222;
  margin-top: 16px;
}

.brand-img {
  max-width: 969px;
  width: 100%;
}

.brand-img img{
  object-fit: cover;
}

.brand-swiper {
  width: 100%;
  height: 900px;
}

.brand-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.brand-slide1 {
  background-image: url(../img/subpage/brand/brand_slide1.png);
}
.brand-slide2 {
  background-image: url(../img/subpage/brand/brand_slide2.jpg);
}
.brand-slide3 {
  background-image: url(../img/subpage/brand/brand_slide3.png);
}

.slide-con {
  text-align: center;
  cursor: default;
  user-select: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slide-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.15;
  z-index: -1;
}

.slide-num {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 150%;
}

.slide-title {
  font-size: 60px;
  font-weight: 700;
  font-family: var(--font-garam);
  color: #000000;
}

.slide-con p {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #222222;
  word-break: keep-all;
}

.prev-arrow-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.next-arrow-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto !important;
  height: auto !important;
  color: #000000;
  opacity: 1;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in,
    opacity 0.2s ease-in-out;
}

.swiper-button-prev {
  text-align: left;
  left: 140px !important;
}
.swiper-button-next {
  text-align: right;
  right: 140px !important;
}

.swiper-button-next.fade-out,
.swiper-button-prev.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev-default::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15 18l-6-6 6-6"/></svg>');
}
.swiper-button-next-default::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="black" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 6l6 6-6 6"/></svg>');
}

.arrow-icon::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: currentColor;
  transition: color 0.8s ease;
}

.brand2 .swiper-navigation-icon {
  display: none;
}

.nav-text {
  user-select: none;
  display: inline-block;
  color: #000000;
  font-family: var(--font-garam);
  transition: color 0.8s ease-in-out, opacity 0.3s ease-in-out;
}

.brand2 .brand-swiper.white-theme .swiper-button-prev,
.brand2 .brand-swiper.white-theme .swiper-button-next,
.brand2 .brand-swiper.white-theme .arrow-icon::before,
.brand2 .brand-swiper.white-theme .nav-text {
  color: #ffffff !important;
  transition: color 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  background: #dcceb7;
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-100%, -100%);
  user-select: none;
  z-index: 4444;
  gap: 20px;
  display: flex;
}

.prev-arrow{
  width: 10px;
  height: 20px;
  background: url(../img/arrow_prev.png);
  background-size: cover;
  background-position: center;
}

.next-arrow{
  width: 10px;
  height: 20px;
  background: url(../img/arrow_next.png);
  background-size: cover;
  background-position: center;
}

.brand3 {
  padding-top: 150px;
}

.contact-bg {
  width: 100%;
  height: 630px;
  position: relative;
  background-image: url(../img/subpage/brand/brand1_contact.jpg);
  background-size: cover;
  background-position: center;
}

.contact-cover {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000020;
}

.contact-con {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.contact-text p {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 40px;
  word-break: keep-all;
}



/* product */
.pdc-con{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 90px;
    margin-bottom: 150px;
}

.pdc-con:nth-of-type(even){
    flex-direction: row-reverse;
}

.pdc-con:last-of-type{
  margin-bottom: 0;
}

.pdc-detail{
  min-width: 40%;
}

.pdc-img{
  max-width: 780px;
  width: 100%;
  aspect-ratio: 780 / 720; 
  overflow: hidden;
}

.pdc-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pdc-name{
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-garam);
}

.pdc-txt{
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
    color: #222222;
    margin-top: 20px;
    word-break: keep-all;
}

.pdc-list-wrap{
    margin: 54px 0;
}

.pdc-list:first-of-type{
    margin-bottom: 34px;
}

.pdc-list-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: #222222;
}

.pdc-list-txt{
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #666666;
    margin-top: 12px;
    word-break: keep-all;
}

.detail-wrapper{
    position: relative;
    width:100%;
    margin:0px auto;
    overflow-x: hidden;
    cursor: none;
    transform-origin: top left;
}

.detail-slider, .detail-slider > *{
  cursor: none !important;
}

.detail-slider .swiper-wrapper {
  transition-timing-function: linear !important; 
}

.detail-slider .swiper-slide {
  position: relative;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
}

.detail-slider .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.detail2{
    padding-top: 150px;
}

.detail2-hd{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.detail-title {
    font-family: var(--font-garam);
    font-weight: 700;
    font-size: 40px;
}

.detail2-txt p{
    font-weight: 400; 
    font-size: 22px;
    line-height: 140%;
    margin-top: 20px;
    word-break: keep-all;
}

.detail-list{
    width: 100%; 
    display: flex;
    justify-content: space-between;
    margin-top: 54px;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 40px 80px;
}


.detail-list-box{
    width: calc(50% - 40px);
    align-self: stretch;
}


.detail-list-box:nth-of-type(even){
    margin-top: 40px;
}

.detail-list-txt{
    margin-top: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    word-break: keep-all;
}

.detail3{
    padding-top: 200px;
}

.detail3-txt{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.detail3-txt p{
    font-weight: 400; 
    font-size: 16px;
    line-height: 150%;
    color: #666666;
    word-break: keep-all;
}

.detail-use{
    display: flex;
    justify-content: space-between;
    gap:40px;
    margin-top: 54px;
}
.detail-use .use-box{flex:1}

.use-txt{
    margin-top: 20px;
}

.use-txt span{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
}

.use-txt p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    word-break: keep-all;
}

.detail4{
    padding-top: 150px;
}

.detail4-hd{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.5;
}

.info-table th, .info-table td {
    border: 1px solid #f1eee6;
    padding: 12px 16px;
    text-align: left;
}
.info-table th {
    background: #D7CEBE;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color:var(--font-garam);
    max-width: 245px;
    width: 20%;
}
  
.info-table td {
    background: #82765B1A;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color:#222222;
}



/*board*/
.board_common_btn_list {
  margin-top: 80px;
}
.board_common_btn_list ul {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.board_common_btn_list a,
.board_common_btn_list button {
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  font-size: 16px;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  color: #333;
  display: inline-block;
  text-align: center;
}

.board_top_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.total_board {
}
.total_board p {
  font-size: 14px;
  color: #666;
}
.total_board p b {
  font-weight: bold;
  color: #222;
}

.search_board form {
  display: flex;
  gap: 10px;
}
.search_board form select {
  background: #f5f5f5 url(../img/sub/drop_search.png);
  background-position: 90% center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 15px;
  color: #666;
  height: 60px;
  line-height: 60px;
  border: 0;
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

.search_board form select::-ms-expand {
  display: none;
}

.search_board .sch_bar {
  display: flex;
  overflow: hidden;
  border-radius: 80px;
  border: 1px solid #ddd;
  background: #fff;
  /* blur */
  backdrop-filter: blur(9px);
  display: none;
}
.search_board .sch_bar input {
  font-size: 15px;
  padding: 0 20px;
  line-height: 60px;
  border: 0;
  background: transparent;
  color: #222;
  min-width: 400px;
}
.search_board .sch_bar button {
  padding: 0 20px;
  border: 0;
  background: transparent;
}

.board_tlb table {
  width: 100%;
  border-top: 1px solid #222;
  border-spacing: 0;
}
.board_tlb table td {
  font-size: 18px;
  padding: 35px 15px;
  border-bottom: 1px solid #ddd;
  font-weight: 500;
  color: #666;
}
.board_tlb table td.empty_table {
  font-size: 1em;
  padding: 20px 0 !important;
  color: #666;
  text-align: center;
}

.board_tlb table td.num {
  text-align: center;
  width: 80px;
  font-size: 15px;
  color: #999;
}
.board_tlb table td.num .notice_icon {
  color: #222;
}

.board_tlb table td.date {
  width: 170px;
}
.board_tlb table td.date p {
  font-size: 16px;
  color: #999;
  text-align: center;
  display: flex;
  gap: 5px;
}
.board_tlb table td.down {
  text-align: center;
  width: 170px;
  font-size: 15px;
  color: #999;
}
.board_tlb table td a.flexa {
  display: flex;
  gap: 10px;
}
.board_tlb table td .point {
  font-size: 14px;
  background: #ff8a00;
  padding: 5px 10px;
  border-radius: 3px;
  color: #fff;
}

.board_tlb .down_load {
}

.board_tlb .down_load {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  background: #18459d;
  padding: 15px 25px 15px 15px;
  border-radius: 100px;
}
.board_tlb .down_load i {
  background: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

.board_detail_content {
  border-top: 1px solid #ddd;
  padding-top: 50px;
}
.board_view_btn {
  text-align: center;
  margin-top: 100px;
}

.gall_list_style {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr; /* 모든 행 높이 동일 */
}
.gall_list_style li{
  grid-column: auto;  /* span 제거 */
  width: 100%;
  word-wrap: break-word;      /* 오래된 브라우저 호환 */
  overflow-wrap: break-word;  /* 최신 표준 */
  word-break: break-all;  
}

.gall_list_style li.empty_list {
  width: 100%;
  color: #fff;
}

.empty_table {
  width: 100%;
  color: #fff;
}

.gall_box{
  display: block;
    height: 100%;
}
.gall_chk{
  position: absolute;
}
.gall_con{
  width: 100%;
    height: 100%;
}
.gall_list_style .gall_img {
  overflow: hidden;
}
.gall_list_style .gall_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.8s;
  aspect-ratio: 1 / 1;
}

.gall_list_style.certifications .gall_img img {
  aspect-ratio: 21 / 29;
}

.gall_list_style.certifications li {
  width: calc(25% - 45px);
}

.board_list_txt {
  background-color: #82765B20;
  height: 100%;
  padding: 40px 30px;
  transition: all .2s;
}
.board_list_txt:hover{
  background-color: #D7CEBE;
  transition: all .3s;
}

.board_list_txt.center {
  text-align: center;
}

.board_list_txt2{
  padding-top: 20px;
}

.list-date{
  margin-bottom: 100px;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  opacity: 0.5;
}

.list-date2{
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin-top: 12px;
}

.board_list_txt h3{
  color: #222222;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 줄 수를 2줄로 제한 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board_list_txt2 h3{
  position: relative;
  font-size: 20px;
  font-weight: 700;  display: -webkit-box;
  -webkit-line-clamp: 1; /* 줄 수를 2줄로 제한 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board_list_txt2 h3::after{
  position: absolute;
  bottom: 0px;
  left:0;
  content:'';
  width: 0px;
  height: 1px;
  background-color: #222222;
  transition: all 0.2s;
}

.gall_con:hover .board_list_txt2 h3::after{
  width: 100%;
  transition: all 0.4s;
}
.board-list-content{
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 17px;
  font-weight: 400;
  line-height: 140%;
  color: #666666;
  margin-top: 12px;
}

.board_list_txt .more_btn {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
}

.gall_list_style.certifications .board_list_txt {
  text-align: center;
}

.if_video_are {
  display: none;
  max-width: 1024px;
  margin: 0 auto 50px;
}

.board_detail_content .video-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 5px;
}

.board_detail_content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bo_v_file li {
  padding: 25px 0;
  border: 0;
  border: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
  border-radius: 0;
}
#bo_v_file li a {
  display: flex;
  gap: 20px;
  font-size: 16px;
  color: #666;
  transition-duration: 0.8s;
}

#bo_v_file li i {
  float: none;
  margin: 0;
}
#bo_v_file li i img {
  margin: 0;
}

#bo_v_file li a strong {
  font-weight: 400;
}

.board_title {
  margin-bottom: 80px;
  text-align: center;
}
.board_title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  word-wrap: break-word;
}
.board_title h3 {
  margin-top: 30px;
  font-size: 16px;
  color: #acacac;
  font-weight: 300;
}

.contact_view {
}
.contact_view li {
  font-size: 18px;
}
.contact_view li + li {
  margin-top: 10px;
}

.contact_content *,
.contact_content {
  font-size: 18px;
  line-height: 150%;
  word-break: keep-all;
}

.board_detail_content * {
  font-size: 18px;
  line-height: 150%;
}

.more_product {
  margin-top: 80px;
  text-align: center;
}
.more_product .common_btn {
  display: inline-flex;
}

.notice_list {
  border-top: 2px solid #fff;
}

.notice_list .box {
}
.notice_list .box + .box {
  margin-top: 30px;
}
.notice_list .box a {
  display: block;
  padding: 50px 40px;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition-duration: 0.8s;
}

.notice_list .box a:hover {
  border: 1px solid #00a0df;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.notice_list .box a h2 {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 줄 수를 2줄로 제한 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-duration: 0.8s;
  position: relative;
  z-index: 2;
}

.notice_list .box a p {
  font-size: 16px;
  color: #aaa;
  margin-top: 10px;
  transition-duration: 0.8s;
  position: relative;
  z-index: 2;

  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 줄 수를 2줄로 제한 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice_list .box a p.list_date {
  margin-top: 0;
  margin-bottom: 20px;
  color: #bcbcbc;
}

.notice_list .box a:hover h2 {
  color: #00a0df;
}

.more_btn{
    border-radius: 30px;
    border: 1px solid var(--main-color);
    padding: 18px 34px;
    text-align: center;
    display: inline-flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--main-color);
    transition-duration: .6s;
}

.more_btn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.more_btn:hover span{
  color: #ffffff;
}

/* customer */
.inquiry-wrap{
    display: flex;
    justify-content: space-between;    
}

.inquiry-left{
    flex: 1;
    max-width: 40%;
}

.inquiry-txt{
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    word-break: keep-all;
}

.inquiry-txt span{
    color: var(--sub-color);
}

.inquiry-info{
    background: #82765B1A;
    padding: 40px;
    margin-top: 40px;
}

.inquiry-info p{
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    word-break: keep-all;
}

.inquiry-add-wrap{
    margin-top: 20px;
}

.inquiry-add{
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.inquiry-add:first-of-type{
    margin-top: 0;
}

.inquiry-add span{
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    min-width: 50px;
}

.inquiry-add p{
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin-left: 10px;
}

.inquiry-right{
    flex: 1;
    max-width:50%;
}

.inquiry-form{
}

.inquiry-form > div{
  margin-bottom: 24px;
}

.form-box label{
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    display: inline-block;
    margin-bottom: 10px;
}

.form-box label::after{
    position: absolute;
    top:50%;
    right: -20px;
    transform: translate(-50%, -50%);
    content: '*';
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: var(--sub-color);
}

.form-box input{
    display: block;
    width: 100%;
    background: #F1EEE6;
    border-bottom: 1px solid #82765B4D;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    padding: 14px 16px;
}

.form-box input::placeholder{
    color: #666666;
}

.form-box textarea{
    display: block;
    max-width: 750px;
    width: 100%;
    height: 180px;
    background: #F1EEE6;
    border-bottom: 1px solid #82765B4D;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    padding: 14px 16px;
    resize: none;
}
