/* =========================
   プライバシーポリシー
========================= */

.sec.privacy {
    margin: 0;
    padding: 60px 0 80px;
    background-color: #ffffff;
    text-align: center;
}

/* =========================
   タイトル
========================= */

.sec.privacy .ttl {
    display: inline-block;
    position: relative;
    margin-bottom: 48px;
    font-family: "dnp-shuei-gothic-kin-std", sans-serif;
}

.sec.privacy .ttl-j {
    position: relative;
    z-index: 1;
    color: #0065a1;
    font-size: 7rem;
    letter-spacing: .05em;
}

.sec.privacy .ttl-e {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    color: #f4f8f9;
    font-size: 17.5rem;
    line-height: .9;
    white-space: nowrap;
    font-family: toppan-bunkyu-midashi-go-std, sans-serif;
}

/* =========================
   ラッパー
========================= */

.privacy-wrapper {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto 64px;
    padding: 0;
    text-align: left;
}

/* =========================
   コンテンツ共通
========================= */

.cnt {
    margin-bottom: 64px;
}

/* 見出し */
.cnt h3 {
    margin: 0 0 28px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.55;
    text-align: center;
    color: #222;
}

.cnt h4 {
    margin: 56px 0 20px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.6;
    color: #0065a1;
}

/* =========================
   テキスト
========================= */

.cnt p {
    margin: 0 0 1.5em;
    font-size: 1.8rem;
    line-height: 1.85;
    color: #333;
    text-indent: 1em;
}

.cnt p:last-child {
    margin-bottom: 0;
}

/* 強調文 */
.bold-center {
    margin: 0 0 32px;
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.8;
    text-align: center;
    text-indent: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* =========================
   リスト
========================= */

.cnt ol {
    margin: 40px 0 0;
    padding-left: 2em;
    list-style: decimal;
}

.cnt ul {
    margin: 20px 0 35px;
    padding-left: 2em;
    list-style: disc;
}

.cnt li {
    margin-bottom: 22px;
    font-size: 1.8rem;
    line-height: 1.9;
}

.cnt li ul,
.cnt li ol {
    margin-top: 15px;
}

.cnt li p {
    margin-top: 12px;
    text-indent: 0;
}

/* =========================
   個人情報問い合わせ枠
========================= */

.personal-contact {
    margin-top: 56px;
    padding: 40px;
    background-color: #f4f8f9;
    border-radius: 12px;
}

.personal-contact h4 {
    margin: 0 0 16px;
    font-size: 2.2rem;
    color: #0065a1;
}

.personal-contact p {
    margin: 0 0 1em;
    font-size: 1.7rem;
    line-height: 1.8;
    text-indent: 0;
}

.personal-contact p:last-child {
    margin-bottom: 0;
}

/* =========================
   戻るボタン
========================= */

.back-link {
    margin-top: 64px;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 32px 80px 32px 160px;
    border-radius: 120px;
    background-color: #21a4dc;
    color: #ffffff;
    font-weight: bold;
    font-size: 2.2rem;
    font-family: "dnp-shuei-gothic-kin-std", sans-serif;
    cursor: pointer;
    transition: transform .3s ease;
    overflow: hidden;
}

.btn-back a {
    position: relative;
    z-index: 3;
    color: inherit;
    text-decoration: none;
}

/* 円SVG */
.back-circle {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 85px;
    height: 85px;
    z-index: 1;
    pointer-events: none;
}

.back-circle svg {
    width: 100%;
    height: 100%;
    animation: back-spin 15s linear infinite;
}

.back-circle text {
  font-size: 9px;
  letter-spacing: 0;
  font-weight: 700;
  fill: #fff;
}

/* ← 矢印 */
.btn-back::after {
    position: absolute;
    top: 50%;
    left: 44px;
    transform: translateY(-50%);
    font-size: 3rem;
    content: "←";
    z-index: 2;
}

/* hover */
@media (min-width: 1026px) {
    .btn-back:hover {
        transform: translateY(-6px);
    }
}

/* 回転 */
@keyframes back-spin {
    to {
        transform: rotate(-360deg);
    }
}


/* =========================
   Tablet (768〜1025px)
========================= */

@media (max-width: 1025px) and (min-width: 768px) {
    .sec.privacy {
        padding: 48px 0 64px;
    }

    .sec.privacy .ttl {
        margin-bottom: 40px;
    }

    .sec.privacy .ttl-j {
        font-size: 5rem;
    }

    .sec.privacy .ttl-e {
        font-size: 12rem;
    }

    .privacy-wrapper {
        width: 90%;
        margin-bottom: 56px;
    }

    .cnt {
        margin-bottom: 56px;
    }

    .cnt h3 {
        font-size: 2.8rem;
        margin-bottom: 24px;
    }

    .cnt h4 {
        margin: 48px 0 18px;
        font-size: 2.2rem;
    }

    .bold-center {
        font-size: 1.9rem;
        margin-bottom: 28px;
        line-height: 1.8;
        max-width: 100%;
    }

    .cnt p,
    .cnt li {
        font-size: 1.7rem;
    }

    .personal-contact {
        margin-top: 48px;
        padding: 36px;
    }

    .personal-contact h4 {
        font-size: 2rem;
    }

    .personal-contact p {
        font-size: 1.6rem;
    }

    .back-link {
        margin-top: 52px;
    }

    .btn-back {
        padding: 28px 72px 28px 148px;
        font-size: 2rem;
    }

    .back-circle {
        width: 72px;
        height: 72px;
        left: 7%;
    }

    .back-circle text {
        font-size: 8px;
    }

    .btn-back::after {
        font-size: 2.8rem;
        left: 36px;
    }
}

/* =========================
   Mobile (~767px) - タブレットの見た目に近づける
========================= */

@media (max-width: 767px) {
    .sec.privacy {
        padding: 40px 0 56px;
    }

    .sec.privacy .ttl {
        margin-bottom: 32px;
    }

    .sec.privacy .ttl-j {
        font-size: 3.4rem;
    }

    .sec.privacy .ttl-e {
        top: 40%;
        font-size: 9rem;
    }

    .privacy-wrapper {
        width: 92%;
        margin-bottom: 48px;
        padding: 0;
    }

    .cnt {
        margin-bottom: 48px;
    }

    .cnt h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .cnt h4 {
        font-size: 2rem;
        margin: 40px 0 16px;
        line-height: 1.55;
    }

    .cnt p,
    .cnt li {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .bold-center {
        font-size: 1.5rem;
        margin-bottom: 24px;
        line-height: 1.8;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 4px;
    }

    .personal-contact {
        margin-top: 40px;
        padding: 32px 24px;
    }

    .personal-contact h4 {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }

    .personal-contact p {
        font-size: 1.55rem;
    }

    .back-link {
        margin-top: 48px;
    }

    .btn-back {
        padding: 24px 40px 24px 100px;
        font-size: 1.8rem;
    }

    /* 円SVG */
    .back-circle {
        width: 58px;
        height: 58px;
        left: 6%;
    }

    .back-circle text {
        font-size: 7px;
    }

    /* ← 矢印 */
    .btn-back::after {
        font-size: 2.4rem;
        left: 22px;
    }
}

/* =========================
   文字アニメーション
========================= */
.js-split-text,
.js-split-text * {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}

.js-split-text .char {
    display: inline;
    overflow: hidden;
}

.js-split-text .char-move,
.js-split-text .char-inner {
    opacity: 0;
    transform: translateY(120%);
    color: inherit;
    font: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0;
    text-shadow: inherit;
    vertical-align: bottom;
}

.js-split-text {
    visibility: hidden;
}

.sec.is-active .js-split-text {
    visibility: visible;
}

.sec.is-active h1 .char-move,
.sec.is-active h2 .char-move,
.sec.is-active h3 .char-move,
.sec.is-active span .char-move,
.js-split-section.is-active .char-inner {
    animation: riseUp .6s ease forwards;
}

.sec.is-active p .char-move {
    animation: riseUp .4s ease forwards;
}

@keyframes riseUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
