@charset "UTF-8";

@media print, screen and (min-width:1000px) {

#topHead {
position: fixed;
width: 100vw;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
z-index: 500;
}

#topHead.fixed {
background-color: #fff;
}

#topHead #headInner {
position: relative;
width: 92vw;
height: 130px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
transition: .3s;
}

#topHead.fixed #headInner {
height: 110px;
}

#topHead #headInner #logo {
position: relative;
background: url("../img/logo.svg") no-repeat;
background-size: 250px;
width: 250px;
height: 42px;
}

#topHead #headInner #logo a span {
width: 250px;
height: 42px;
font-size: 0;
display: block;
text-indent: -10000px;
}

#topHead #headInner #globalNav ul {
position: relative;
margin-top: 30px;
display: flex;
justify-content: flex-end;
}

#topHead #headInner #globalNav ul li {
text-align: center;
margin-left: 40px;
}

.windowBlank {
background: url("../img/window_blank.svg") no-repeat right;
background-size: 15px;
padding-right: 24px;
}

#topHead #headInner #globalNav ul li a {
position: relative;
font-size: 1.5rem;
font-weight: 600;
text-decoration: none;
margin: 0;
padding: 0;
line-height: 1;
}

#topHead #headInner #globalNav ul li a::after {
position: absolute;
background: linear-gradient(to right, #018fff, #ff1e96);
content: "";
width: 100%;
height: 1px;
bottom: -6px;
left: 0;
transform: scale(0, 1);
transform-origin: left top;
transition: all .3s ease;
}

#topHead #headInner #globalNav ul li a:hover::after {
transform: scale(1, 1);
}

#topHead #headInner #navContact {
position: absolute;
background-color:transparent;
font-family: var(--font-primary);
font-size: 1.5rem;
color: var(--txtColor);
border: 0;
right: 0;
top: -40px;
}

/*
#topHead #headInner #navContact {
position: absolute;
background: linear-gradient(to right, #018fff, #ff1e96);
font-family: var(--font-primary);
width: 160px;
height: 40px;
font-size: 1.7rem;
font-weight: 600;
color: #fff;
padding-bottom: 3px;
cursor: pointer;
border-radius: 160px;
border: 1px solid #000;
right: 0;
top: 20px;
}
*/

/*
#topHead #headInner #navContact:hover {
background: #fff;
color: #000;
}
*/

#topHead.fixed #headInner #navContact {
top: -40px;
}

.hamburger {
display: none !important;
}

}

@media print, screen and (max-width: 999px) {

#topHead {
position: fixed;
width: 100%;
height: 70px;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
z-index: 500;
transition: .3s;
}

#topHead.fixed  {
background-color: #fff;
}

#topHead #headInner #logo {
position: absolute;
background: url("../img/logo.svg") no-repeat;
background-size: 220px;
width: 220px;
height: 37px;
margin: auto;
transition: .3s;
left: 10px;
top: 15px;
}

#topHead.fixed #headInner #logo {
background: url("../img/logo.svg") no-repeat;
background-size: 220px;
}

#topHead #headInner #logo a span,
#topHead.fixed #logo a span {
width: 220px;
height: 37px;
font-size: 0;
display: block;
text-indent: -10000px;
}

.hamburger {
position: fixed;
display: block;
width: 52px;
right: 5px;
top: 15px;
height: 42px;
cursor: pointer;
text-align: center;
z-index: 1004;
transition: .5s;
}

.hamburger span {
position: absolute;
background-color: var(--txtColor);
display: block;
width: 30px;
height: 2px ;
left: 10px;
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

#topHead.fixed .hamburger span {
background-color: var(--txtColor);
}

.hamburger span:nth-child(1) {
top: 10px;
}

.hamburger span:nth-child(2) {
top: 18px;
}

.hamburger span:nth-child(3) {
top: 26px;
}

.hamburger.active span:nth-child(1) {
top: 20px;
left: 10px;
background: var(--txtColor);
transform : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
top: 20px;
background: var(--txtColor);;
transform : rotate(45deg);
}

#topHead #headInner #globalNav {
position: fixed;
background-color: #fff;
z-index : 1001;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: translateX(-100%);
transition: all 0.6s;
}

#topHead #headInner #globalNav.active {
opacity: 1;
display: block;
transform: translateX(0%);
}

#topHead #headInner #globalNav ul {
position: relative;
margin: 80px auto;
margin-bottom: 0;
display: block;
}

#topHead #headInner #globalNav ul li {
position: relative;
margin: 0 auto;
margin-bottom: 20px;
display: table;
transition: .6s;
top: -8px;
}

#topHead #headInner #globalNav ul li a {
font-size: 1.4rem;
text-decoration: none;
display: block;
transition: .5s;
}

.windowBlank {
background: url("../img/window_blank.svg") no-repeat right;
background-size: 15px;
padding-right: 24px;
}

#topHead #headInner #navContact {
position: relative;
background-color:transparent;
font-family: var(--font-primary);
color: var(--txtColor);
}

}