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

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

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

.sec.privacy .ttl {
    display: inline-block;
    position: relative;
    margin-bottom: 70px;
    font-family: toppan-bunkyu-midashi-go-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;
}

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

.privacy-wrapper {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 0 20px;
    text-align: left;
}

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

.cnt {
    margin-bottom: 100px;
}

/* 見出し */
.cnt h3 {
    margin-bottom: 35px;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    color: #222;
}

.cnt h4 {
    margin: 70px 0 25px;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.6;
    color: #0065a1;
}

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

.cnt p {
    margin-bottom: 28px;
    font-size: 1.8rem;
    line-height: 1.9;
    color: #333;
    text-indent: 1em;
}

/* 強調文 */
.bold-center {
    margin-bottom: 35px;
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.8;
    text-align: center;
    text-indent: 0;
}

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

.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: 80px;
    padding: 40px;
    background-color: #f4f8f9;
    border-radius: 12px;
}

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

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

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

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

.btn-back {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 38px 85px 38px 170px;
    border-radius: 120px;
    background-color: #21a4dc;
    color: #ffffff;
    font-weight: bold;
    font-size: 2.4rem;
    font-family: "biz-udgothic", 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: 48px;
    transform: translateY(-50%);
    font-size: 3.2rem;
    content: "←";
    z-index: 2;
}

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

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


/* =========================
   Tablet
========================= */

@media (max-width: 1025px) {
    .sec.privacy {
        padding: 110px 0;
    }

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

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

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

    .cnt h3 {
        font-size: 2.6rem;
    }

    .cnt h4 {
        font-size: 2.2rem;
    }

    .bold-center {
        font-size: 2rem;
    }

    .btn-back {
        padding: 32px 70px 32px 145px;
        font-size: 2rem;
    }

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

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

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

/* =========================
   SP
========================= */

@media (max-width: 767px) {

    .sec.privacy {
        padding: 80px 0;
    }

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

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

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

    .privacy-wrapper {
        margin-bottom: 70px;
        padding: 0 15px;
    }

    .cnt {
        margin-bottom: 70px;
    }

    .cnt h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .cnt h4 {
        font-size: 1.8rem;
        margin: 45px 0 20px;
    }

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

    .bold-center {
        font-size: 1.6rem;
    }

    .personal-contact {
        padding: 25px;
    }

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

    .btn-back {
        padding: 24px 50px 24px 110px;
        font-size: 1.6rem;
    }

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

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

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

/* =========================
   文字アニメーション
========================= */
.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);
    }
}
