@charset "UTF-8";
/* #### MAIN #### */
.bannerSwiper {
  border-radius: 12px;
  overflow: hidden;
  height: 800px;
  position: relative;
}
.bannerSwiper .banner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 100px;
}
.bannerSwiper .banner .banner_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.bannerSwiper .banner .banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bannerSwiper .banner .banner_txt {
  position: relative;
  z-index: 1;
}
.bannerSwiper .banner .banner_txt h1 {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
}
.bannerSwiper .banner .banner_txt p {
  font-size: 28px;
  color: #fff;
  margin-top: 24px;
}
.bannerSwiper .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  top: auto;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
.bannerSwiper .swiper-pagination-progressbar-fill {
  background: #fff;
}
.section_signature {
  padding: 80px 0;
}
.signature_wrap {
  overflow-x: auto;
}
.signature_wrap::-webkit-scrollbar {
  display: none;
}
.signature__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.signature__list .signature__item {
  flex: 1;
  aspect-ratio: 1 / 1;
  position: relative;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  overflow: hidden;
  min-width: 300px;
}
.signature__item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.signature__item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature__item .text {
  position: relative;
  z-index: 2;
}
.signature__item .text h3 {
  color: #fff;
}
.signature__item .text p {
  margin-top: 12px;
  color: #fff;
}
.section_notice {
  padding-bottom: 120px;
}
.notice_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.btn_link {
  font-size: 18px;
  font-weight: 700;
  color: #505050;
  text-decoration: underline;
}
.notice__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.notice__item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: #333333;
}
.notice__item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
}
.notice_thum {
  overflow: hidden;
  aspect-ratio: 42 / 28;
}
.notice__item:nth-child(1) .notice_thum {
  aspect-ratio: 888 / 684;
}
.notice_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.notice_desc {
  padding: 24px;
  flex-shrink: 0;
}
.notice_desc h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.notice_desc span {
  color: #505050;
}
@media (max-width: 1024px) {
  .notice__grid {
    grid-template-columns: 1fr 1fr;
  }

  .notice__item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .notice__grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile */
@media screen and (max-width:768px) {
  .bannerSwiper {
    height: 240px;
  }
  .bannerSwiper .banner {
    padding: 0 12px;
  }
  .bannerSwiper .banner .banner_txt h1 {
    font-size: 18px;
  }
  .bannerSwiper .banner .banner_txt p {
    margin-top: 4px;
    font-size: 14px;
  }
  .bannerSwiper .swiper-pagination {
    bottom: 12px;
    width: 200px;
  }
  .section_signature {
    padding: 40px 0;
  }
  .signature__list {
    gap: 12px;
    margin-top: 12px;
  }
  .signature__list .signature__item {
    padding: 24px;
  }
  .signature__item .text h3 {
    font-size: 18px;
  }
  .signature__item .text p {
    margin-top: 4px;
    font-size: 14px;
  }
  .section_notice {
    padding-bottom: 60px;
  }
  .btn_link {
    font-size: 13px;
  }
  .notice__grid {
    gap: 12px;
    margin-top: 12px;
  }
  .notice_thum {
    aspect-ratio: 32 / 24;
  }
  .notice_desc {
    padding: 12px;
  }
  .notice_desc h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .notice_desc span {
    font-size: 14px;
  }
} 
/* #### About #### */
.about {
  margin-top: 80px;
  padding-bottom: 120px;
}
.about__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.about section:not(:last-child) {
  padding-bottom: 80px;
}
.about_text {
  margin-top: 24px;
}
.about_text p {
  color: #333;
}
.about-brand__grid {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}
.about-brand__grid .about-brand {
  flex: 1;
}
.about-brand .thum {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.about-brand .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-brand>p {
  margin-top: 24px;
  color: #333;
}
section.about__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 80px;
  padding: 20px;
  background: url(../_img/sub/about_banner.png) no-repeat center / cover;
}
section.about__banner h3 {
  color: #fff;
}
section.about__banner p {
  margin-top: 24px;
  text-align: center;
  line-height: 1.6;
  color: #fff;
}
.proposition__list {
  display: flex;
  margin-top: 24px;
  gap: 24px;
}
.proposition__list .proposition__item {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 32px;
  display: flex;
  align-items: flex-end;
}
.proposition__item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.proposition__item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proposition__item h3 {
  position: relative;
  z-index: 2;
  color: #fff;
}
.vision_mission {
  background-color: var(--color-sub);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 239px;
  margin-top: 24px;
  text-align: center;
}
.vision_mission p {
  margin: 12px 0;
  line-height: 1.6;
  color: #111;
}
.vision-mission_grid {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vision-mission_grid .card { 
  flex: 1;
  height: 173px;
  border-radius: 8px;
  padding: 32px;
}
.vision-mission_grid .card.vision {
  background-color: #ECE6DE;
}
.vision-mission_grid .card.mission {
  background-color: #249C4A;
}
.vision-mission_grid .card p {
  margin-top: 12px;
  line-height: 1.6;
}
.vision-mission_grid .card.vision h3 {
  color: #111;
}
.vision-mission_grid .card.vision p {
  color: #505050;
}
.vision-mission_grid .card.mission h3,
.vision-mission_grid .card.mission p {
  color: #fff;
}
.about-why__list {
  margin-top: 24px;
}
.about-why__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 8px;
}
.about-why__item .thum {
  height: 400px;
  border-radius: 8px;
  flex: 1;
  overflow: hidden;
}
.about-why__item .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-why__item .desc {
  flex: 1;
}
.about-why__item .desc p {
  margin-top: 16px;
  color: #333;
}
.about-why__item:nth-child(2) .desc {
  padding-left: 40px;
}
@media screen and (min-width: 768px) and (max-width:1200px) {
  
}
@media screen and (max-width:767px) {
  .about {
    margin-top: 40px;
    padding-bottom: 60px;
  }
  .about_text {
    margin-top: 12px;
  }
  .about_text p {
    font-size: 14px;
  }
  .about-brand__grid {
    flex-direction: column;
  }
  .about-brand .thum {
    height: 204px;
  }
  .about-brand>p {
    margin-top: 12px;
    font-size: 14px;
  }
  section.about__banner {
    height: 315px;
  }
  section.about__banner p {
    margin-top: 12px;
    font-size: 14px;
    text-align: left;
  }
  .proposition__list {
    flex-direction: column;
    margin-top: 12px;
    gap: 8px;
  }
  .proposition__list .proposition__item {
    flex: none;
    height: 240px;
    padding: 24px;
  }
  .vision_mission {
    height: 247px;
    align-items: flex-start;
    margin-top: 12px;
    text-align: left;
    padding: 24px;
  }
  .vision_mission p {
    font-size: 14px;
    text-align: left;
  }
  .vision-mission_grid {
    flex-direction: column;
  }
  .vision-mission_grid .card {
    width: 100%;
    height: 129px;
    padding: 24px;
  }
  .vision-mission_grid .card p {
    font-size: 14px;
  }
  .about-why__list {
    margin-top: 12px;
  }
  .about-why__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  .about-why__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .about-why__item .thum {
    height: 240px;
  }
  .about-why__item .desc p {
    margin-top: 12px;
    font-size: 14px;
  }
  .about-why__item:nth-child(2) .desc {
    padding-left: 0;
  }
}
/* #### Product #### */
.product {
  padding-bottom: 120px;
}
.product__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.product_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  row-gap: 24px;
}
.product_header .title {
  flex-shrink: 0;
}
.product_header .title h3 {
  color: #333;
}
.product_header .title p {
  margin-top: 12px;
  color: #505050;
}
.product_tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background-color: var(--color-sub);
  border-radius: 8px;
}
.product_tab li {
  width: auto;
  display: inline-block;
  height: 48px;
  text-align: center;
}
.product_tab li button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #333;
  height: 100%;
  padding: 0 12px;
  border-radius: 8px;
}
.product_tab li button.active {
  background-color: #111111;
  color: var(--color-sub);
}
.product_contents {
  margin-top: 40px;
}
.product_contents h4.h4_tit {
  color: #333;
}
.product__list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product__item {
  width: calc((100% / 3) - 24px);
  border-radius: 8px;
  overflow: hidden;
}
.product__item .thum {
  width: 100%;
  height: 280px;
}
.product__item .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.product__item .desc {
  padding: 24px;
  background-color: #fff;
}
.product__item .desc h3.product_title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 28px;
  height: 28px;
}
.product__item .desc p.product_cnts {
  color: #505050;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 23px;
  height: 69px;
}
.product__item .btn_request {
  height: 48px;
  line-height: 48px;
  margin-top: 16px;
  border-radius: 8px;
  font-weight: 700;
}
.product-dtl {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  height: 451px;
}
.product-dtl .thum {
  flex: 1.2;
  width: 100%;
  height: 100%;
  max-width: 648px;
}
.product-dtl .thum img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-dtl .product-dtl__info {
  flex: 1;
  max-width: 652px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-dtl__info p {
  color: #505050;
  margin-top: 16px;
}
.product-dtl__contents {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #CCCCCC;
  margin-bottom: 40px;
}
@media screen and (max-width:767px) {
  .product {
    margin-top: 20px;
    padding-bottom: 60px;
  }
  .product_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .product_header .title p {
    margin-top: 4px;
    font-size: 14px;
  }
  .product_tab {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .product_tab li {
    width: 100%;
    display: block;
    height: 40px;
  }
  .product_tab li button {
    width: 100%;
  }
  .product__list {
    margin-top: 12px;
    gap: 12px;
  }
  .product__item {
    width: 100%;
  }
  .product__item .thum {
    height: 188px;
  }
  .product__item .desc {
    padding: 12px;
  }
  .product__item .desc h3.product_title {
    font-size: 16px;
  }
  .product__item .desc p.product_cnts {
    font-size: 14px;
  }
  .product__item .btn_request {
    height: 40px;
    line-height: 40px;
    margin-top: 12px;
  }
  .product .btn_area {
    margin-top: 24px;
  }
  .main.prod_dtl {
    padding: 0;
    padding-top: 108px;
  }
  .product-dtl {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
  .product-dtl .thum {
    flex: none;
    max-width: 100%;
    height: auto;
  }
  .product-dtl .product-dtl__info {
    width: auto;
    padding: 0 20px;
    gap: 24px;
    max-width: 100%;
  }
  .product-dtl__info p {
    font-size: 14px;
  }
  .product-dtl .product-dtl__info .btn {
    height: 48px;
    font-size: 16px;
    line-height: 48px;
  }
  .product-dtl__contents {
    margin: 0 20px;
    margin-top: 40px;
    margin-bottom: 24px;
    padding-top: 24px;
  }
  .related_products {
    padding: 0 20px;
  }
}
/* #### Brand #### */
.brand {
  margin-top: 80px;
  padding-bottom: 120px;
}
.brand__list .brand__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 8px;
}
.brand__item .thum,
.brand__item .desc {
  flex: 1;
}
.brand__item .thum {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 500px;
}
.brand__item .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand__item .desc p {
  margin-top: 16px;
  color: #333;
}
.brand_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 24px;
  width: 100%;
  height: 369px;
  color: #fff;
  text-align: center;
  background: url(../_img/sub/brand_banner_bg.png) no-repeat center / cover;
}
.brand_banner h3 {
  color: #fff;
}
.brand_banner p {
  font-size: 24px;
  margin-top: 16px;
}
@media screen and (max-width:767px) {
  .brand {
    margin-top: 40px;
    padding-bottom: 60px;
  }
  .brand__list .brand__item {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .brand__list .brand__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .brand__item .thum,
  .brand__item .desc {
    flex: none;
  }
  .brand__item .thum {
    height: 240px;
  }
  .brand__item .desc p {
    margin-top: 12px;
    font-size: 14px;
  }
  .brand_banner {
    height: 257px;
    margin-top: 40px;
  }
  .brand_banner p {
    font-size: 14px;
    margin-top: 12px;
  }
}
/* #### Community #### */
.community {
  padding-top: 40px;
  padding-bottom: 120px;
}
.community__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.community_title {
  text-align: center;
}
ul.community_link {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.community_link li {
  font-weight: 700;
  color: #999;
  position: relative;
  padding: 0 12px;
}
ul.community_link li::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
ul.community_link li.active {
  color: #333;
}
ul.community_link li:first-child {
  padding-left: 0px;
}
ul.community_link li:last-child {
  padding-right: 0px;
}
ul.community_link li:last-child::after {
  content: none;
}
.tbl_notice .notice_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
.tbl_notice .notice_item .notice_thum {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.tbl_notice .notice_item .notice_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tbl_notice tbody td {
  height: 128px;
  text-align: center;
  padding: 0 8px;
}
.community-dtl {
  margin-top: 40px;
}
.dtl_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #D9D9D9;
}
.dtl_header h4.title {
  font-size: 20px;
  color: #333;
}
.dtl_header span.date {
  color: #505050;
}
.dtl_content {
  padding-bottom: 24px;
  border-bottom: 1px solid #D9D9D9;
  margin-top: 24px;
}
.dtl_content .cnts {
  margin-top: 24px;
  line-height: 1.6;
  color: #505050;
}
.dtl_content .cnts * {
  line-height: 1.6;
  color: #505050;
}
.dtl_content .iframe_cnts {
  display: flex;
  justify-content: center;
}
.dtl_content .iframe_cnts iframe {
  aspect-ratio: 4 / 2.4;
}
.community-dtl .btn_area {
  margin-top: 24px;
}
/* Help */
.tbl_help {
  margin-top: 24px;
}
.tbl_help tbody td {
  height: 70px;
  text-align: center;
}
.tbl_help .status {
  color: #333;
}
.tbl_help .status.pending {
  color: #999;
}
.password_input {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
}
.password_input>span {
  font-size: 16px;
  color: #333;
  padding-right: 12px;
  position: relative;
}
.password_input>span::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #DDDDDD;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.password_input .input_content {
  flex: 1;
} 
.password_input .input_content input {
  background-color: #F9F8EE;
  width: 100%;
}
.help-dtl {
  margin-top: 40px;
}
.help_header .help_title {
  min-height: 25px;
}
.help_header .help_title span {
  font-size: 18px;
  color: #333;
}
.help_header .help_title span.type {
  position: relative;
  padding-right: 8px;
  margin-right: 4px;
}
.help_header .help_title span.type::after,
.help_header .help_info li::after,
.help_attach-files>span::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 42%;
  transform: translateY(-50%);
}
.help_header .help_title span.title.lock {
  position: relative;
  padding-right: 24px;
}
.help_header .help_title span.title.lock::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 42%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_lock.svg) no-repeat center / contain;
}
.help_header .help_info {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.help_header .help_info li {
  position: relative;
  padding-right: 8px;
  font-size: 14px;
  color: #767676;
}
.help_header .help_info li:last-child::after {
  content: none;
}
.help-dtl .help_cnts {
  margin-top: 12px;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  color: #333;
}
.help_attach-files {
  margin-top: 12px;
  background-color: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: baseline;
}
.help_attach-files>span {
  font-size: 14px;
  color: #767676;
  padding-right: 12px;
  position: relative;
}
.help_attach-files .file_list {
  padding-left: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.help_attach-files .file_list a {
  font-size: 14px;
  color: #767676;
}
.help-dtl .btn_area {
  margin-top: 12px;
}
.help-dtl .help-answer {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #DDDDDD;
}
.form_reg_help .help_tit {
  margin-bottom: 24px;
}
.form_reg_help .help_tit h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}
.help-input__top {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #DDDDDD;
}
.form_reg_help .btn_area {
  margin-top: 40px;
}
.form_reg_help .btn_area .btn_common {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 8px;
}
@media screen and (max-width:767px) {
  .community {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  ul.community_link {
    margin-top: 20px;
  }
  ul.community_link li {
    font-size: 14px;
  }
  ul.community_link li::after {
    height: 12px;
  }
  .community-dtl {
    margin-top: 20px;
  }
  .dtl_header {
    padding-bottom: 12px;
  }
  .dtl_header h4.title {
    font-size: 16px;
  }
  .dtl_header span.date {
    font-size: 14px;
  }
  .dtl_content {
    padding-bottom: 12px;
    margin-top: 12px;
  }
  .dtl_content .cnts {
    font-size: 14px;
  }
  .dtl_content .cnts * {
    font-size: 14px;
  }
  .community-dtl .btn_area {
    margin-top: 12px;
  }
  .mo_item {
    display: block;
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid #DDDDDD;
  }
  .mo_item .mo_item--top {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .mo_item--notice .notice_title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mo_item--notice .notice_title .notice_thum {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .mo_item--notice .notice_title .notice_thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mo_item--notice .notice_title p.title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 20px;
    height: 40px;
    font-size: 14px;
  }
  .mo_item--info {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
  }
  .mo_item--info li {
    font-size: 12px;
    color: #767676;
    position: relative;
    padding-right: 4px;
  }
  .mo_item--info li::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #DDDDDD;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .mo_item--info li:last-child::after {
    content: none;
  }
  /* Help */
  .mo_item--help .help_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
  } 
  .mo_item--help .help_title .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 20px;
    height: 20px;
  }
  .mo_item--help .help_title .title.lock {
    position: relative;
    padding-right: 20px;
  }
  .mo_item--help .help_title .title.lock::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    background: url(../_img/icon/icon_lock.svg) no-repeat center / contain;
  }
  .mo_item--help .help_title span.status {
    flex-shrink: 0;
  }
  .mo_item--help .help_title span.status.pending {
    color: #767676;
  }
  .password_input {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 24px;
  }
  .password_input>span {
    font-size: 14px;
  }
  .password_input>span::after {
    content: none;
  }
  .help-dtl {
    margin-top: 20px;
  }
  .help_header .help_title {
    min-height: 22px;
  }
  .help_header .help_title span {
    font-size: 16px;
  }
  .help_header .help_title span.type::after,
  .help_header .help_info li::after,
  .help_attach-files>span::after {
    height: 12px;
  }
  .help_header .help_info {
    gap: 4px;
  }
  .help_header .help_info li {
    font-size: 12px;
    padding-right: 4px;
  }
  .help-dtl .help_cnts {
    padding: 12px;
    font-size: 14px;
  }
  .help_attach-files {
    padding: 12px;
  }
  .help-dtl .help-answer {
    margin-top: 20px;
    padding-top: 20px;
  }
  .help-input__bottom .input--typeA {
    margin-bottom: 24px;
  }
}