@charset "utf-8";

/*====================
Article header
=====================*/
.container--privacypolicy {
    background-color: var(--primary-white);
}

.section--privacypolicy {
    display: flex;
    padding: 200px;
    flex-direction: column;
    align-items: center;
    gap: 200px;
    align-self: stretch;
    font-size: 1.6rem;
    line-height: 1.5;
}

/* タイトル */
.title__wrap--pp {
    display: flex;
    align-items: center;
    margin-top: 150px;
}

.title--pp-en {
    color: var(--primary-blue);
    text-align: start;
    font-family: "Cormorant Garamond";
    font-size: 9.6rem;
    font-weight: 500;
    line-height: 1.5;

    position: relative;

}

.title--pp-en::after {
    content: '';
    position: absolute;
    background: var(--primary-blue);
    width: 300px;
    height: 1px;
    rotate: -45deg;
    display: inline-block;
    bottom: 60px;
    right: -150px;
}

.title--pp-ja {
    font-family: "Zen Old Mincho";
    font-size: 3.6rem;
    margin-left: 40px;
}

.pp--list-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pp--list-tit {
    margin-bottom: 20px;
}

.pp--list {
    list-style: inside;
}

/* common sp(599px以下） */
@media screen and (max-width: 599px) {

    .section--privacypolicy {
        padding: 0 4.2% 100px;
        gap: 100px;
    }

    /* タイトル */
    .title__wrap--pp {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .title--pp-en {
        font-size: 4.8rem;
        position: relative;
    }

    .title--pp-en::after {
        content: '';
        position: absolute;
        width: 190px;
        bottom: 36px;
        right: 16px;
    }

    .title--pp-ja {
        font-size: 1.8rem;
        margin-left: 110px;
    }
}
/* sp 599px */