/* CSS Reset */
html, body {
    margin: 0;
    padding: 0;
    /* border: 0; */
    font-family: Arial, Helvetica, sans-serif;
}


/* div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video */
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* body {
    line-height: 1;
} */

ol, ul {
    /* list-style: none; */
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a:hover,a:link,a:visited,a:active,a:focus{
	color: #000000;
	text-decoration: none;
}


.navbar {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbarBox {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 16px 0;
}

.navbarLinkBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
}

.navbarLinkBox a {
    padding-left: 49px;
    font-weight: normal;
    font-size: 16px;
    color: #676767;
}

.navbarLinkBox #on {
    font-size: 16px;
    font-weight: bold;
    color: #292929;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbarLinkBox .sp {
    display: block;

    height: 10px;
}

.onspan {
    display: block;
    width: 19px;
    height: 3px;
    border-radius: 8px;
    background: #4A84FF;
    margin-top: 5px;
}
@keyframes fade-In {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: fade-In 1s ease-out forwards;
}
#tipbox {
    animation: fade-In 1s ease-out forwards;
}
@keyframes hoverUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-3px);
    }
}

#onn:hover {
    animation: hoverUp 0.3s ease-out forwards;
}

.fade-in-up {opacity: 0;transform: translateY(100px);transition: opacity 1s ease-out, transform 1s ease-out;}
.fade-in-down {opacity: 0;transform: translateY(-100px);transition: opacity 1s ease-out, transform 1s ease-out;}
.fade-in-right {opacity: 0;transform: translateX(-100px);transition: opacity 1s ease-out, transform 1s ease-out;}
.fade-in-left {opacity: 0;transform: translateX(100px);transition: opacity 1s ease-out, transform 1s ease-out;}

.fade-in-up.show,.fade-in-down.show {opacity: 1;transform: translateY(0);}
.fade-in-right.show,.fade-in-left.show {opacity: 1;transform: translateX(0);}

.simBox7 {
    width: 100%;
}

.sim7con {
    background-image: url(../image/sim020.png);
    background-size: cover;
    background-position: center;
    /* width: 1728px; */
    height: 500px;
    margin: 170px auto 0 auto;
    position: relative;
}
.simBottom{
    font-size: 16px;font-weight: normal;text-align: center;color: #6F6F6F;margin-top: 31px;
}

.fade-in-opac {opacity: 0;transform: translateX(0px);transition: opacity 1s ease-out, transform 1s ease-out;}


.sim7logo.fade-in-up.show {opacity: 1;transform: translateX(0);transition-delay: 0.1s;}
.sim7logo2.fade-in-up.show {opacity: 1;transform: translateX(0);transition-delay: 0.2s;}
.sim7text1.fade-in-up.show {opacity: 1;transform: translateX(0);transition-delay: 0.3s;}
.sim7text2.fade-in-up.show {opacity: 1;transform: translateX(0);transition-delay: 0.4s;}
.sim7text3.fade-in-up.show {opacity: 1;transform: translateX(0);transition-delay: 0.5s;}
.sim7text4.fade-in-up.show {opacity: 1;transform: translateX(0);transition-delay: 0.6s;}
.sim7text5.fade-in-opac.show {opacity: 1;transform: translateX(0);transition-delay: 0.7s;}
.simBottom.fade-in-opac.show {opacity: 1;transform: translateX(0);transition-delay: 0.8s;}


