    @charset "utf-8";
    /* CSS Document */
    
    *,
    body {
        margin: 0;
        padding: 0;
    }
    
    html,
    body {
        /* font-size: 62.5%; */
		/* font-size: 100%; */
        color: #000000;
        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.index {
		background: url(./img/bg.png) no-repeat center bottom 2.5rem,linear-gradient(220deg, #7247FF 0%, #437EFF 100%) no-repeat left bottom;
		background-size: auto 32rem, 100% 12.5rem;
	}
    .main {
        width: 67.5%;
        margin: 0 auto;
        height: 100%;
	}
    
    .header {
        padding: 1.875rem 0;
		border-bottom: solid 0.0625rem #CCCCCC;
    }
    
    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(0,0,0,1);
        color: #fff;
        display: block;
        font-size: 1.5625rem;
        border-radius: 10px;
        padding: 0.625rem 1.5625rem;
    }
    .menu a:last-child {
        margin-left: 3rem;
    }
    .content {
        /* margin-top: 6.25rem; */
		text-align: center;
    }
    
   .content h3 {
        font-size: 4.5rem;
        line-height: 7rem;
        /* margin-bottom: 2rem; */
    }
    
    .content a {
        display: inline-block;
        width: 30rem;
        margin-top: 2.5rem;
    }
    
    body.agreement{
    	background: linear-gradient(220deg, #7247FF 0%, #437EFF 100%);
		background-attachment: fixed;
    }
    .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{
        color: #FFFFFF;
		text-decoration: underline;
     }
	.privacy a:hover{
        text-decoration: none;
    }
    
    @media screen and (max-width: 640px) {
        html,
        body {
            min-width: 100%;
        }
        nav {
            display: block;
            padding: 0 1rem;
        }
        .menu {
            margin-top: 1rem;
        }
        .privacy {
            padding: 5rem 3rem;
        }
    }