@charset "utf-8";

.privacy_content{
    width: 55%;
    height: 70%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 60px 50px;
}

.privacy_content> a{
    position: fixed;
    top: 30px;
    right: 35px;
    font-size: 0;
    width: 40px;
    height: 40px;
}
.privacy_content > a::before{
    content: "";
    width: 4px;
    height: 40px;
    background: var(--red01);
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}
.privacy_content > a::after{
    content: "";
    width: 4px;
    height: 40px;
    background: var(--red01);
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
}
.privacy_content > div{
    margin-top:40px;
    color: #515151;
    font-size: 15px;
    line-height: 1.7;
}
.privacy_content h4{
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--red01);
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
	font-weight: var(--fw-700);
}
.privacy_content p{
    color: #777;
    line-height: 1.7;
    font-size: 18px;
	word-break: keep-all;
}
.privacy_content > p{
    margin-top: 20px;
}

.privacy_content h5{
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
	font-weight: var(--fw-600);
}
.privacy_content dl{
    margin-top: 10px;
    margin-bottom: 5px;
}
.privacy_content dl dt{
    color: #515151;
    line-height: 1.7;
    font-weight: bold;
    font-size: 15px;
    /* margin-bottom: 5px; */
}
.privacy_content dl dd{
    color: #777;
    line-height: 1.7;
    padding-left: 10px;
    font-size: 18px;
	word-break: keep-all;
}


@media screen and (max-width: 1300px){
	.privacy_content{
		width: 85%;
	}
}

/* mobile */
@media screen and (max-width: 900px){
    .privacy_content{
        width: 100%;
        height: 100%;
        padding: 30px 30px;
    }
    .privacy_content h4{
        font-size: 19px;
        padding-bottom: 12px;
    }
    .privacy_content > p {
        margin-top: 12px;
    }
    .privacy_content p{
        font-size: 13px;
    }
    .privacy_content > div{
        margin-top: 25px;
        font-size: 13px;
    }
    .privacy_content h5{
        font-size: 15px;
    }
    .privacy_content dl dt{
        font-size: 13px;
    }
    .privacy_content dl dd{
        padding-left: 15px;
        font-size: 13px;
    }

    .privacy_content> a {
        top: 30px;
        right: 15px;
        width: 25px;
        height: 25px;
    }
    .privacy_content > a::before {
        width: 2px;
        height: 25px;
    }
    .privacy_content > a::after {
        width: 2px;
        height: 25px;
    }
}