.scroll-page {
    -webkit-overflow-scrolling: touch;
}

.motion {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}





.wrap {
    position: relative;

    text-align: center;
    box-sizing: border-box;
    animation: commonAni1 0.5s linear;
}

@media only screen and (max-width : 1024px) {}

@media only screen and (max-width : 1024px) {
    .wrap {
        /* padding-top: 70px; */

    }
}

.section {
    height: 100vh;
}

@media only screen and (max-width : 1024px) {
    .section {
        height: auto !important;
    }

}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 110px;
    text-align: center;

    z-index: 5;
}

#header>.container {
    position: relative;
    display: flex;
    margin: 0 auto;
    max-width: 1800px;
    width: 100%;
    min-height: 90px;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;

}

#header a.logo {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 160px;
    transform: translate(0, -50%);
}


#header a.logo>img {
    width: 100%
}

#header a.tel {
    display: flex;
    position: absolute;
    top: 50%;
    right: 20px;
    height: 30px;
    transform: translate(0, -50%);
    justify-content: center;
    align-items: center;
    /*세로 중앙정렬*/
}

#header a.tel>i {
    display: inline-block;
    width: 26px;
    height: 26px;
    padding-top: 5px;
    border-radius: 30px;
    background-color: #539b46;
    vertical-align: top;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#header a.tel>i>img {
    width: 16px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#header a.tel>strong {
    display: inline-block;
    padding-left: 5px;
    padding-top: 3px;
    font-family: 'GmarketSansBold';
    font-size: 1.500rem;
    letter-spacing: 0.01rem;
    line-height: 1.500rem;
    color: #000000;
}

#header a.tel>strong>font {
    display: inline-block;
    padding-right: 5px;
    font-family: 'GmarketSansMedium';
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.500rem;
    color: #fff;
}


#header a.tel:hover i img,
#header.on a.tel:hover i img {
    transform: rotate(20deg);
}


#header .container .box {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    align-items: center;
    justify-content: center;
}

#header .container .box .telMob {
    display: inline-block;
    width: 28px;
    height: 20px;
   
    margin-right: 10px;
    border-radius: 30px;
    background-color: rgba(255,255,255,0);
    vertical-align: top;
    box-sizing: border-box;
}

#header .container .box .telMob>img {
    height:100%;
}

.menuTrigger,
.menuTrigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menuTrigger {
    position: relative;
    width: 30px;
    height:20px;
}

.menuTrigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 3px;
}

.menuTrigger span:nth-of-type(1) {
    top: 0;
}

.menuTrigger span:nth-of-type(2) {
    top:9px;
}

.menuTrigger span:nth-of-type(3) {
    bottom: 0;
}

#header .container .box a.telTrigger {
    display: flex;
    height: 100%;
    /*width:30px;
  height:30px;
  margin-right:7px;
  padding-top:4px;
  text-align:center;
  border-radius:20px;
  background-color:#f15a22;*/
    margin-right: 7px;
    justify-content: center;
    /*가로 중앙정렬*/
    align-items: center;
    /*세로 중앙정렬*/
}

#header .container .box a.telTrigger i {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding-top: 4px;
    text-align: center;
    border-radius: 20px;
    background-color: #31427a;
    animation: 1.2s ease-out;
    animation-name: telTriggermove;
    animation-iteration-count: infinite;
}

@keyframes telTriggermove {
    0% {
        /*margin-right:0px*/
        background-color: #f15a22;
    }

    50% {
        background-color: #f7941d;
    }

    100% {
        background-color: #f15a22;
    }
}



#header.on {
    
}




@media only screen and (max-width : 1680px) {

    #header a.logo {
        left: 20px;
    }

    #header a.tel {
        right: 20px;
    }
}

@media only screen and (max-width : 1280px) {
    #header a.logo {
        width: 160px;
    }
}

@media only screen and (max-width : 1024px) {
    #header {
        min-height: 60px;
        
    }

    #header>.container {
        position: relative;
        margin: 0 auto;
        padding-right: 0;
        max-width: 100%;
        min-height: 60px;
    }

    #header a.logo {
        width: 130px;
    }

    #header a.tel {
        display: none;
    }

    #header .container .box {
        display: block;
    }

}

@media only screen and (max-width : 360px) {}

#quick,
#scrollBox {
    z-index: 3;
}





#nav {
    display: flex;
    
    justify-content: flex-end;
    /*가로 정렬*/
    align-items: center;
    /*세로 중앙정렬*/
    margin-right:160px;

}

#nav>li {
    position: relative;
    display: flex;
    width: 90px;
    margin-left: 15px;
    margin-right: 15px;
    min-height: 100px;
    justify-content: center;
    /*가로 중앙정렬*/
    align-items: center;
    /*세로 중앙정렬*/

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;


}

/*#nav>li:first-child{
  width:135px;
}*/
#nav>li>a {
    position: relative;
    display: flex;
    /*height:98px;*/

     padding-top: 5px;
    /* padding-bottom: 8px; */
    /*padding: 0 30px;*/
    font-size: 1.063rem;
    line-height: 1.063rem;
    letter-spacing:0.02rem;
    font-weight: 800;
    color: #fff;
    opacity:0.8;
    justify-content: center;
    /*가로 중앙정렬*/
    align-items: center;
    /*세로 중앙정렬*/
    word-break: keep-all;
    box-sizing: border-box;
}


#nav>li:hover>a,
#nav>li.active>a {
    font-weight: 800;
    opacity:1;
    color: #fff !important;


}
#nav>li i.diamond{
    position:absolute;
    top:-5px;
    right:-8px;
    width: 6px;
    height: 6px;

    background: #fff;      /* 색상 */
    
    transform: scaleX(1.3) rotate(45deg);
    opacity:0;
}
#nav>li:hover i.diamond{
    opacity:1;
}

#nav .line {
    position: absolute;
    display: inline-block;
    top: 2px;
    height: 1px;
    width: 0%;
    background: #771b1a;
    left: 50%;
    z-index: 6;
}

/*#nav .motion {
	-webkit-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	   -moz-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	     -o-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	        transition: background-color  0.3s ease-out, color 0.3s ease-out;

}*/


#nav>li:hover .line,
#nav>li.active .line {
    width: 100% !important;
    left: 0% !important;
}

#nav>li:not(.active) a:before,
#nav>li:not(.active) a:after {
    content: "";
    left: 0;
    bottom: -5px;
    width: 100%;
    position: absolute;
    transition: all 0.5s ease;
}

#header a.request{
    position:absolute;
    top:50%;
    right:20px;
    padding: 0 20px;
    padding-top:2px;
    
    border:1px solid #fff;
    font-size:0.875rem;
    line-height:30px;
    font-weight:600;
    color:#fff;
    transform: translate(0,-50%);
    transition: all 0.2s ease-out;
}
#header a.request:hover{
    background-color:rgba(255,255,255,0.3);
}

.dept2 {
    position: fixed;
    display: flex;
    top: 100px;
    left: 0;
    width: 100%;
    /*min-height:100px;*/
    padding-top: 20px;
    background-color: #fff;
    border-bottom: 1px solid #dbdee4;
    justify-content: center;
    /*가로 중앙정렬*/
    align-items: center;
    ;
    /*세로 중앙정렬*/
    box-sizing: border-box;

    z-index: 5;
}

.dept2>.container {
    display: flex;
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
    text-align: center;
    border-top: 1px solid #dbdee4;
    justify-content: center;
    /*가로 중앙정렬*/
    align-items: center;
    /*세로 중앙정렬*/
    box-sizing: border-box;

}

.dept2>.container .block {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
}

.dept2>.container ul {
    display: flex;
    width: 125px;
    margin-left: 15px;
    margin-right: 15px;

    padding: 25px 0;
    flex-flow: column;
    /*요소 세로정렬*/
    align-items: flex-start;
    /*세로 중앙정렬*/


}

/*.dept2>.container ul:first-child{

  width:135px;
}*/

.dept2>.container ul>li {
    width: 100%;

    vertical-align: top;
}

.dept2>.container ul>li>a {
    display: inline-block;
    position: relative;
    padding: 9px 0;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #333;
    text-align: center;
    opacity: 1;
    word-break: keep-all;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.dept2>.container ul>li>a>font {
    display: inline-block;
    font-size: 0.875rem;

    line-height: 0.938rem;
}

.dept2>.container ul>li>a:hover,
.dept2>.container ul>li:hover>a,
.dept2>.container ul>li.active>a {
    color: #771b1a !important;
    font-weight: 500;
    opacity: 1;
}

.dept2>.container ul>li>a>font {
    display: inline-block;
    width: 100%;
}

#nav .dept2 .line {
    position: absolute;
    display: inline-block;
    bottom: -1px;
    height: 1px;
    width: 0%;
    background: #771b1a !important;
    left: 50%;
    z-index: 5;
}

/*#nav .motion {
	-webkit-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	   -moz-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	     -o-transition: background-color  0.3s ease-out, color 0.3s ease-out;
	        transition: background-color  0.3s ease-out, color 0.3s ease-out;

}*/


#nav .dept2 li:hover .line,
#nav .dept2 li.active .line {
    width: 100% !important;
    left: 0% !important;
}

#nav .dept2 li:not(.active) a:before,
#nav .dept2 li:not(.active) a:after {
    content: "";
    left: 0;
    bottom: -5px;
    width: 100%;
    position: absolute;
    transition: all 0.5s ease;
}

@media only screen and (max-width : 1024px) {
    #nav {
        display: none;
    }
    #header a.request{
        display:none;
    }
}




/*모바일 메뉴*/
.mBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 100;
}

#mNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    padding-top: 70px;
    box-sizing: border-box;
    background-color: #ffffff;
    z-index: 100;
    overflow: hidden;
}

#mNav .logo {
    position: fixed;
    display: inline-block;
    top: 20px;
    left: 8px;
    z-index: 5;
}

#mNav .logo img {
    width: 160px;
}

#mNav .closeTrigger {
    position: fixed;
    display: inline-block;
    top: 20px;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 5;
}

.closeTrigger span {
    position: absolute;
    top: 47%;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #393232;
}

.closeTrigger span:nth-child(1) {
    transform: rotate(135deg) translateX(0%);
}

.closeTrigger span:nth-child(2) {
    transform: rotate(45deg) translateX(0%);
}

#mNav>ul {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #eee;
    overflow: hidden;
}

#mNav>ul>li {
    display: inline-block;
    width: 280px;
    min-height: 48px;
    border-bottom: 1px solid #eee;
}

#mNav>ul>li:last-child {
    border-bottom: 1px solid #eee;
}

#mNav>ul>li .depth2 {
    width: 100%;


}

#mNav>ul>li .depth2>ul {
    display: inline-block;
    width: 100%;

}

#mNav>ul>li .depth2>ul>li {
    display: inline-block;
    width: 100%;
    /* height:36px; */
    padding-left: 0;
    background-color: #fff;
    /* padding-bottom:10px; */

}

#mNav>ul>li .depth2>ul>li:first-child {
    padding-top: 5px;
    /* height:46px; */
    border-top: 1px solid #eee !important;
}

#mNav>ul>li .depth2>ul>li:last-child {
    padding-bottom: 5px;
    /* height:46px; */

}


#mNav>ul>li .depth2>ul>li>a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    line-height: 30px;
    font-size: 0.938rem;
    text-align: left;
    box-sizing: border-box;

}

#mNav>ul>li:hover {
    color: #202a65;
}

#mNav>ul>li>a {
    display: inline-block;
    width: 100%;
    height: 48px;
    padding-left: 20px;
    font-weight: 500;
    line-height: 48px;
    text-align: left;
    font-size: 1rem;
    color: #333333;
    letter-spacing: -0.01rem;
    box-sizing: border-box;
}


/*.quick{
  position:fixed;
  top:140px;
  left:50%;
  display:flex;
  max-width:1800px;
  width:100%;
  flex-flow:column;
  align-items: flex-end;
  justify-content:flex-start;
  transform:translate(-50%,0);
  z-index:4;
}*/
.quick {
    position: fixed;
    top: 140px;
    right: calc(50% - 900px - 72.5px);
    display: flex;
    width: 145px;
    flex-flow: column;
    align-items: flex-end;
    justify-content: flex-start;
    transform: translate(-50%, 0);
    z-index: 4;
}

.quick a {
    display: flex;
    width: 145px;
    height: 145px;

    border-radius: 140px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.15rem;
    color: #fff;

}

.quick a.link1 {
    margin-bottom: 10px;
    padding-top: 15px;
    background: url(../../img/quickBg.png) no-repeat #539b46;
    background-position: 60px -20px;
}

.quick a.link2 {
    padding-top: 5px;
    background: url(../../img/quickBg.png) no-repeat #4c4c4c;
    background-position: 10px 125px;
}

.quick a.link1:hover {
    background-position: 55px -15px;
    background-image:
}

.quick a.link2:hover {
    background-position: 15px 120px;
}

.quick i {
    position: relative;
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-top: 6px;
    font-size: 0;
    line-height: 0;
    text-align: center;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
}

.quick a:hover>i {
    background-color: rgba(255, 255, 255, 0.3)
}

.quick i>font {
    display: inline-block;
    position: absolute;
    left: 40%;
    width: 26%;
    height: 1px;

    font-size: 0;
    line-height: 0;
    background-color: #fff !important;
    background-image: none !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0.6;
}

.quick i>font.left {
    top: 39.5%;
    transform: rotate(45deg);

}

.quick i>font.right {
    bottom: 39.5%;
    transform: rotate(-45deg);
}

@media only screen and (max-width : 1440px) {
    .quick {
        top: 150px;
        right: 20px;
    }
}

@media only screen and (max-width : 1439px) {
    .quick {
        display: none;
    }
}








/*푸터*/
#footer {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
}

#footer .container {
    position: relative;
    display: flex;
    max-width: 1400px;
    width: 100%;
    max-height:275px;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}
#footer a.logo{
    width:70px;
    margin-bottom:2vh;
}
#footer a.logo>img{
    width:100%;
}
#footer strong, #footer b, #footer div>span{
    display:block;
    text-align:center;
    font-size:0.875rem;
    line-height:120%;
    color:#fff;
}
#footer b{
    margin: 10px 0;
    font-weight:400;
}
#footer div>span{
    display:inline-block;
}
#footer div>span::after{
    content: '/';
    display:inline-block;
    padding:0 3px;
    font-size:0.875rem;
    line-height:120%;
}
#footer div>span:last-child::after{
    display:none;
}
@media only screen and (max-width : 680px) {
    #footer strong, #footer b, #footer div>span{
   
    font-size:0.813rem;
   
}

}



/*서브*/
.subVisual {
    position: relative;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    background-color:#000;

}
.subVisual .bg{
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color:#000;
    
    opacity:0.6;
    z-index:1;
    

}
.subVisual.a01 .bg{
    background: url(../../img/subVisualC01.jpg) center center no-repeat;
    
    background-size: cover;
    background-attachment: fixed;
}
.subVisual.b01 .bg{
    background: url(../../img/subVisualB01.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.subVisual.c01 .bg{
    background: url(../../img/subVisualA01.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.subVisual.d01 .bg{
    background: url(../../img/subVisualD01.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.subVisual.e01 .bg{
    background: url(../../img/subVisualE01.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.subVisual .title{
    position:absolute;
    top:25%;
    left:50%;
    max-width:1800px;
    width:100%;
    transform: translate(-50%, 0);
    z-index:2;
}
.subVisual .title b, .subVisual .title strong, .subVisual .title p{
    display:block;
    color:#fff;
    text-align: left;
     word-break: keep-all;
    transition: all 0.2s ease-out;
}
.subVisual .title b{
    padding-bottom:1.5vh;
    font-size:1rem;
    line-height:100%;
    color:#00a0e9;
}
.subVisual .title strong{
    padding-bottom:1.5vh;
    font-size:4rem;
    line-height:120%;
   
}
.subVisual .title p{
    font-size:1.125rem;
    line-height:160%;
}

@media only screen and (max-width : 1800px) {
    .subVisual .title{
        padding-left:20px;
        padding-right:20px;
    }
}


@media only screen and (max-width : 1024px) {
    .subVisual {
        height: 50vh;
        
    }
    .subVisual .title{
        padding: 0 20px;
    }
   .subVisual .title b{
    font-size:0.875rem;
    }
    .subVisual .title strong{
        font-size:2.75rem;
    }
    .subVisual .title p{
        font-size:1rem;
    }

}
@media only screen and (max-width : 435px) {
    .subVisual {
        height: 65vh;
        
    }
    .subVisual .title{
        top:38%
    }
    .subVisual .title strong{
        font-size:1.75rem;
    }
    .subVisual .title p{
        font-size:0.875rem;
    }
}
@media only screen and (max-width : 340px) {
   
   .subVisual .title strong{
        font-size:1.5rem;
    }
    .subVisual .title b br, .subVisual .title strong br, .subVisual .title p br{
        display:none;
    }
    
}


#title {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;

}

#title strong {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.15rem;
}

#title strong i {
    display: block;
    width: 25px;
    height: 1px;
    margin: 0 auto;
    margin-bottom: 20px;
    background-color: #539b45;
}

#title dl {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

#title dl>dd {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 0.75rem;
}

#title dl>dd:first-child {
    font-weight: 800;
}

#title dl>dd::before {
    content: '-';
    display: inline-block;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 0.75rem;
    line-height: 0.75rem;
}

#title dl>dd:first-child::before {
    content: '';
}

@media only screen and (max-width : 1024px) {
    #title {
        margin-top: 10px;
    }

    #title strong {
        margin-top: 0;
        font-size: 2rem;
        line-height: 2rem;
        text-align: center;
    }

    #title dl {
        display: none;
    }
}

@media only screen and (max-width : 640px) {
    #title strong {
        font-size: 2rem;
        line-height: 2rem;
    }

}


#container {
    position: relative;
}
#container.black{
    background-color:#000 !important;
}

@media only screen and (max-width : 1024px) {
    #container {
        padding-top: 30px;
        /* margin-bottom: 50px; */
        background-size: 20px;
        overflow-x:hidden;
    }
}










.content {
    width: 1200px;


    margin: 0 auto;
    padding-top: 100px;
    padding-bottom:100px;
}

.content .web {
    display: block;
}

.content .mob {
    display: none;
}

@media only screen and (max-width : 1024px) {
    .content {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 30px;
        box-sizing: border-box;
    }

    .content .web {
        display: none;
    }

    .content .mob {
        display: block;
    }
}



ul.tab {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    justify-content: center;
    /*가로 정렬*/
    align-items: top;
    /*세로 정렬*/
}

ul.tab>li {
    position: relative;
    width: 24.25%;
    height: 60px;
    margin-left: 1%;
    text-align: center;
    border: 5px solid #539b46;
    opacity: 0.2;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

ul.tab>li:first-child {
    margin-left: 0;
}

ul.tab>li:hover,
ul.tab>li.active {
    border: 5px solid #539b46;
    opacity: 1;
}

ul.tab>li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

ul.tab>li font {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #333;
    word-break: keep-all;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

ul.tab>li.long>a {
    letter-spacing: -0.1rem;
}

ul.tab>li:hover>a,
ul.tab>li.active>a {
    color: #539b46;

}

ul.tab>li:hover font,
ul.tab>li.active font {
    color: #000 !important;
    font-weight: 500;
}


@media only screen and (max-width : 1024px) {
    ul.tab>li {
        height: 50px;
        border: 2px solid #0d1f47;
    }

    ul.tab>li:hover,
    ul.tab>li.active {
        border: 2px solid #0d1f47;
    }

    ul.tab>li font {
        position: absolute;
        font-size: 1rem;
        line-height: 1rem;
    }
}

@media only screen and (max-width : 640px) {
    ul.tab {
        flex-flow: column;
    }

    ul.tab>li {
        width: 100%;
        height: 50px;
        margin-left: 0;
        margin-top: 1%;
    }

    ul.tab>li:first-child {
        margin-top: 0;
    }

}





/*@media only screen and (min-width : 2400px) {
    .wrap {
        min-width: 2400px !important;
        width: 2400px;
        margin: 0 auto;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        box-sizing: inherit;
        overflow: hidden;

    }

    #header {
        min-width: 2400px !important;
        width: 2400px;
        left: 50%;
        transform: translate(-50%, 0%);
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}*/


.noArticle {
    display: inline-block;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.1rem;
}