@charset "UTF-8";

.headline {
    background: #ee637b;
    padding-bottom: 15px;
}
h2 {
    font-size: 33px;
    letter-spacing: 0.15em;
    color: #fff;
    font-weight: 900;
    line-height: 95px;
    border-bottom: 1px solid #fff;
    text-align: center;
}
@media screen and (max-width: 640px) {
    h2 {
        font-size: 24px;
        line-height: 60px;
    }
}
/*-----------------------------------

    privacy

-----------------------------------*/
#privacy.contents_inner {
    padding: 60px 0;
    counter-reset: privacy;
}
.privacy_box {
    padding: 2em;
}
.privacy_box:nth-of-type(2n) {
    background: #f0eaea;
}
.privacy_box h3 {
    font-size: 24px;
    letter-spacing: 0.15em;
    font-weight: 900;
    border-bottom: 3px solid #ee637b;
    display: inline-block;
    padding-bottom: 0.3em;
    margin-bottom: 0.5em;
    counter-increment: privacy;
}
.privacy_box h3::before{
    content: counter(privacy) ".";
}
.privacy_box p{
    margin-bottom: 1em;
}
.privacy_box ol{
    margin-bottom: 1em;
}
.privacy_box ol li {
    counter-increment: number;
    list-style-position: inside;
    padding-left: 2em;
    position: relative;
}
.privacy_box ol li::before {
    position: absolute;
    content: counter(number);
    background: #ee637b;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    color: #fff;
    top: 2px;
    left: 0;
    text-align: center;
    line-height: 1.5em;
}
.privacy_box .detail {
    background: #fff;
    display: inline-block;
    padding: 0.5em 1em;
    margin-top: 1em;
    border: 1px solid #ee637b;
}
.privacy_box .detail .cm {
    display: block;
    margin-bottom: 5px;
}
.company {
    font-size: 18px;
    text-align: right;
    margin-bottom: 10px;
}
.date {
    text-align: right;
    margin-top: 10px;
}
.link {
    display: block;
    color: #ee637b !important;
    text-decoration: underline !important;
}
@media screen and (max-width: 640px) {
    #privacy.contents_inner {
        padding: 30px 0;
    }
    .privacy_box {
        padding: 2em 1em;
    }
    .privacy_box h3 {
        font-size: 20px;
        letter-spacing: 0.05em;
    }
    .company {
        font-size: 16px;
    }
}
