@charset "UTF-8";

/* ====================================
   TERMS OF SERVICE Page Styles
   ==================================== */

/* --- FV (Page Header) --- */
.terms-fv {
    position: relative;
    height: 50vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: 100px;
}

.terms-fv-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fv-title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fv-sub {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* --- Terms Content --- */
.terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-main);
    line-height: 2;
    font-size: 0.95rem;
}

.terms-intro {
    margin-bottom: 60px;
}

/* 各条項ブロック */
.terms-item {
    margin-bottom: 50px;
}

/* 見出し（第○条） */
.terms-head {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary); /* サイトカラー（ティファニーブルー） */
    border-bottom: 2px solid rgba(10, 186, 181, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.terms-item p {
    margin-bottom: 15px;
    text-align: justify;
    padding-left: 1.2em;
    text-indent: -1.2em; /* 数字付きの段落がきれいに揃うように調整 */
}

/* リストスタイル（禁止事項など） */
.terms-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 10px;
    background: #F2FAFA; /* 薄いティファニーブルー背景 */
    padding: 25px;
    border-radius: 8px;
}

.terms-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li::before {
    content: '✔'; /* チェックマーク */
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* 制定日 */
.terms-date {
    text-align: right;
    margin-top: 60px;
    font-size: 0.9rem;
    color: #888;
}

/* ====================================
   Responsive
   ==================================== */
@media (max-width: 768px) {
    /* FVの高さと余白を詰める */
    .terms-fv {
        height: 35vh;
        min-height: 250px;
        padding-top: 80px;
    }

    .fv-title {
        font-size: clamp(1.8rem, 11vw, 3rem);
    }

    /* コンテンツエリアの余白を詰める */
    .section {
        padding: 60px 0 !important;
    }

    .terms-wrapper {
        font-size: 0.9rem;
    }

    .terms-head {
        font-size: 1.1rem;
    }

    /* 各条項の間隔を詰める */
    .terms-item {
        margin-bottom: 30px;
    }

    .terms-intro {
        margin-bottom: 40px;
    }

    .terms-list {
        padding: 20px;
    }
}