    @charset "utf-8";
    /* CSS Document */
    
    *,
    body {
        margin: 0;
        padding: 0;
    }
    
    html,
    body {
        font-size: 75% !important;
		/* font-size: 100%; */
        color: #000;
        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;
    }
    
    ul,
    li {
        list-style: none;
    }
    
    .body {
        width: 100%;
        height: 100%;
		background: url(./img/bg.png) 100% 100% no-repeat;
	}
    
    .main {
        width: 67.5%;
        margin: 0 auto;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
		background: url(./img/image.png) center right no-repeat;
        background-size: 65% auto;
	}
    
    .header {
        padding: 1.875rem 0;
        width: 100%;
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 2.5rem;
        line-height: 3rem;
        font-weight: bold;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .logo img {
        margin-right: 1rem;
    }
    
    .menu {
        display: flex;
    }
    
    .menu a {
        color: #000;
        display: block;
        font-size: 1.6rem;
        text-decoration: underline;
        font-weight: bold;
        border-radius: 10px;
        padding: 0.625rem 1.5625rem;
		position: relative;
		overflow: hidden;
		transition: all 0.5s;
    }
	.menu a:hover{
		color: #6B7EFD;
	}
    .content {
        width: 35%;
    }
    
    .content p {
        font-size: 2.2rem;
        line-height: 3rem;
        word-break: break-all;
        word-wrap: break-word;
        word-break: normal;
    }
    
    .content a {
        display: block;
        width: 30rem;
        margin-top: 6rem;
    }
	.footer{
        width: 100%;
        text-align: center;
        color: #666666;
		font-size: 1.2rem;
        line-height: 2rem;
		margin-bottom: 4rem;
	}
    .footer a{
        color: #666666;
    }
    
    .sub-body {
        background: #fff;
    }
    
    .privacy {
        padding: 5rem;
        color: #333;
    }
    
    .privacy h1 {
        text-align: center;
        font-size: 2.5rem;
        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.5rem;
        line-height: 3rem;
        margin: 3rem 0 1rem;
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid #ccc;
    }
    
    .privacy h4 {
        color: #5cb1e6;
        font-size: 2rem;
        line-height: 2.6rem;
        margin: 2rem 0 1rem;
    }
    
    .privacy a {
        color: #5cb1e6;
    }
    .privacy ul{
        padding-left: 2rem;
    }
    .privacy ul li{
        font-size: 1.6rem;
        list-style: disc;
    }
    
   @media screen and (max-width: 1450px) {
        .logo{
            font-size: 1.8rem;
        }
        .menu a{
            font-size: 1.5rem;
        }
    }
    @media screen and (max-height: 850px) {
        .main{
            background-size: 50% auto;
        }
    }