@charset "UTF-8";

html {
    font-size: 100%;
}
* {
    padding: 0;
    margin: 0;
}

.img {
    max-width: 100%;
}

body {
    background-color: #f0f0f0;
    color: #333;
}



/*--ヘッダー--*/

.header-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
}

.header-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-left: 100px;
}

.header-list {
    display: flex;
    list-style: none;
}

.header-list li a {
    text-decoration: none;
    color: #333;
}

.header-list li {
    margin-right: 100px;
}

/*----プライバシー--*/


#privacy {
    padding-top: 70px;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

.privacy-inner {
    background-color: #fff;
    border-radius: 24px;
    margin-bottom: 130px;
    padding: 30px;
}

.privacy-title {
    margin-bottom: 50px;
}

.privacy-title h2 {
    margin-bottom: 20px;
}

.label {
    font-weight: 700;
    margin-bottom: 15px;
}
.title {
    margin-bottom: 30px;
}


.privacy-title {
    text-align: center;
}

.title2 {
    margin-bottom: 30px;
}


/*--フッター--*/

.footer {
    background-color:rgba(29, 58, 80, 0.9);
}

.footer-list {
    color: #fff;
    display: flex;
    list-style: none;
    padding: 20px 0;
    justify-content: center;
    font-size: 15px;
}

.footer-list li {
    margin-left: 50px;
}

.footer-list li a {
    text-decoration: none;
    color: #fff;
}



@media  only screen and (max-width: 960px) {

    .header-list{
        display: flex;
    }

    .header-inner{
        width: 100%;
        display: block;
    }

    .header-list li{
        margin: 0 auto;
    }

    .header-logo {
        font-size: 20px;
    }


    

    .footer-list li{
        margin-left: 10px;
    }
}