/* font */
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard-dynamic-subset.css");

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "NanumSquare";
  font-style: normal;
  word-break: keep-all;
}

ul,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
}

img {
  display: block;
}

/* tabmenu */
.tab-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 48px;
}

/* Tab buttons */
.tab-wrap li {
  display: inline-block;
}

.tab-wrap li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  background-color: #f2f2f2;
  border-bottom: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.tab-wrap li a:hover {
  background-color: #ddd;
}

.tab-wrap li a.active {
  background-color: #fff;
  border-bottom-color: #333;
  font-weight: bold;
}

/* Tab content */
.tab-content {
  display: none;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 4px;
}

.tab-content.active {
  display: block;
}

/* header */
.open-menu {
  display: none;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: all 0.3s;
}

header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 73.5688%;
  margin: auto;
}

header .header-wrap .right .open-btn {
  display: none;
}

header .header-wrap .right>ul {
  display: flex;
  align-items: center;
}

header .header-wrap .right>ul>li {
  position: relative;
}

header .header-wrap .right>ul>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  height: 80px;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
}

header .header-wrap .right>ul>li>ul {
  position: absolute;
  border-top: 2px solid #00201c;
  left: -47px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}

header .header-wrap .right>ul>li>ul>li>a {
  width: 238px;
  height: 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #00201c;
  border-left: 2px solid #ffffff;
  transition: all 0.2s;
}

header .header-wrap .right>ul>li>ul>li>a:hover {
  border-left: 2px solid #00201c;
}

header .header-wrap .right>ul>li:hover>ul {
  visibility: visible;
  opacity: 1;
}

header:hover {
  background: #ffffff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

header:hover .header-wrap .right>ul>li>a {
  color: #00201c;
}

header:hover .header-wrap .right>ul>li:hover>a {
  color: #008170;
}

header.fixed {
  background: #ffffff;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

header.fixed .header-wrap .right>ul>li>a {
  color: #00201c;
}

header.fixed .header-wrap .right>ul>li:hover>a {
  color: #008170;
}

html[data-sub-name="company_about"] header .header-wrap .right>ul>li:nth-child(1)>ul>li:nth-child(1)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="company_vision"] header .header-wrap .right>ul>li:nth-child(1)>ul>li:nth-child(2)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="company_history"] header .header-wrap .right>ul>li:nth-child(1)>ul>li:nth-child(3)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="company_organization"] header .header-wrap .right>ul>li:nth-child(1)>ul>li:nth-child(4)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="company_location"] header .header-wrap .right>ul>li:nth-child(1)>ul>li:nth-child(5)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="product_list_golf"] header .header-wrap .right>ul>li:nth-child(2)>ul>li:nth-child(1)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="product_list_character"] header .header-wrap .right>ul>li:nth-child(2)>ul>li:nth-child(2)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="product_list_goods"] header .header-wrap .right>ul>li:nth-child(2)>ul>li:last-child>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="gallery_gallery"] header .header-wrap .right>ul>li:nth-child(3)>ul>li:nth-child(1)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

html[data-sub-name="gallery_video"] header .header-wrap .right>ul>li:nth-child(3)>ul>li:nth-child(2)>a {
  background: #00201c;
  color: #ffffff;
  border-left: 2px solid #00201c;
}

footer {
  width: 100%;
  border-top: 1px solid #777777;
}

footer .footer-wrap {
  width: 70%;
  margin: auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-wrap .left img {
  width: 100%;
}

footer .footer-wrap .right .link-box {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

footer .footer-wrap .right .link-box a,
footer .footer-wrap .right .link-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #757575;
}

footer .footer-wrap .right .text-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #757575;
  margin-bottom: 24px;
}

footer .footer-wrap .right .copyright p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #757575;
}

.sub-banner {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
}

.sub-banner .text-box {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: 24.4354%;
}

.sub-banner .text-box span {
  display: block;
  width: 3px;
  height: 40px;
  background: #ffffff;
}

.sub-banner .text-box h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.sub-banner.company-banner {
  background: url(../img/sub/compnay/company-banner.jpg) no-repeat center center;
  background-size: cover;
}

.sub-banner.product-banner {
  background: url(../img/sub/product/product-banner.jpg) no-repeat center center;
  background-size: cover;
}

.sub-banner.gallery-banner {
  background: url(../img/sub/gallery/gallery-banner.jpg) no-repeat center center;
  background-size: cover;
}

.sub-banner.notice-banner {
  background: url(../img/sub/notice/notice-banner.jpg) no-repeat center center;
  background-size: cover;
}

.sub-banner.questions-banner {
  background: url(../img/sub/questions/questions-banner.jpg) no-repeat center center;
  background-size: cover;
}

.line-menu-wrap {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0 18.918%;
  display: flex;
  align-items: center;
}

.line-menu-wrap .home a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 60px;
  border-width: 0px 1px;
  border-style: solid;
  border-color: #e0e0e0;
}

.line-menu-wrap .m01 {
  position: relative;
}

.line-menu-wrap .m01>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 211px;
  height: 60px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  border-right: 1px solid #e0e0e0;
}

.line-menu-wrap .m01 ul {
  position: absolute;
  left: -1px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  border: 1px solid #e0e0e0;
}

.line-menu-wrap .m01 ul>li {
  border-bottom: 1px solid #e0e0e0;
}

.line-menu-wrap .m01 ul>li:last-child {
  border: 0;
}

.line-menu-wrap .m01 ul>li>a {
  background: #ffffff;
  display: flex;
  align-items: center;
  width: 210px;
  height: 50px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.line-menu-wrap .m01:hover ul {
  visibility: visible;
  opacity: 1;
}

.line-menu-wrap .m02 {
  position: relative;
}

.line-menu-wrap .m02>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 211px;
  height: 60px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  border-right: 1px solid #e0e0e0;
}

.line-menu-wrap .m02 ul {
  position: absolute;
  left: -1px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  border: 1px solid #e0e0e0;
}

.line-menu-wrap .m02 ul>li {
  border-bottom: 1px solid #e0e0e0;
}

.line-menu-wrap .m02 ul>li:last-child {
  border: 0;
}

.line-menu-wrap .m02 ul>li>a {
  background: #ffffff;
  display: flex;
  align-items: center;
  width: 210px;
  height: 50px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.line-menu-wrap .m02:hover ul {
  visibility: visible;
  opacity: 1;
}

.line-menu-wrap .m03 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 211px;
  height: 60px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  border-right: 1px solid #e0e0e0;
}

.about-section {
  width: 63.059%;
  margin: 150px auto;
}

.about-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.about-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.about-section .content-wrap {
  display: flex;
  gap: 24px;
}

.about-section .content-wrap .left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
  justify-content: center;
  padding-top: 20px;
}

.about-section .content-wrap .left p {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  text-align: right;
  color: #212121;
}

.about-section .content-wrap .right img {
  width: 100%;
}

.vision-section {
  width: 63.059%;
  margin: 150px auto;
}

.vision-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.vision-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.vision-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.vision-section .content-wrap h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #00201c;
  margin-bottom: 24px;
}

.vision-section .content-wrap p {
  font-weight: 400;
  font-size: 24px;
  line-height: 27px;
  color: #757575;
  margin-bottom: 80px;
}

.vision-section .content-wrap img {
  width: 100%;
}

.history-section {
  width: 63.059%;
  margin: 150px auto;
}

.history-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.history-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.history-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.history-section .content-wrap .box>h3 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 48px;
  line-height: 68px;
  color: #008170;
  margin-bottom: 24px;
}

.history-section .content-wrap .box ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 46px;
}

.history-section .content-wrap .box ul li::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #00201c;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.history-section .content-wrap .box ul li h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #212121;
  margin-right: 72px;
}

.history-section .content-wrap .box ul li p {
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: #757575;
}

.organization-section {
  width: 63.059%;
  margin: 150px auto;
}

.organization-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.organization-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.organization-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.organization-section .content-wrap img {
  width: 100%;
}

.location-section {
  width: 63.059%;
  margin: 150px auto;
}

.location-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.location-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.location-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.location-section .content-wrap .top {
  margin-bottom: 80px;
}

.location-section .content-wrap .top iframe {
  width: 100%;
  height: 524px;
}

.location-section .content-wrap .bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-section .content-wrap .bottom .box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.location-section .content-wrap .bottom .box p,
.location-section .content-wrap .bottom .box a {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #757575;
}

.product-list-section {
  width: 63.059%;
  margin: 150px auto;
}

.product-list-section .title {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-list-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.product-list-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.product-list-section .prodimg {
  margin-top: 48px;
}

.product-list-section .prodimg img {
  width: 100%;
}

.product-list-section .content-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 24px;
}

.product-list-section .content-wrap .content {
  width: 100%;
}

.product-list-section .content-wrap .content a {
  display: block;
}

.product-list-section .content-wrap .content a img {
  width: 100%;
}

.product-list-section .detail-content-wrap {
  display: flex;
  align-items: center;
  gap: 68px;
}

.product-list-section .detail-content-wrap .left img {
  width: 100%;
}

.product-list-section .detail-content-wrap .right {
  width: 62.335%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-list-section .detail-content-wrap .right h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;
  color: #00201c;
}

.product-list-section .detail-content-wrap .right>span {
  display: block;
  width: 100%;
  height: 1px;
  background: #dddddd;
}

.product-list-section .detail-content-wrap .right p {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #757575;
}

.product-list-section .detail-content-wrap .right p .bold {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: #666666;
  margin-bottom: 12px;
}

.product-list-section .detail-content-wrap .right .btn-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-list-section .detail-content-wrap .right .btn-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 71px;
  background: #ffffff;
  border: 2px solid rgba(0, 32, 28, 0.5);
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
}

.product-list-section .detail-content-wrap .right .btn-wrap a:hover {
  background: #00201c;
  color: #ffffff;
}

.gallery-section {
  width: 63.059%;
  margin: 150px auto;
}

.gallery-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gallery-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.gallery-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.gallery-section .content-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

.gallery-section .content-wrap .content {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.gallery-section .content-wrap .content .img-box {
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}

.gallery-section .content-wrap .content .img-box img {
  width: 100%;
}

.gallery-section .content-wrap .content .text-box {
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  border-radius: 0px 0px 5px 5px;
  padding: 30px 30px 25px;
}

.gallery-section .content-wrap .content .text-box h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 27px;
  color: #212121;
  margin-bottom: 24px;
}

.gallery-section .content-wrap .content .text-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #9e9e9e;
}

.gallery-section .pageing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.gallery-section .pageing a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.gallery-section .pageing a.active {
  border: 1px solid #9e9e9e;
}

.gallery-section .pageing a.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #00201c;
  left: 0;
  bottom: 0;
}

.gallery-section .pageing .prev,
.gallery-section .pageing .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
}

.gallery-section .detail-content-wrap {
  width: 100%;
}

.gallery-section .detail-content-wrap .content .top {
  padding: 20.5px 40px;
  background: #f5f5f5;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #9e9e9e;
}

.gallery-section .detail-content-wrap .content .top p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.gallery-section .detail-content-wrap .content .bottom {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #9e9e9e;
}

.gallery-section .detail-content-wrap .content .bottom img {
  width: 100%;
}

.gallery-section .detail-content-wrap .content .bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.gallery-section .detail-content-wrap>a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  width: 93px;
  height: 44px;
  border: 1px solid #9e9e9e;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.gallery-section .detail-content-wrap .list-wrap div {
  display: flex;
  align-items: center;
}

.gallery-section .detail-content-wrap .list-wrap div a {
  display: flex;
  align-items: center;
}

.gallery-section .detail-content-wrap .list-wrap div a:first-child {
  justify-content: center;
  gap: 40px;
  width: 214.29px;
  height: 60px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.gallery-section .detail-content-wrap .list-wrap div a:last-child {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 40px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.gallery-section .detail-content-wrap .list-wrap div.bottom a:first-child {
  border-top: 0px solid #e0e0e0;
}

.gallery-section .detail-content-wrap .list-wrap div.bottom a:last-child {
  border-top: 0px solid #e0e0e0;
}

.video-section {
  width: 63.059%;
  margin: 150px auto;
}

.video-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.video-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.video-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.video-section .content-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

.video-section .content-wrap .content {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.video-section .content-wrap .content .img-box {
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}

.video-section .content-wrap .content .img-box img {
  width: 100%;
}

.video-section .content-wrap .content .text-box {
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  border-radius: 0px 0px 5px 5px;
  padding: 30px 30px 25px;
}

.video-section .content-wrap .content .text-box h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 27px;
  color: #212121;
  margin-bottom: 24px;
}

.video-section .content-wrap .content .text-box .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-section .content-wrap .content .text-box .box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #9e9e9e;
}

.video-section .pageing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.video-section .pageing a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.video-section .pageing a.active {
  border: 1px solid #9e9e9e;
}

.video-section .pageing a.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #00201c;
  left: 0;
  bottom: 0;
}

.video-section .pageing .prev,
.video-section .pageing .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
}

.video-section .detail-content-wrap {
  width: 100%;
}

.video-section .detail-content-wrap .content .top {
  padding: 20.5px 40px;
  background: #f5f5f5;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #9e9e9e;
}

.video-section .detail-content-wrap .content .top p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.video-section .detail-content-wrap .content .bottom {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #9e9e9e;
}

.video-section .detail-content-wrap .content .bottom img {
  width: 100%;
}

.video-section .detail-content-wrap .content .bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.video-section .detail-content-wrap>a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  width: 93px;
  height: 44px;
  border: 1px solid #9e9e9e;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.video-section .detail-content-wrap .list-wrap div {
  display: flex;
  align-items: center;
}

.video-section .detail-content-wrap .list-wrap div a {
  display: flex;
  align-items: center;
}

.video-section .detail-content-wrap .list-wrap div a:first-child {
  justify-content: center;
  gap: 40px;
  width: 214.29px;
  height: 60px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.video-section .detail-content-wrap .list-wrap div a:last-child {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 40px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.video-section .detail-content-wrap .list-wrap div.bottom a:first-child {
  border-top: 0px solid #e0e0e0;
}

.video-section .detail-content-wrap .list-wrap div.bottom a:last-child {
  border-top: 0px solid #e0e0e0;
}

.notice-section {
  width: 63.059%;
  margin: 150px auto;
}

.notice-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.notice-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.notice-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.notice-section .content-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.notice-section .content-wrap table thead tr {
  border-top: 1px solid #9e9e9e;
  border-bottom: 1px solid #dddddd;
}

.notice-section .content-wrap table thead tr th {
  padding: 20.5px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #424242;
}

.notice-section .content-wrap table thead tr th:nth-child(1) {
  width: 110px;
}

.notice-section .content-wrap table thead tr th:nth-child(2) {
  width: 911px;
}

.notice-section .content-wrap table thead tr th:nth-child(3) {
  width: 179px;
}

.notice-section .content-wrap table tbody tr {
  border-bottom: 1px solid #dddddd;
  transition: all 0.3s;
}

.notice-section .content-wrap table tbody tr td {
  padding: 20.5px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
  text-align: center;
}

.notice-section .content-wrap table tbody tr td:nth-child(2) {
  text-align: left;
}

.notice-section .content-wrap table tbody tr:last-child {
  border-bottom: 1px solid #9e9e9e;
}

.notice-section .content-wrap table tbody tr:hover {
  background: #fafafa;
}

.notice-section .pageing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.notice-section .pageing a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.notice-section .pageing a.active {
  border: 1px solid #9e9e9e;
}

.notice-section .pageing a.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #00201c;
  left: 0;
  bottom: 0;
}

.notice-section .pageing .prev,
.notice-section .pageing .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
}

.notice-section .detail-content-wrap {
  width: 100%;
}

.notice-section .detail-content-wrap .content .top {
  padding: 20.5px 40px;
  background: #f5f5f5;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #9e9e9e;
}

.notice-section .detail-content-wrap .content .top p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.notice-section .detail-content-wrap .content .bottom {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #9e9e9e;
}

.notice-section .detail-content-wrap .content .bottom img {
  width: 100%;
}

.notice-section .detail-content-wrap .content .bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.notice-section .detail-content-wrap>a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  width: 93px;
  height: 44px;
  border: 1px solid #9e9e9e;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.notice-section .detail-content-wrap .list-wrap div {
  display: flex;
  align-items: center;
}

.notice-section .detail-content-wrap .list-wrap div a {
  display: flex;
  align-items: center;
}

.notice-section .detail-content-wrap .list-wrap div a:first-child {
  justify-content: center;
  gap: 40px;
  width: 214.29px;
  height: 60px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.notice-section .detail-content-wrap .list-wrap div a:last-child {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 40px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.notice-section .detail-content-wrap .list-wrap div.bottom a:first-child {
  border-top: 0px solid #e0e0e0;
}

.notice-section .detail-content-wrap .list-wrap div.bottom a:last-child {
  border-top: 0px solid #e0e0e0;
}

.questions-section {
  position: relative;
  width: 63.059%;
  margin: 150px auto;
}

.questions-section .title {
  margin-bottom: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.questions-section .title span {
  display: block;
  width: 210px;
  height: 2px;
  background: #00201c;
}

.questions-section .title h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  color: #00201c;
}

.questions-section .content-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.questions-section .content-wrap table thead tr {
  border-top: 1px solid #9e9e9e;
  border-bottom: 1px solid #dddddd;
}

.questions-section .content-wrap table thead tr th {
  padding: 20.5px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #424242;
}

.questions-section .content-wrap table thead tr th:nth-child(1) {
  width: 110px;
}

.questions-section .content-wrap table thead tr th:nth-child(2) {
  width: 911px;
}

.questions-section .content-wrap table thead tr th:nth-child(3) {
  width: 179px;
}

.questions-section .content-wrap table tbody tr {
  border-bottom: 1px solid #dddddd;
  transition: all 0.3s;
}

.questions-section .content-wrap table tbody tr td {
  padding: 20.5px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
  text-align: center;
}

.questions-section .content-wrap table tbody tr td.pwd_on {
  text-align: left;
  cursor: pointer;
}

.questions-section .content-wrap table tbody tr:last-child {
  border-bottom: 1px solid #9e9e9e;
}

.questions-section .content-wrap table tbody tr:hover {
  background: #fafafa;
}
.questions-section .content-wrap table tbody tr td.td_color {
  color: #bfbfbf;
}
.questions-section .content-wrap table tbody tr td.td_color.active {
  color: #008170;
  font-weight: 600;
}

.questions-section .pageing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.questions-section .pageing a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.questions-section .pageing a.active {
  border: 1px solid #9e9e9e;
}

.questions-section .pageing a.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #00201c;
  left: 0;
  bottom: 0;
}

.questions-section .pageing .prev,
.questions-section .pageing .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
}

.questions-section .detail-content-wrap {
  width: 100%;
}

.questions-section .detail-content-wrap .content .top {
  padding: 20.5px 40px;
  background: #f5f5f5;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #9e9e9e;
}

.questions-section .detail-content-wrap .content .top p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.questions-section .detail-content-wrap .content .bottom {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #9e9e9e;
}

.questions-section .detail-content-wrap .content .bottom img {
  width: 100%;
}

.questions-section .detail-content-wrap .content .bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.questions-section .detail-content-wrap .content02 {
  padding: 80px 60px;
  border-bottom: 1px solid #9e9e9e;
  background: #f5f5f5;
}

.questions-section .detail-content-wrap .content02 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.questions-section .detail-content-wrap>a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  width: 93px;
  height: 44px;
  border: 1px solid #9e9e9e;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}


.q-and-a_wrep_bk.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 9;
}
.password_modal_box.active {
  visibility: visible;
  opacity: 1;
}
.password_modal_box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  width: 100%;
  max-width: 500px;
  min-width: 300px;
}
.password_modal_box_close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.password_modal_box_icon {
  margin-bottom: 32px;
}
.password_modal_for {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.password_modal_for label {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3a3a3a;
  text-align: center;
}
.password_modal_for input {
  padding: 12px 24px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #bfbfbf;
  border: 1px solid #e7e7e7;
}
.password_modal_for button {
  background: none;
  border: none;
}
.password_modal_for button a {
  display: inline-block;
  padding: 12px 24px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #e7e7e7;
  background: #008170;
}
.password_modal_box_close_img {
  cursor: pointer;
}
.writing_contents_area {
  position: relative;
}

.questions-section .detail-content-wrap .list-wrap div {
  display: flex;
  align-items: center;
}

.questions-section .detail-content-wrap .list-wrap div a {
  display: flex;
  align-items: center;
}

.questions-section .detail-content-wrap .list-wrap div a:first-child {
  justify-content: center;
  gap: 40px;
  width: 214.29px;
  height: 60px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.questions-section .detail-content-wrap .list-wrap div a:last-child {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 40px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #616161;
}

.questions-section .detail-content-wrap .list-wrap div.bottom a:first-child {
  border-top: 0px solid #e0e0e0;
}

.questions-section .detail-content-wrap .list-wrap div.bottom a:last-child {
  border-top: 0px solid #e0e0e0;
}

.questions-section .contact-content-wrap {
  width: 100%;
  margin: 0 auto;
  margin-top: 36px;
}

.questions-section .contact-content-wrap .content {
  width: 100%;
}

.questions-section .contact-content-wrap .content form .top {
  position: relative;
  margin-bottom: 42px;
}

.questions-section .contact-content-wrap .content form .top h3 {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #111111;
  margin-bottom: 20px;
}

.questions-section .contact-content-wrap .content form .top .text-box {
  width: 100%;
  height: 200px;
  padding: 30px 40px;
  overflow: auto;
  margin-bottom: 21px;
  background: #dddddd;
}

.questions-section .contact-content-wrap .content form .top .text-box p {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #787878;
}

.questions-section .contact-content-wrap .content form .top .text-box p span {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  margin-left: 12px;
}

.questions-section .contact-content-wrap .content form .top .text-box::-webkit-scrollbar {
  width: 5px;
}

.questions-section .contact-content-wrap .content form .top .text-box::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

.questions-section .contact-content-wrap .content form .top .text-box::-webkit-scrollbar-track {
  background: #dddddd;
  border-radius: 10px;
  margin: 20px;
}

.questions-section .contact-content-wrap .content form .top .radio-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.questions-section .contact-content-wrap .content form .top .radio-box p {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3a3a3a;
  margin-right: 10px;
}

.questions-section .contact-content-wrap .content form .top .radio-box label {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3a3a3a;
  margin-left: 10px;
  position: relative;
}

.questions-section .contact-content-wrap .content form .top .radio-box label span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dddddd;
  left: -30px;
  top: 2px;
  transition: all 0.3s;
  cursor: pointer;
}

.questions-section .contact-content-wrap .content form .top .radio-box label span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #dddddd;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

.questions-section .contact-content-wrap .content form .top .radio-box label span.active {
  background: #00201C;
  transition: all 0.3s;
}

.questions-section .contact-content-wrap .content form .top .radio-box label span.active::after {
  background: #ffffff;
  transition: all 0.3s;
}

.questions-section .contact-content-wrap .content form .top .radio-box input {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  /*opacity: 0;*/
}

.questions-section .contact-content-wrap .content form .middle {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.questions-section .contact-content-wrap .content form .middle>div {
  display: flex;
  width: 100%;
  gap: 24px;
  align-items: center;
}
.questions-section .contact-content-wrap .content form .middle>div.title {
  margin-bottom: 0;
}

.questions-section .contact-content-wrap .content form .middle>div>label {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3a3a3a;
  padding: 12px 28px;
}

.questions-section .contact-content-wrap .content form .middle>div>input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  padding: 14px 24px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #787878;
}

.questions-section .contact-content-wrap .content form .middle>div>input:placeholder {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
}

.questions-section .contact-content-wrap .content form .middle>div .option-radiobox {
  display: flex;
  align-items: center;
}

.questions-section .contact-content-wrap .content form .middle>div .option-radiobox label {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  margin-left: 10px;
  position: relative;
}

.questions-section .contact-content-wrap .content form .middle>div .option-radiobox label span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: url(../img/check-btn.svg) no-repeat center center #ffffff;
  border: 1px solid #dddddd;
  left: -30px;
  transition: all 0.3s;
}

.questions-section .contact-content-wrap .content form .middle>div .option-radiobox label span.active {
  background: url(../images/check-btn.png) no-repeat center center #000000;
  transition: all 0.3s;
}

.questions-section .contact-content-wrap .content form .middle>div .option-radiobox label:nth-child(2) {
  margin-right: 40px;
}

.questions-section .contact-content-wrap .content form .middle>div .option-radiobox>input {
  width: 20px;
  height: 20px;
  opacity: 0;
}

.questions-section .contact-content-wrap .content form .bottom {
  width: 100%;
  margin-bottom: 48px;
}

.questions-section .contact-content-wrap .content form .bottom .message {
  display: flex;
  width: 100%;
  gap: 24px;
}

.questions-section .contact-content-wrap .content form .bottom .message label {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3a3a3a;
  padding: 12px 28px;
}

.questions-section .contact-content-wrap .content form .bottom .message textarea {
  width: 100%;
  height: 300px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  padding: 24px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #787878;
}

.questions-section .contact-content-wrap .content form .bottom .message textarea:placeholder {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
}

.questions-section .contact-content-wrap .content form button {
  background: #00201C;
  cursor: pointer;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  border: 0;
  padding: 20px 40px;
  transition: 0.3s;
}

.questions-section .contact-content-wrap .content form button:hover {
  background-color: #ad4800f1;
}

.questions-section .contact-content-wrap .content form button svg {
  margin-left: 12px;
}

.middle_item {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 60px !important;
}

.middle_item div {
  display: flex;
  gap: 24px;
}

.middle_item div input {
  width: 100%;
  padding: 14px 24px;
  border: 1px solid #e7e7e7;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #787878;
}

.middle_item div label {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3a3a3a;
  padding: 12px 14px;
}

.middle_item div.name label {
  padding: 12px 28px;
}

.password_box {
  width: 100%;
  margin-bottom: 44px;
}
.password {
  display: flex;
  gap: 24px;
}
.password label {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #3a3a3a;
  padding: 12px 28px 12px 0;
}
.password input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  padding: 14px 24px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #787878;
}
.writing_but_move {
  background-color: #f0f0f0 !important;
}
.writing_but_move:hover {
  background-color: #00201C !important;
}
.q_and_a_but {
  display: flex;
  justify-content: space-between;
}
.q_and_a_but_a {
  padding: 20px 40px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3a3a3a;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  width: fit-content;
}
.writing_but {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 12px 24px;
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3a3a3a;
  border: 1px solid #e7e7e7;
}

