    @charset "utf-8";
    /* CSS Document */
    
    *,
    body {
        margin: 0;
        padding: 0;
    }
    
    html,
    body {
        /* font-size: 62.5%; */
		/* font-size: 100%; */
        color: #FFFFFF;
        width: 100%;
        height: 100%;
        /* min-width: 640px; */
        font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
    }
    
    a {
        text-decoration: none;
		color: #6B7EFD;
    }
    
/*    a:hover {
        text-decoration: underline;
    } */
    
    ul,
    li {
        list-style: none;
    }
    
    body {
		background: linear-gradient(225deg, #97A7FD 0%, #47E1CC 100%) no-repeat;
		background-attachment:fixed;
	}
    
    .main {
        width: 67.5%;
        margin: 0 auto;
        height: 100%;
		background: url(img/bg1.png) no-repeat right bottom, url(img/bg2.png) no-repeat right -130px top 70px;
	}
    
    .header {
        padding: 1.875rem 0;
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.75rem;
        line-height: 3rem;
        font-weight: bold;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .logo img {
        margin-right: 1rem;
    }
    
    .menu {
        display: flex;
    }
    
    .menu a {
        background: rgba(255,255,255,0.25);
        color: #fff;
        display: block;
        font-size: 1.5625rem;
        border-radius: 10px;
        /* line-height: 3.125rem; */
        padding: 0.625rem 1.5625rem;
		position: relative;
		overflow: hidden;
		transition: all 0.5s;
    }
	.menu a:hover{
		color: #6B7EFD;
	}
    .menu a:last-child {
        margin-left: 3rem;
    }
    
    .menu a::before{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 50px;
		height: 100%;
		background-color: #FFFFFF;
		transform: skew(45deg) translateX(300px);
		transition: all 0.5s;
	}
	.menu a:hover::before{
		transform: skew(45deg) translateX(-300px);
	}
    .content {
        margin-top: 6.25rem;
    }
    
    .content h3 {
        font-size: 4.5rem;
        line-height: 7rem;
        margin-bottom: 2rem;
    }
    
    .content p {
        font-size: 2.25rem;
        line-height: 5rem;
        word-break: break-all;
        word-wrap: break-word;
        word-break: normal;
    }
    
    .content a {
        display: block;
        width: 30rem;
        margin-top: 6rem;
    }
	.footer{
		font-size: 1.5rem;
		margin-top: 4.375rem;
	}
    
    .sub-body {
        background: #fff;
    }
    
    .privacy {
        padding: 5rem;
        color: #FFFFFF;
    }
    
    .privacy h1 {
        text-align: center;
        font-size: 3rem;
        line-height: 6rem;
        margin-bottom: 2rem;
    }
    
    .privacy p {
        font-size: 1.6rem;
        line-height: 3.2rem;
        margin-top: 1rem;
    }
    
    .privacy li {
        margin-top: 2rem;
    }
    
    .privacy h3 {
        font-size: 2.4rem;
        line-height: 3rem;
        margin: 3rem 0 1rem;
    }
    
    .privacy h4 {
        font-size: 2rem;
        line-height: 2.6rem;
        margin: 2rem 0 1rem;
    }
    
   .privacy a:hover{
        text-decoration: underline;
    }
    
   @media screen and (max-width: 640px) {
        html,
        body {
			font-size: 62.5%;
            min-width: 100%;
			word-break:break-word;
			background: #FFFFFF;
        }
        nav {
            display: block;
            padding: 0 1rem;
        }
        .menu {
            margin-top: 1rem;
        }
        .privacy {
            padding: 5rem 2rem;
			color: #000000;
        }
    }