/* ===== Karaoke Entry Terms Page ===== */

body {
    background-color: #f6dc9f;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.kterms_main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kterms_container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dab584;
    overflow: hidden;
}

.kterms_ellipse {
    position: absolute;
    width: 700px;
    height: 250px;
    background-color: #f6dc9f;
    border-radius: 50%;
    transform: rotate(135deg);
    filter: blur(60px);
    opacity: 0.7;
}

.kterms_content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    width: 100%;
    max-width: 820px;
    animation: ktermsFadeInUp 1s ease both;
}

@keyframes ktermsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kterms_label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26, 18, 7, 0.45);
    margin-bottom: 12px;
}

.kterms_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 36px;
    color: #1a1207;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    line-height: 1.3;
}

.kterms_subtitle {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(26, 18, 7, 0.7);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.kterms_divider {
    width: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    margin: 24px 0;
}

/* ===== Body ===== */

.kterms_body {
    width: 100%;
    text-align: left;
    padding: 8px 0;
}

.kterms_intro {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 15.5px;
    color: #333;
    line-height: 2;
    margin-bottom: 40px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.35);
    border-left: 3px solid rgba(139, 105, 20, 0.6);
    border-radius: 4px;
}

.kterms_body a {
    color: #8b6914;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.kterms_body a:hover {
    color: #6b5110;
}

/* ===== Sections ===== */

.kterms_section {
    margin-bottom: 36px;
}

.kterms_section h2 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1207;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.kterms_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #1a1207;
    color: #f6dc9f;
    border-radius: 50%;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
    flex-shrink: 0;
}

.kterms_section p,
.kterms_text {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    line-height: 2;
}

/* ===== List ===== */

.kterms_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kterms_list li {
    position: relative;
    padding: 10px 0 10px 24px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    line-height: 1.95;
}

.kterms_list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 105, 20, 0.55);
}

.kterms_list li + li {
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.kterms_list strong {
    color: #1a1207;
    font-weight: 700;
}

/* ===== Emphasized section (免責事項・規約の変更) ===== */

.kterms_section_emphasis {
    background: rgba(255, 255, 255, 0.4);
    padding: 24px 28px;
    border-radius: 8px;
    border: 1px solid rgba(139, 105, 20, 0.25);
}

.kterms_section_emphasis h2 {
    margin-top: 0;
}

/* ===== Contact box ===== */

.kterms_contact_box {
    margin-top: 18px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.kterms_contact_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1207;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.kterms_contact_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1207;
    text-decoration: none;
    background: #f6dc9f;
    border: 1.5px solid rgba(26, 18, 7, 0.6);
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.kterms_contact_link:hover {
    background: #1a1207;
    color: #f6dc9f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.kterms_arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.kterms_contact_link:hover .kterms_arrow {
    transform: translateX(3px);
}

/* ===== Back button ===== */

.kterms_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 28px;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1207;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.kterms_back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.back_arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.kterms_back:hover .back_arrow {
    transform: translateX(-3px);
}

.kterms_kujira {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 45%;
    max-width: 500px;
    object-fit: contain;
    opacity: 0.08;
    pointer-events: none;
}

/* ===== Responsive: PC ===== */

@media screen and (min-width: 1024px) {
    .kterms_ellipse {
        width: 1200px;
        height: 500px;
        filter: blur(80px);
    }

    .kterms_title {
        font-size: 48px;
    }

    .kterms_subtitle {
        font-size: 16px;
    }

    .kterms_section h2 {
        font-size: 22px;
    }

    .kterms_intro {
        font-size: 16px;
    }

    .kterms_kujira {
        width: 35%;
        opacity: 0.06;
    }
}

/* ===== Responsive: Tablet ===== */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .kterms_ellipse {
        width: 900px;
        height: 400px;
    }

    .kterms_title {
        font-size: 42px;
    }

    .kterms_kujira {
        width: 40%;
        opacity: 0.08;
    }
}

/* ===== Responsive: Small mobile ===== */

@media screen and (max-width: 400px) {
    .kterms_content {
        padding: 100px 18px 60px;
    }

    .kterms_title {
        font-size: 26px;
    }

    .kterms_subtitle {
        font-size: 12px;
    }

    .kterms_intro {
        font-size: 14px;
        padding: 18px 18px;
        line-height: 1.9;
    }

    .kterms_section h2 {
        font-size: 16px;
        gap: 8px;
    }

    .kterms_num {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .kterms_section p,
    .kterms_text,
    .kterms_list li {
        font-size: 13.5px;
        line-height: 1.9;
    }

    .kterms_section_emphasis {
        padding: 18px 18px;
    }

    .kterms_contact_box {
        padding: 18px 18px;
    }

    .kterms_contact_link {
        font-size: 13px;
        padding: 9px 18px;
    }

    .kterms_back {
        font-size: 13px;
        padding: 10px 22px;
    }
}
