body {
    overflow-x: hidden;
}

.Wrap {
    min-width: 1900px;
}

#header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;

    display: flex;
    justify-content: space-between;

    padding: 0 50px;

    line-height: 100px;
    background: #fff;
}

#header h1 {
    flex: 1;
    font-size: 0;
}

#header .gnb>ul {
    display: flex;
    justify-content: center;
    width: 1200px;
}

#header .link {
    flex: 1;
    text-align: right;
}

#header .mega {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 1200px;
    margin: 0 auto;
    padding: 30px 100px;
}

#header .mega img {
    width: 250px;
}

#header .mega .right_menu {
    display: flex;
    gap: 30px;
}


#header .gnb>ul>li>a {
    padding: 0 20px;
}

#header .gnb>ul>li {}

#header .gnb>ul>li a {
    display: block;
    text-align: center;
}

#header .gnb>ul>li .menu_wrap {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    line-height: 25px;

    background: #fff;
    border-top: 1px solid #ddd;

    display: none;
}



#header .gnb>ul>li:hover .menu_wrap {
    display: block;
}







.mainVisual {
    position: relative;
    height: 500px;
    background: url(../img/main_visual01.jpg) no-repeat center center/cover;
}

.mainVisual .slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mainVisual .slogan h2 {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.mainVisual .slogan p {
    color: #fff;
    font-size: 15px;
}

.mainContent {
    padding: 100px 0;
}

.mainContent h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-align: center;
}

.mainContent p {
    font-size: 15px;
    text-align: center;
    margin: 0 0 30px 0;
}

.mainContent .inner {
    display: flex;
    gap: 30px;
    width: 1200px;
    margin: 0 auto;
}

.mainContent .inner figure {
    flex: 1;
}

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