|
@@ -16243,7 +16243,7 @@ header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap
|
|
|
-webkit-box-align: center;
|
|
-webkit-box-align: center;
|
|
|
-ms-flex-align: center;
|
|
-ms-flex-align: center;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- width: 30%;
|
|
|
|
|
|
|
+ width: 25%;
|
|
|
height: 58px;
|
|
height: 58px;
|
|
|
}
|
|
}
|
|
|
header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .logo a {
|
|
header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .logo a {
|
|
@@ -16253,7 +16253,7 @@ header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
}
|
|
}
|
|
|
header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .txt {
|
|
header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .txt {
|
|
|
- width: 70%;
|
|
|
|
|
|
|
+ width: calc(70% - 20px);
|
|
|
display: -webkit-box;
|
|
display: -webkit-box;
|
|
|
display: -ms-flexbox;
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
display: flex;
|
|
@@ -16283,20 +16283,24 @@ header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap
|
|
|
header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .txt p:last-child span {
|
|
header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .txt p:last-child span {
|
|
|
font-weight: 700;
|
|
font-weight: 700;
|
|
|
}
|
|
}
|
|
|
|
|
+header .header--contents--wrap .header--contents .header--logo--wrap .logo--wrap .ham--btn {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ width: 30px;
|
|
|
|
|
+ min-width: 30px;
|
|
|
|
|
+ height: 30px;
|
|
|
|
|
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cline y1='11' x2='22' y2='11' stroke='black' stroke-width='2'%3E%3C/line%3E%3Cline y1='18' x2='22' y2='18' stroke='black' stroke-width='2'%3E%3C/line%3E%3Cline y1='4' x2='22' y2='4' stroke='black' stroke-width='2'%3E%3C/line%3E%3C/svg%3E");
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: 22px 22px;
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--contents--wrap .header--contents.actv .header--gnb--wrap .sub--wrap {
|
|
|
|
|
+ max-height: 500px;
|
|
|
|
|
+}
|
|
|
header .header--contents--wrap .header--contents .header--gnb--wrap .gnb--wrap {
|
|
header .header--contents--wrap .header--contents .header--gnb--wrap .gnb--wrap {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
max-width: 1200px;
|
|
max-width: 1200px;
|
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
|
- -webkit-transition: left linear 0.2s;
|
|
|
|
|
- transition: left linear 0.2s;
|
|
|
|
|
-}
|
|
|
|
|
-header .header--contents--wrap .header--contents .header--gnb--wrap .gnb--wrap.actv > ul li > ul {
|
|
|
|
|
- display: none;
|
|
|
|
|
- top: 52px;
|
|
|
|
|
- pointer-events: auto;
|
|
|
|
|
- -webkit-transform: translateX(-50%) translateY(0px);
|
|
|
|
|
- transform: translateX(-50%) translateY(0px);
|
|
|
|
|
- opacity: 1;
|
|
|
|
|
}
|
|
}
|
|
|
header .header--contents--wrap .header--contents .header--gnb--wrap .gnb--wrap > ul {
|
|
header .header--contents--wrap .header--contents .header--gnb--wrap .gnb--wrap > ul {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -16361,8 +16365,137 @@ header .header--contents--wrap .header--contents .header--gnb--wrap .gnb--wrap >
|
|
|
font-weight: 700;
|
|
font-weight: 700;
|
|
|
letter-spacing: -0.34px;
|
|
letter-spacing: -0.34px;
|
|
|
}
|
|
}
|
|
|
-header .header--wrap {
|
|
|
|
|
|
|
+header .header--contents--wrap .header--contents .header--gnb--wrap .sub--wrap {
|
|
|
|
|
+ max-height: 0;
|
|
|
|
|
+ -webkit-transition: max-height 0.3s;
|
|
|
|
|
+ transition: max-height 0.3s;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--contents--wrap .header--contents .header--gnb--wrap .sub--wrap > ul {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ padding-bottom: 10px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ display: -webkit-box;
|
|
|
|
|
+ display: -ms-flexbox;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--contents--wrap .header--contents .header--gnb--wrap .sub--wrap > ul li {
|
|
|
|
|
+ width: 20%;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--contents--wrap .header--contents .header--gnb--wrap .sub--wrap > ul li a {
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ line-height: 1;
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ font-weight: 400;
|
|
|
|
|
+ padding: 10px 0;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap {
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ left: 100%;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100vh;
|
|
|
|
|
+ -webkit-transition: all 0.3s;
|
|
|
|
|
+ transition: all 0.3s;
|
|
|
|
|
+ z-index: 10001;
|
|
|
|
|
+ display: -webkit-box;
|
|
|
|
|
+ display: -ms-flexbox;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
|
|
+ -webkit-box-direction: normal;
|
|
|
|
|
+ -ms-flex-direction: column;
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap.actv {
|
|
|
|
|
+ left: 0%;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--top {
|
|
|
|
|
+ background-color: #2ecc71;
|
|
|
|
|
+ padding: 20px;
|
|
|
|
|
+ display: -webkit-box;
|
|
|
|
|
+ display: -ms-flexbox;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ -webkit-box-align: center;
|
|
|
|
|
+ -ms-flex-align: center;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ -webkit-box-pack: justify;
|
|
|
|
|
+ -ms-flex-pack: justify;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--top .logo--wrap {
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ max-width: 210px;
|
|
|
|
|
+ width: 25%;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--top .logo--wrap img {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--top .login--menu {
|
|
|
|
|
+ display: -webkit-box;
|
|
|
|
|
+ display: -ms-flexbox;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ gap: 20px;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--top .login--menu .ico--user {
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ width: 24px;
|
|
|
|
|
+ height: 24px;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-image: url(../img/ico_user.svg);
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--top .login--menu .ico--close {
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ width: 24px;
|
|
|
|
|
+ height: 24px;
|
|
|
|
|
+ background-image: url(../img/ico_close2.svg);
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu {
|
|
|
|
|
+ display: -webkit-box;
|
|
|
|
|
+ display: -ms-flexbox;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l {
|
|
|
position: relative;
|
|
position: relative;
|
|
|
|
|
+ width: 51%;
|
|
|
|
|
+ height: calc(100vh - 84px);
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+ background-color: #F5F5F5;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l ul {
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l ul li {
|
|
|
|
|
+ list-style: none;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ padding: 30px 10px;
|
|
|
|
|
+ color: #222222;
|
|
|
|
|
+ line-height: 1;
|
|
|
|
|
+ letter-spacing: -0.3px;
|
|
|
|
|
+ border-bottom: 1px solid #E3E3E3;
|
|
|
|
|
+ font-weight: 400;
|
|
|
|
|
+ background-color: #F5F5F5;
|
|
|
|
|
+ font-size: 15px;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l ul li.actv {
|
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l .menu--login {
|
|
|
|
|
+ text-decoration: none;
|
|
|
|
|
+ color: #555;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ margin: 50px 0;
|
|
|
|
|
+ line-height: 1;
|
|
|
|
|
+ letter-spacing: -0.32px;
|
|
|
display: -webkit-box;
|
|
display: -webkit-box;
|
|
|
display: -ms-flexbox;
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
display: flex;
|
|
@@ -16372,40 +16505,49 @@ header .header--wrap {
|
|
|
-webkit-box-pack: center;
|
|
-webkit-box-pack: center;
|
|
|
-ms-flex-pack: center;
|
|
-ms-flex-pack: center;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
- -webkit-box-orient: vertical;
|
|
|
|
|
- -webkit-box-direction: normal;
|
|
|
|
|
- -ms-flex-direction: column;
|
|
|
|
|
- flex-direction: column;
|
|
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ gap: 12px;
|
|
|
}
|
|
}
|
|
|
-header .header--wrap:after {
|
|
|
|
|
- -webkit-transition: all ease-in-out 0.3s;
|
|
|
|
|
- transition: all ease-in-out 0.3s;
|
|
|
|
|
- content: "";
|
|
|
|
|
- display: block;
|
|
|
|
|
- height: 0px;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
- position: absolute;
|
|
|
|
|
- top: 166px;
|
|
|
|
|
- left: 0px;
|
|
|
|
|
- border-top: 1px solid #ebebeb;
|
|
|
|
|
- z-index: -1;
|
|
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l .menu--login .ico {
|
|
|
|
|
+ width: 16px;
|
|
|
|
|
+ height: 16px;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
-.header--dim {
|
|
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l .menu--login .ico.login {
|
|
|
|
|
+ background-image: url(../img/ico_login.svg);
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--l .menu--login .ico.logout {
|
|
|
|
|
+ background-image: url(../img/ico_logout.svg);
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--r {
|
|
|
|
|
+ width: 49%;
|
|
|
|
|
+ padding: 0 15px;
|
|
|
|
|
+ height: calc(100vh - 84px);
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--r ul {
|
|
|
|
|
+ padding: 0;
|
|
|
display: none;
|
|
display: none;
|
|
|
- width: 100%;
|
|
|
|
|
- height: 0px;
|
|
|
|
|
- position: fixed;
|
|
|
|
|
- top: 270px;
|
|
|
|
|
- left: 0px;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
- border-top: 1px solid #eee;
|
|
|
|
|
- z-index: 900;
|
|
|
|
|
}
|
|
}
|
|
|
-.header--dim.actv {
|
|
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--r ul.actv {
|
|
|
display: block;
|
|
display: block;
|
|
|
- height: 300px;
|
|
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--r ul li {
|
|
|
|
|
+ list-style: none;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--r ul li a {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ font-size: 15px;
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ color: #222222;
|
|
|
|
|
+ line-height: 1;
|
|
|
|
|
+ padding: 30px 15px;
|
|
|
|
|
+ letter-spacing: -0.3px;
|
|
|
|
|
+ border-bottom: 1px solid #F6F6F6;
|
|
|
|
|
+ text-decoration: none;
|
|
|
|
|
+}
|
|
|
|
|
+header .header--ham--wrap .header--ham--menu .ham--r ul li a.actv {
|
|
|
|
|
+ color: #315BFF;
|
|
|
|
|
+ font-weight: 500;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
main {
|