* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font: normal 13px 'Apple SD Gothic Neo';
    line-height: 1.4;
    color: black;
    background-color: #f3f2ef;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

header .logo {
    font-size: 1.5em;
    font-weight: 600;
    color: black;
}

header .menu-icon {
    font-size: 1.2em;
    cursor: pointer;
}

header .header-buttons {
    display: flex;
    gap: 10px;
}

header .login-btn, header .store-btn {
    background-color: #007aff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
}

header .login-btn:hover, header .store-btn:hover {
    background-color: #005bb5;
}

main {
    margin-top: 0px;
    padding: 20px;
}

a {text-decoration:none;}
a:hover{color:#d52d63;}

.page-container {
    position:absolute;
    top:0px;
    width:100%;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;/*수평 중앙 */
    align-items: center; /*수직 중앙 */

}

.home-banner-container {
    height: 700px;
    width:100%;
    background-image: url('../images/home_img_1.jpg');
    background-repeat: no-repeat;
    background-size:cover;
    justify-content: center;/*수평 중앙 */
    align-items: center; /*수직 중앙 */
}
.banner-container {
    width:100%;
    justify-content: center;/*수평 중앙 */
    align-items: center; /*수직 중앙 */
}
.main-container {
    display: flex;
}

.home-welcome-msg {
    text-align: center;;
}

.home-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    justify-content: center;
}
.home-image-box {
    width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-image-title {
    margin-top: 3mm;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 14px;
    padding-right: 14px;
    color:#000000;
    background-color: white;
    font-size: 1em;
    box-shadow:2px 2px 3px rgba(180,180,180,0.4);
}
.home-image-title a{
    color:#000000;
    text-decoration: none;
}
.home-image-title a:hover{
    color:#ff0080;
}
.white-border {
    border-color: white;
    border-width: 2px;
    border-style: solid;
    box-shadow:2px 2px 3px rgba(180,180,180,0.4);
}
.content-on-header-background {
    height:100px;
    width:100%;
    margin: 0 auto;
    padding-top:100px;
    text-align: center;
    color: rgb(208, 184, 161);
    font: bold 45px Apple SD Gothic Neo;
    text-shadow:0 0 1px black;
}
.text-on-header-background {
    padding-top:50px;
    color: white;
    font: normal 18px Apple SD Gothic Neo;
    text-shadow:0 0 10px #222;
}
.link-wrapper-on-header-background {
    display:flex;
    justify-content: center; /* child 좌우정렬 */
    align-items: center; /* child 내용 수직정렬 */
    padding-top: 0px;
    height: 37px;
    gap: 1px;
}
.link-items-on-header-background {
    width:20%;
    height:100%;
    align-content: center; /* 자체 내용 수직정렬 */
    text-align: center; 
    color: white;
    font: normal 14px Apple SD Gothic Neo;
    border: none;
}
.link-items-on-header-background a{
    color: white;
}
.link-items-on-header-background a:hover{
    color: white;
    text-shadow:1px 1px 2px rgba(0, 0, 0, 0.3);
}

.prod-list-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
    padding-top:30px;
}

.sign-board {
    background-image:url('../images/bg_title.png');
    background-repeat: no-repeat;
    background-size:cover;
    align-content: center; /* 상하정렬 */
    text-align: center;
    margin: 0 auto; /* 박스 좌우 센터 */
    width: 220px;
    height: 40px;
    color:black; 
    font:normal 20px 'Apple SD Gothic Neo';
	box-shadow:5px 5px 4px rgba(180,180,180,0.4);
}
.path-list {
    width:85%;
    margin-top:3mm;
    background-color: none;
    color:black;
    font-size: 13px;
}
.path-list a{
    text-decoration: none;
    color:black;
}
.path-list a:hover{
    text-decoration: none;
    color:#d8005e;
}
.title-prod-category{
    width:100%;
    height:160px;
    background-image:url('../images/bg_category_title.jpg');
    background-repeat: no-repeat;
    background-size:cover;
    text-align: center;
    align-content:end;
    padding-bottom:40px;
    color:white; 
    font:normal 30px 'Apple SD Gothic Neo';
    box-shadow:5px 5px 4px rgba(180,180,180,0.2);
}
.title-general-pages{
    width:100%;
    height:160px;
    background-image:url('../images/bg_general_title.jpg');
    background-repeat: no-repeat;
    background-size:cover;
    text-align: center;
    align-content:end;
    padding-bottom:40px;
    color:white; 
    font:normal 30px 'Apple SD Gothic Neo';
    box-shadow:5px 5px 4px rgba(180,180,180,0.2);
}
.item-container {
	display:flex;
	flex-wrap: wrap;
	width:90%;
	gap:10px;
	margin-top:5mm;
    gap: 10px;
justify-content: center;
}
.item-image {
    background-color: none;
    width:690px;
}
.item-description-wrapper {
	padding:20px;
    background-color: white;
    border-width:1px;
 	border-style:solid;
	border-color:#DDDDDD;
    width:420px;
}



.indexProd_img {
	border-width:8px 8px 8px 8px;
 	border-style:solid;
	border-top-color:#DDDDDD;
	border-left-color:#CCCCCC;
	border-bottom-color:#fafafa;
	border-right-color:#FFFFFF;
	box-shadow:5px 5px 4px rgba(180,180,180,0.4);
}

.indexNametag {
	box-shadow:2px 2px 5px rgba(180,180,180,0.5);
    padding:20px;
    width: 370px;
    height:135px;
    margin-top:5mm;
    margin-bottom:20mm;
    background-color:white;
    text-align: left;
    align-self: center;
}
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #222;
}

.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.logoText {
    color: whitesmoke;
    font-size:20px;
}

.item-bottom-menu{
    text-align:center; 
    color:black; 
    font:normal 18px 'Apple SD Gothic Neo';
}
.item-bottom-menua a{
    color:black; 
}
.item-bottom-menua a:hover{
    color: #e00070; 
}
.store-submenu {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-submenu a {
    text-decoration: none;
    color: #007aff;
    font-size: 1.1em;
}

.store-submenu a:hover {
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.product-card p {
    font-size: 0.9em;
    color: #666;
}

.product-card .price {
    font-size: 1.1em;
    color: #007aff;
    font-weight: 600;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .sitemap {
    margin-bottom: 20px;
}

footer .sitemap a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9em;
}

footer .sitemap a:hover {
    text-decoration: underline;
}

footer .company-info {
    font-size: 0.85em;
    opacity: 0.8;
}

.footer-wrapper {
    display:flex; 
    flex-direction:row; 
    width:85%; 
    height:40px;
    justify-content:center;
    align-items:center;
    margin:0 auto;
}
.footer-element {
    width:12%;
    text-align: center;
    color:black;
    font: normal 15px 'Apple SD Gothic Neo';
}
.footer-element a{
    text-align: center;
    color:black;
    text-decoration: none;
}
.footer-element a:hover{
    text-align: center;
    color:#e00070;
    text-decoration: none;
}
.menu-widget-center {
    flex-basis:66%;
    margin-left:10%;
    background-color: none;
    color:white;
    font:normal 20px 'Apple SD Gothic Neo';
    text-align: center;
}
.menu-widget-center a{
    color:white;
    font:normal 20px 'Apple SD Gothic Neo';
    text-decoration: none;
}
.menu-widget-center a:hover{
    color: #e00070;
}


.menu-widget-right {
    display:flex;
    flex-basis:25%;
    flex-direction: row;
    color:white;
    justify-content:flex-end;
    align-content:center;
    align-items:center;
    gap:10px;
}
.menu-widget-right a{
    color:white;
    text-decoration: none;
}
.menu-widget-right a:hover{
    color: #e00070;
}


.t12black {color:black; font:normal 12px 'Apple SD Gothic Neo';line-height:140%;}
.t12black a{color:black;}
.t12black a:hover{color:#d52d63;}

.t13black {color:black; font:normal 13px 'Apple SD Gothic Neo';line-height:140%;}
.t13black a{color:black;}
.t13black a:hover{color:#d52d63;}

.t13blackB {color:black; font:bold 13px 'Apple SD Gothic Neo';line-height:140%;}
.t13blackB a{color:black;}
.t13blackB a:hover{color:#d52d63;}

.t13white {color:white; font:normal 13px 'Apple SD Gothic Neo';}

.t14black {color:black; font:normal 14px 'Apple SD Gothic Neo';}
.t14black a{color:black;}
.t14black a:hover{color:#d52d63;}

.t15black {color:black; font:normal 15px 'Apple SD Gothic Neo';}
.t15black a{color:black;}
.t15black a:hover{color:#d52d63;}

.t15white {color:white; font:normal 15px 'Apple SD Gothic Neo';}
.t15blackB {color:black; font:normal 15px 'Apple SD Gothic Neo';}

.text16orange {
	font-family:Apple SD Gothic Neo;
	font-size:16px;
	color:rgb(219, 142, 0);
}

.t18black {color:black; font:normal 18px 'Apple SD Gothic Neo';}
.t18black a{color:black;}
.t18black a:hover{color:#d52d63;}

.t20black {color:black; font:normal 20px 'Apple SD Gothic Neo';}
.t22black {color:black; font:normal 22px 'Apple SD Gothic Neo';}
.t22black a{color:black; text-decoration: none;}
.t22black a:hover{color:#d52d63;}

.t22white {color:white; font:normal 22px 'Apple SD Gothic Neo';}
.t22white a{color:white; font:normal 22px 'Apple SD Gothic Neo';}
.t22white a:hover{color:white; font:bold 22px 'Apple SD Gothic Neo';}

.t24black {
	font-family:Apple SD Gothic Neo;
	font-size:24px;
	color:black;
}

.prodNameText {color:black; font:normal 18px 'Apple SD Gothic Neo';}
.prodNameText25 {color:black; font:normal 25px 'Apple SD Gothic Neo';}
.prodNameText22 {color:black; font:normal 22px 'Apple SD Gothic Neo';}
.prodNameText20 {color:black; font:normal 20px 'Apple SD Gothic Neo';}
.prodNameText16 {color:black; font:normal 16px 'Apple SD Gothic Neo';}

textarea {
    color:black; 
    font: normal 13px 'Apple SD Gothic Neo';
    border:1px solid #ddd;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family:Apple SD Gothic Neo;
  font-size:14px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
  background-color: #fff;  
  padding: 6px 12px;
  margin: 5px 0px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

select:hover {
  border-color: #888;
}

select:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 2px rgba(180, 180, 180, .7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 10px) calc(1em + 2px),
    calc(100% - 5px) calc(1em + 2px),
    calc(100% - 1.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select.minimal:focus {
  background-image:
    linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 5px) 1em,
    calc(100% - 10px) 1em,
    calc(100% - 1.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}


select:disabled {
  opacity: 0.5;
}

input[type=text], select {
  color:black;
  font-size:14px;
  font-family:Apple SD Gothic Neo;
  padding: 6px 12px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

input[type=submit] {
  background-color: white;
  color: black;
  font-size:14px;
  font-family:Apple SD Gothic Neo;
  padding: 6px 12px;
  margin: 5px 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  cursor: pointer;
}

.emojy22 {border:none;}
.emojy22[type=submit] {font-size:18px; background:none; border:none; padding: 0px 0px;}

input[type=file] {
  color: black;
  font-size:14px;
  font-family:Apple SD Gothic Neo;
  padding: 2px 5px;
}

input[type=button] {
  background-color: white;
  color: black;
  font-size:14px;
  font-family:Apple SD Gothic Neo;
  padding: 5px 10px;
  margin: 5px 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  cursor: pointer;
}

input[type=password] {
  color:black;
  font-size:13px;
  font-family:Apple SD Gothic Neo;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

a {text-decoration:none;}
a:hover{color:#d52d63;}

img { max-width: 100%; }

hr { 
	display:block;
	height:0px;
	line-height:0px;
	text-align:center;
	border:0;
	border-top:1px dotted white;
	border-bottom:1px dotted black;
	margin:auto;
	padding:0;
	clear:both;
	float:none;
	width:95%;
}

hr.notop{
	margin-top:0;
}

button {
    background-color: #f5f5f5;
    color: black;
    font:normal 14px 'Apple SD Gothic Neo';
    padding: 5px 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    cursor: pointer;
}
button a{
    background-color: #f5f5f5;
    color: black;
    cursor: pointer;
}
button a:hover{
    background-color: white;
    color: #d52d63;
    cursor: pointer;
}

ol {
    color:black; 
    font:normal 12px 'Apple SD Gothic Neo';
    padding:20px;
}

ul {
	list-style:square;
    padding-inline-start: 1em;
}

li {
  line-height: 1.4;
}


#divHomeImage {position: relative; width:100%; height:100%; z-index:2;}

#divCopy {position: absolute; z-index:6; width:100%; height:100%;; top:0px; left:0px; text-align:left;}
#divFrame {position: absolute; z-index:7; width:100%; height:95%;; top:-30px; left:-40px; border:40px solid #f3f2ef;}


.homeCopyTitle_black {font-family:Apple SD Gothic Neo; font-size:19px; color:black; text-shadow:1px 1px 3px rgba(180,180,180,0.4);padding-top:10mm;padding-left:20mm;}
.homeCopySub1_black {font-family:Apple SD Gothic Neo; font-size:15px; color:black; text-shadow:1px 1px 3px rgba(180,180,180,0.4);padding-top:0mm;padding-left:20mm;}

.homeCopyTitle {font-family:Apple SD Gothic Neo; font-size:24px; color:white; text-shadow:1px 1px 3px rgba(180,180,180,0.4);padding-top:10mm;padding-left:20mm;}
.homeCopySub1 {font-family:Apple SD Gothic Neo; font-size:15px; color:white; text-shadow:1px 1px 3px rgba(180,180,180,0.4);padding-top:0mm;padding-left:20mm;}

#category_description{
	position:absolute;
	width:auto;
	height: auto;
	top:100px;
	left:200px;
	z-index:6;
}

#divProdInfo {
	position:sticky;
	top:0;
	background-color:white;
	padding:20px;
}

.homeImgAni {
	position:static;
	animation: myAnimation 15s infinite;
	animation-direction: alternate;
	z-index:4;
}

@keyframes myAnimation {
	0%   {left: 0px;   top: 0px; overflow:hidden;}
	25%  {left: 110px; top: 0px;  width:340; overflow:hidden;}
	40%  {left: 15px; top: 110px; transform:scale(1.05,1.05); overflow:hidden;}
	60%  {left: 200px; top: 200px; transform:rotate(45deg);}
	75%  {left: 0px;   top: 110px; overflow:hidden;}
	100% {left: 0px;   top: 0px;overflow:hidden;}
}

.videoHome {
	max-width:100%;
	height: auto;
	background-color:white;
	
}


.indexTDtag {
	box-shadow:2px 2px 5px rgba(180,180,180,0.5);
}

.indexProd_img {
	border-width:8px 8px 8px 8px;
 	border-style:solid;
	border-top-color:#DDDDDD;
	border-left-color:#CCCCCC;
	border-bottom-color:#fafafa;
	border-right-color:#FFFFFF;
	box-shadow:5px 5px 4px rgba(180,180,180,0.4);
}

.button_checkout {
  background-color: #fbfbfb;
  color:black;
  font-size:14px;
  font-family:Apple SD Gothic NeoBold;
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 3px;
  box-shadow:1px 1px 3px rgba(180,180,180,0.4);
}

.button_checkout a{
  background-color: #fbfbfb;
  color:black;
  font-size:14px;
  font-family:Apple SD Gothic Neo;
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 3px;
  box-shadow:1px 1px 3px rgba(180,180,180,0.4);
}

.button_checkout a:hover{
  background-color: #fbfbfb;
  color:black;
  font-size:14px;
  font-family:Apple SD Gothic Neo;
  padding: 5px 10px;
  border: 1px solid #cccccc;
  border-radius: 3px;
}

.button_std {
  background-color: #fbfbfb;
  color:black;
  font-size:13px;
  font-family:Apple SD Gothic Neo;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid #cccccc;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow:1px 1px 3px rgba(180,180,180,0.4);
}

.button_std:hover {
  color:black;
  font-size:13px;
  font-family:Apple SD Gothic Neo;
  padding: 5px 10px;
  display: inline-block;
  border: 1px solid #cccccc;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow:0px 0px 0px rgba(180,180,180,0.0);
}

.banner {
	background:#b5a095;
}

.banner_content {
	padding:3px;
	max-width:850px;
	height:20px;
	margin:0 auto;
	display:flex;
	align-items: center;
}
.banner_text {
	flex-grow:1;
	color:white; font:normal 12px 'Apple SD Gothic Neo';
	text-shadow:1px 1px 1px rgba(80,80,80,0.5);
}
.banner_close {
	background:none;
	border: none;
	cursor:pointer;
}
.banner_text,
.banner_close>span {
	color:white;
}

.paraTitle {color:black; font:normal 37px 'Apple SD Gothic NeoBold';}
.paraTitle a{color:black;}
.paraTitle a:hover{color:#d52d63;}

.material-symbols-rounded-black {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
  font-size:27px;
  padding:4px;
  color:black;
}

material-symbols-rounded-black a{color:black;}
material-symbols-rounded-black a:hover{color:#d52d63;}

.searchInput[type=text]{
  color:black;
  font-size:13px;
  font-family:Apple SD Gothic Neo;
  padding:5px 10px;
  display: inline-block;
  border: 1px solid #CCCCCC;
  border-radius: 2px;
  box-sizing: border-box;
 }

.imageRound {
  border: 1px solid white;
  border-radius: 5px;
 }

 .agreements {
    display:flex;
    width: 80%;
	color:black; 
	border: 1px solid #ddd;
	padding:20px;
	background-color:white;
    margin-bottom:40px;
    margin-top:20px;
 }

.cs-container {
    display:flex;
    flex-direction:row;
    width:85%;
    justify-content:center;
    margin: 0 auto;
    align-items:start;
    gap:20px;
}
.cs-box {
    background-color: white;
    width: 50%;
    height:540px;
    padding:20px;
}

.category_title{color:white; font:normal 25px 'Apple SD Gothic Neo';}
.category_text{color:white; font:normal 15px 'Apple SD Gothic Neo';}


.totAmt[type=text] {color:black; font:normal 16px 'Apple SD Gothic Neo'; text-align:right;}
.itemCount[type=text] {color:black; font:normal 16px 'Apple SD Gothic Neo'; text-align:center;}
.btnPlusMinus[type=button] {color:black; font:normal 16px 'Apple SD Gothic Neo'; text-align:center; background-color:#EEEEEE; cursor:pointer; border:1px; padding:0px 12px}
.colorChoice select, option {color:black; font:normal 16px 'Apple SD Gothic Neo'; text-align:center; padding:5px 10px;}

.checkoutBox{
	color: white; font:normal 22px 'Apple SD Gothic Neo';
	box-shadow:1px 1px 3px rgba(180,180,180,0.6);
	border-radius: 7px 7px 7px 7px;
	border-width:1px 1px 1px 1px;
 	border-style:solid;
 	border-color:white;
	background-color:#206888;
}

.menuBoxText {color:white; font:normal 16px 'Apple SD Gothic Neo'; line-height:100%; margin-top:1em;margin-bottom:0em;margin-left:0.1em; margin-right:0em;}
.categoryText {color:black; font-size:16px; font-family:Apple SD Gothic Neo; font-weight:normal;}
.subCategoryText {color:black; font-size:13px; font-family:Apple SD Gothic NeoLight; font-weight:normal;}

.option_img {margin:0px auto;}
.option_img img {transition:all 0.2s linear;}
.option_img:hover img {transform:scale(2);}

.item_img {margin:0px auto; }
.item_img img {transition:all 0.2s linear;}
.item_img:hover img {transform:scale(2);}

.textSM {
	color:black; 
	font-size:18px; 
	font-family:Apple SD Gothic Neo;
	font-weight:100; 
	margin-bottom:0px;
}

.iframeBorder {
border: 1px #eeeeee solid;
}

.pageBottom { background-color:#e2dfda; }
.mainMenu {
	box-shadow: 2px 2px 5px rgba(200,200,200,0.4);
	background-color:white;
}
.subMenu {color:#666666; font-size:10px; font-family:Apple SD Gothic NeoLight;line-height:130%;text-align:center;
	border-width:1px 0px 0px 0px;
 	border-style:solid;
	border-color:#EEEEEE;
	text-align:center;
	}
.menuTD {color:black; font-size:13px; font-family:Apple SD Gothic Neo;line-height:140%; margin-top:0;margin-bottom:0;margin-left:3mm; margin-right:2mm;
	background-color:white;
	border-width:0px 1px 0px 0px;
 	border-style:solid;
	border-right-color:#e6e6e6;
	}


.subMenuBorder {
	border-width:1px 1px 0px 0px;
 	border-style:solid;
	border-color:#EEEEEE;
	text-align:center;
}

.subMenuText {
	color:#666666; font-size:10px; font-family:Apple SD Gothic NeoLight;line-height:130%;text-align:center;
}

.subMenuText:hover {
	color:#660099; font-size:10px; font-family:Apple SD Gothic NeoLight;line-height:130%;text-align:center;
}

.tableCell {
	background-color:#f4f4f4;
	text-align:center;
	height:30px;
}

.tableCellLeft {
	background-color:#f4f4f4;
	text-align:left;
	padding-left:2mm;
	height:30px;
}

.tableCellHeader {
	background-color:#e9e9e9;
	text-align:center;
	height:40px;
}

.discriptText {
color:black; 
font-size:13px; 
font-family:Apple SD Gothic NeoLight;
line-height:130%;
text-align:middle;
}

.discriptText a {color:black;}
.discriptText a:hover{color:#c10074;}

.discriptTextBox {
	color:black; 
	font-size:13px; 
	font-family:Apple SD Gothic NeoLight;
	line-height:130%;
	text-align:middle;
	padding:10px;
}

.swMenuList {
	color:black; 
	font-size:13px; 
	font-family:Apple SD Gothic NeoLight;
	line-height:130%;
	text-align:left;
	padding:5px;
	border-width:1px 0px 0px 0px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.swMenuList a{
	color:black; 
	font-size:13px; 
	font-family:Apple SD Gothic NeoLight;
	line-height:130%;
	text-align:left;
	padding:10px;
}
.swMenuList a:hover{
	color:#c10074; 
	font-size:13px; 
	font-family:Apple SD Gothic NeoLight;
	line-height:130%;
	text-align:left;
	padding:10px;
}

.discriptImage {
	padding:10px;
}

.linkText {
	color:black; 
	font-size:16px; 
	font-weight:normal; 
	font-family:Apple SD Gothic NeoLight;
	line-height:130%;
	text-align:middle; 
	vertical-align:middle;
}
.linkText a{
	color:black; 
}
.linkText a:hover{
	color:#d52d63; 
}
.singleBox {
	box-shadow:2px 2px 3px rgba(180,180,180,0.2);
	border-radius: 4px 4px 4px 4px;
	border-width:1px 1px 1px 1px;
 	border-style:solid;
 	border-color:#d5d5d5;
	background-color:white;
}

.mainSubjectTitle {color:black; font-size:40px; font-family:Apple SD Gothic Neo;font-weight:100; margin-bottom:0px;}
.subjectTitle_30 {color:black; font-size:30px; font-family:Apple SD Gothic Neo;font-weight:100; margin-bottom:0px;}
.titleText {color:black; font-size:18px; font-family:Apple SD Gothic NeoLight;font-weight:100; margin-bottom:0px;}

.titleText2 {color:black; font-size:16px; font-family:Apple SD Gothic Neo;font-weight:100; margin-bottom:0px;}
.titleText2 a{color:black;}
.titleText2 a:hover{color:#d52d63;}

.titleTextScalet {color:#ff0066; font-size:16px; font-family:Apple SD Gothic NeoLight;font-weight:100; margin-bottom:0px;}
.paraText {color:#ff0066; font-size:22px; font-weight:bold; font-family:Apple SD Gothic NeoLight; line-height:140%;letter-spacing:-1.5px;margin-bottom:2mm;}
.paraTextGolden {color:#e4b81f; font-size:22px; font-weight:bold; font-family:'Apple SD Gothic NeoLight'; line-height:140%;letter-spacing:-1.5px;margin-bottom:2mm;}

.textGrayBold22 {color:#e0e0e0; font-size:22px; font-weight:bold; font-family:'Apple SD Gothic NeoLight'; line-height:140%;letter-spacing:-1.5px;margin-bottom:2mm;}

.inQuot {color:black; font-size:22px; font-family:Apple SD Gothic Neo;line-height:130%;text-align:middle;}

.hotsSpan {color:#666666; font-size:16px; font-family:Apple SD Gothic NeoLight;line-height:130%;text-align:middle;}

.hotsTitleText {color:black; font-size:20px; font-weight:normal; font-family:Apple SD Gothic NeoLight; line-height:130%;letter-spacing:0px; margin-left:5mm;}
.hotsTitleText a {color:black; }
.hotsTitleText a:hover{color:#d52d63;}


.highlightText {color:#ff0066; font-size:16px; font-weight:normal; font-family:Apple SD Gothic NeoLight;line-height:130%;text-align:middle; vertical-align:middle;}
.year_white {color:white; font-size:30px; font-weight:normal; font-family:Apple SD Gothic NeoLight;line-height:130%;text-align:middle; vertical-align:middle;}

.t12_black {color:black; font-family:Apple SD Gothic NeoLight;font-size: 12px;line-height:120%;}
.t12_blackNi a{color:black;}
.t12_blackNi a:hover{color:#c10074;}

.t12 {color:black; font-family:Apple SD Gothic NeoLight;font-size: 12px;line-height:120%;}
.t12_white{color:white; font-family:Apple SD Gothic NeoLight;font-size: 12px;line-height:120%;}
.t10{color:black; font-family:Apple SD Gothic NeoLight;font-size:10px;font-style:normal;}
.t10i{color:black; font-family:Apple SD Gothic NeoLight;font-size:9px;font-style: italic;}
.t08{color:#666666; font-family:Apple SD Gothic NeoLight;font-size:8px;line-height:120%;}
.t11{color:#666666; font-family:Apple SD Gothic NeoLight;font-size:11px;line-height:120%;}

.t13_white {color:white; font-size:1.1em; font-family:Apple SD Gothic Neo;line-height:130%;}
.t14_white_shadow {color:white; font-size:1.2em; font-family:Apple SD Gothic Neo;line-height:130%;text-shadow:1px 1px 1px rgba(80,80,80,0.7);}

.t13blackNi {color:black; font-size:1.1em; font-family:Apple SD Gothic Neo;line-height:130%;}
.t13blackNi a{color:black;}
.t13blackNi a:hover{color:#c10074;}

.solutionLink {color:black; font-family:Apple SD Gothic NeoLight;font-size: 12px;}
.solutionLink a{color:black; font-family:Apple SD Gothic NeoLight;font-size: 12px;}
.solutionLink a:hover{color:#c10074; font-family:Apple SD Gothic NeoLight;font-size: 12px;}

.indexIntroTextLeft {color:black; font-size:37px; font-weight:normal; font-family:Apple SD Gothic NeoLight;line-height:130%; vertical-align:middle; padding-left:3mm;padding-right:3mm;}
.indexIntroTextRight {color:black; font-size:14px; font-weight:normal; font-family:Apple SD Gothic NeoLight;line-height:130%; vertical-align:middle; padding-left:3mm;padding-right:3mm;}
.indexIntroText {color:black; font-size:36px; font-weight:normal; font-family:Apple SD Gothic NeoLight;line-height:130%; vertical-align:middle; padding-left:3mm;padding-right:3mm;}

.button_std {
    height: 24px;
    background: #9AAEC3;
    text-align: center;
	text-shadow:1px 1px 1px rgba(80,80,80,0.7);
    border-radius: 3px;
    color: white;
    font-weight: bold;
}

.button_std:hover {
    background: #acbdce;
	text-shadow:0px 0px 0px rgba(80,80,80,0.7);
}

/*---------------------------- 기본 테이블 포맷 ----------------------*/

.default-table {
	width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
	font-family:Apple SD Gothic Neo;
	font-size:13px;
	color:black;
	text-align:center;
}

.default-table td {
    border: 1px solid #bbb;
    padding: 10px;
	font-family:Apple SD Gothic Neo;
	font-size:13px;
	color:black;
}

.default-table th {
    border: 1px solid #bbb;
    background: #e4dfd7;
    text-align: center;
    font-family:Apple SD Gothic Neo;
    font-size:13px;
    font-weight: normal;
    color: #000;
}

.default-table tr:nth-child(even) {
    background: #f2f2f2;
}

.default-table a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
}

.default-table button {
    background: #FFF;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
	padding:10px 20px;
	font-family:Apple SD Gothic Neo;
	font-size:14px;
	color:black;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.default-table a:hover {
    text-decoration: none;
	color:#c4096a;
}
.default-table button:hover {
    text-decoration: none;
	box-shadow: none;
}
/* ----------------------------------*/
.tdInvTitle {
	background:#9AAEC3;
	border-radius: 4px 4px 0px 0px;
	text-align: center;
	color:white; 
	text-shadow:1px 1px 3px rgba(100,100,100,0.7);
	font-size:1.1em; 
	font-family:Apple SD Gothic Neo;
}

.tdProdDesc {
	padding:3mm;
}

.tdBottomLine {	
	border-width:0px 0px 1px 0px;
 	border-style:solid;
	border-color:#d5d5d5;
}

.tdBottomLineDotted {	
	border-width:0px 0px 1px 0px;
 	border-style:dotted;
	border-color:#d5d5d5;
}

.tdTopLine {	
	border-width:1px 0px 0px 0px;
 	border-style:solid;
	border-color:#d5d5d5;
}

.topredline {	
	border-width:1px 0px 0px 0px;
 	border-style:solid;
	border-color:#9AAEC3;
	padding-top:1mm;
}

.tdTopBottomLine {	
	border-width:1px 0px 1px 0px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdRightLine {	
	border-width:0px 1px 0px 0px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdTopLeftLine {	
	border-width:1px 0px 0px 1px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdTopRightLine {	
	border-width:1px 1px 0px 0px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdTopLeftRightLine {	
	border-width:1px 1px 0px 1px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdTopLeftBottomLine {	
	border-width:1px 0px 1px 1px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdAllLine {	
	border-width:1px 1px 1px 1px;
 	border-style:solid;
	border-color:#d5d5d5;
}
.tdAllLineR {	
	border-width:1px 1px 1px 1px;
	border-radius: 3px 3px 3px 3px;
 	border-style:solid;
	border-color:#d5d5d5;
}

.tdUpperLineDotted {
	border-width:1px 0px 0px 0px;
 	border-style:dotted;
	border-color:#d5d5d5;
}

.tdContBox {
	color:black; font:normal 13px 'Apple SD Gothic Neo';
	line-height: 140%;
	border-width:1px 1px 1px 1px;
 	border-style:solid;
	border-radius: 3px 3px 3px 3px;
	border-color:#DDDDDD;
	padding:15px;
	background-color:#F5F5F5;
}

.footerStandard {
	color: #777777;
	font-family:Apple SD Gothic NeoLight;
	font-size:11px;
	margin-top:0;
	margin-bottom:0;
}
.menuTelNumber {color:black; font-size:15px; font-family:Apple SD Gothic NeoLight; line-height:140%; margin-top:0;margin-bottom:0;margin-left:3mm; margin-right:2mm;
	background-color:white; }

.prod_menu_box {
	box-shadow:2px 2px 5px rgba(150,150,150,0.4);
	border-radius: 5px 5px 5px 5px;
	border-width:0px 0px 0px 0px;
 	border-style:solid;
 	border-top-color:#FFFFFF;
	border-left-color:#FFFFFF;
	border-right-color:#cccccc;
	border-bottom-color:#cccccc;
	background-color:rgba(255,255,255,0.7);
	text-align:center;
}

.prod_menu_box_g {
	box-shadow:2px 2px 5px rgba(150,150,150,0.4);
	border-radius: 5px 5px 5px 5px;
	border-width:0px 0px 0px 0px;
 	border-style:solid;
 	border-top-color:#FFFFFF;
	border-left-color:#FFFFFF;
	border-right-color:#cccccc;
	border-bottom-color:#cccccc;
	background-color:#f8f8f8;
	text-align:center;
}

.pageTitle {
	border-width:0px 0px 1px 0px;
 	border-style:solid;
	border-bottom-color:#EEEEEE;
}
.tdLeftLined {
	border-width:0px 0px 0px 1px;
 	border-style:solid;
	border-left-color:#EEEEEE;
	padding-top:3mm;
}

.linkTextOnImage {
	color:white; 
	font:normal 14px 'Apple SD Gothic Neo'; 
	padding-top:0.2em; 
	margin-left:4mm;
}
.linkTextOnImage:link{
	color:white; 
	font:normal 14px 'Apple SD Gothic Neo'; 
}
.linkTextOnImage:hover{
	color:#fababc; 
	font:normal 14px 'Apple SD Gothic Neo'; 
}

.noticeTextTitle {color:black; font:normal 11px 'Apple SD Gothic Neo';line-height:150%;}
.noticeTextTitle a{color:black; font:normal 11px 'Apple SD Gothic Neo';line-height:150%;text-decoration:none;}
.noticeTextTitle a:hover{color:#c10074; font:normal 11px 'Apple SD Gothic Neo';line-height:150%;text-decoration:none;}

.noticeText {color:black; font:normal 10px 'Apple SD Gothic Neo';line-height:145%;margin-left:0.1em;}
.noticeText a{color:black; font:normal 10px 'Apple SD Gothic Neo';line-height:145%; text-decoration:none;margin-left:0.1em;}
.noticeText a:hover{color:#c10074; font:normal 10px 'Apple SD Gothic Neo';line-height:145%; text-decoration:none;margin-left:0.1em;}

.noticeTextCopy {color:black; font:normal 10px 'Apple SD Gothic Neo';line-height:120%;letter-spacing: -0.3px;	word-spacing:1px;}

.bigQuot {color:black; font:normal 45px 'Arial';}

.footerBottom {
	border-width:1px 0px 0px 0px;
 	border-style:solid;
 	border-top-color:#DDDDDD;
	border-left-color:#FFFFFF;
	border-right-color:#FFFFFF;
	border-bottom-color:#FFFFFF;
}
.footerTop {
	border-width:0px 0px 1px 0px;
 	border-style:solid;
 	border-bottom-color:#DDDDDD;
}

.fonttest {color: #666666;	font-size: 11px; font-family:Apple SD Gothic NeoLight;line-height:140%; margin-top:0;margin-bottom:0;margin-left:3mm; margin-right:2mm;}

.t12m3 {color:black; font-size: 12px; font-family:Apple SD Gothic Neo;line-height:140%; margin-top:0;margin-bottom:0;margin-left:3mm; margin-right:2mm;}
.t12m6 {color:black; font-size: 12px; font-family:Apple SD Gothic Neo;line-height:140%; margin-top:0;margin-bottom:0;margin-left:6mm; margin-right:2mm;}

.textTitleBig {
	font: normal 40px 'Apple SD Gothic Neo';
	color:#000000;
}

.textTitleBig a{
	font: normal 'Apple SD Gothic Neo';
	color:#000000;
	text-decoration:none;
}

.textTitleBig a:hover{
	color:#660099;
}


/* 메뉴고정 */

.jbMenu {
width: 100%;
}

.jbFixed {
z-index:4;
position: fixed;
top:0px;
width:100%;
}
