@charset "UTF-8";

/* このサイトについて 	---------------------------------------*/

body #hero {
  padding: 1em 0 2em;
  background: url(../img/about/kv_bg.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

body #sitepolicy .section_inner {
    max-width: 980px;
}

/*コンテンツ*/

body.sitepolicy main {
    margin: 40px auto 120px;
    letter-spacing: 0.025em;
}

.aboutBlock {
    margin-bottom: 3em;
}

.aboutBlock a {
    border-bottom: 1px solid #000;
}

.aboutBlock a:hover {
    border-color: transparent;
    text-decoration: none;
}

.aboutBlock p,
.aboutBlock li {
    font-size: 16px;
}

.aboutBlock ul {
    counter-reset: number 0;
}

.aboutBlock li::before {
    counter-increment: number 1;
    content: counter(number)'.';
    display: inline-block;
    width: 1.75em;
}

.aboutBlock h3+p {
    margin-bottom: 3em;
}

.aboutDesc {
    font-size: 16px;
    margin-bottom: 3em;
    letter-spacing: -0.025em;
}

@media screen and (max-width: 960px) {
    /*コンテンツ*/
    body.sitepolicy {
        margin: 20px auto 10px;
        width: 90%;
    }
    .aboutBlock {
        margin-bottom: 3em;
    }
    .aboutBlock a {
        border-bottom: 1px solid #000;
    }
    .aboutBlock a:hover {
        border-color: transparent;
        text-decoration: none;
    }
    .aboutBlock p,
    .aboutBlock li {
        font-size: 14px;
    }
    .aboutBlock ul {
        counter-reset: number 0;
    }
    .aboutBlock li {
        padding-left: 2em;
        text-indent: -1em;
    }
    .aboutBlock li::before {
        counter-increment: number 1;
        content: counter(number)'.';
        display: inline-block;
        width: 1em;
    }
    .aboutBlock h3+p {
        margin-bottom: 2em;
    }
    .aboutDesc {
        font-size: 14px;
        margin-bottom: 2em;
    }
}