/* privacy.css */
@charset "utf-8";

/* ========================================================================== */
/* 見出し(heading) */
.heading-block {
    padding: 70px 0 0 70px;
}

.heading01 {
    position: relative;
    font-weight: normal;
    font-size: 5vw;
    letter-spacing: 0.1em;
    padding: 0 0 30px 0;
    line-height: 1;
}

.heading01 span {
    position: absolute;
}

.heading01 span.en {
    top: 1.7em;
    left: 2.4em;
    font-size: 3vw;
}

.heading01 span.jp {
    top: 7.7em;
    left: 5.2em;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2vw;
}

/* 見出しの文字間調整 */
#privacy .heading01 span.en {
    left: 2.4em;
}

#privacy .heading01 span.jp {
    left: 7em;
}

.heading01:first-letter {
    font-size: 12vw;
}

/* PRIVACY */
#privacy {
    position: relative;
    margin: 0 0 var(--space-3xl) 0;
}

.privacy-area {
    width: 80%;
    margin: 60px auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.privacy-area p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.privacy-area h3 {
    margin-top: 1.5em;
    line-height: 1.8;
}

.privacy-area ul {
    padding-left: 1.2em;
}

.privacy-area li {
    margin-bottom: 0.5em;
}

/* 右寄せテキスト */
.text-right {
    text-align: right;
    margin-top: 2em;
}

/* PCでは改行しない */
.line-break-sp {
    display: inline;
  }

/* プライバシー表レイアウト */
.privacy-table {
    display: table;
    width: 100%;
    margin-top: 1em;
}

.privacy-table .row {
    display: table-row;
}

.privacy-table .cell {
    display: table-cell;
    padding: 0.5em 0;
    vertical-align: top;
}

.privacy-table .label {
    width: 150px;
    font-weight: bold;
    padding-right: 1em;
    white-space: nowrap;
}

.privacy-table .value {
    width: auto;
}



/* scrollの共通処理 */

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.scrolled {
    opacity: 1;
    transform: translateY(0);
}

/* 
==========================================================================
レスポンシブ対応 - メディアクエリ
==========================================================================
*/

/* 960px以下の画面サイズ */
@media screen and (max-width: 960px) {
    .container {
        padding: 0 30px;
    }

    #privacy {
        margin: 0 0 var(--space-3xl) 0;
    }

    .heading01 {
        font-size: var(--text-base);
    }

    .heading01:first-letter {
        font-size: 8rem;
    }

    .heading01 span.en {
        font-size: var(--text-3xl);
    }

    .heading01 span.jp {
        font-size: var(--text-base);
        top: 6em;
    }

    #privacy {
        margin-top: var(--space-xxl);
    }

    .privacy-area {
        display: block;
    }
}

/* 768px以下の画面サイズ */
@media screen and (max-width: 768px) {

    #privacy {
        margin: 70px 0 40px 0;
    }

    .heading01:first-letter {
        font-size: 6rem;
    }

    .heading01 span.en {
        font-size: var(--text-xl);
    }

    .heading01 span.jp {
        font-size: var(--text-sm);
        top: 5.3em;
        left: 4.2em !important;
    }

    .privacy-area h3 {
        font-size: var(--text-xl);
    }

    .text-right {
        text-align: left;
    }

    .line-break-sp {
        display: block;
      }

    .privacy-table {
        display: block;
    }

    .privacy-table .row {
        display: block;
        margin-bottom: 1em;
    }

    .privacy-table .cell {
        display: block;
        width: 100%;
    }

    .privacy-table .label {
        font-weight: bold;
        margin-bottom: 0.3em;
    }

    .privacy-table .value {
        padding-left: 0;
    }

}

/* 550px以下の画面サイズ */
@media screen and (max-width: 550px) {
    .heading-block {
        padding: 0;
    }
}