﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: #f5f5f5;
    color: #2c2c2c;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.avatar-box {
    margin: 20px 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-box {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
    max-width: 600px;
    width: 90%;
    word-break: break-all;
}

.text-box h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.text-box p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.9;
    text-align: justify;
}

.benefit-list {
    background: #fff;
    border-radius: 8px;
    padding: 1.5em;
    margin: 1.5em 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.benefit-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0.8em;
}

.emphasis {
    font-size: 1.2em;
    font-weight: bold;
    color: #e60012;
    text-align: center;
    margin: 1.5em 0;
}

.highlight {
    color: #e60012;
    font-weight: bold;
}

.btn {
    display: block;
    width: 90%;
    max-width: 600px;
    margin: 12px auto;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    background-color: #06c755;
    color: #111;
    border: 2px solid #06c755;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover,
.btn:active {
    background-color: #05b44d;
    color: #fff;
    border-color: #05b44d;
}

.btn span {
    font-size: 0.7em;
    opacity: 0.8;
}

.banner-box {
    width: 90%;
    max-width: 600px;
    margin: 10px 0;
}

.banner-box img {
    width: 100%;
    border-radius: 10px;
}

.btn-fixed {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #06c755;
    color: #111;
    border: 2px solid #06c755;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    animation: float 2s ease-in-out infinite;
}

.btn-fixed:hover,
.btn-fixed:active {
    background-color: #05b44d;
    color: #fff;
    border-color: #05b44d;
}

.btn-fixed img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-fixed span div:first-child {
    font-size: 1em;
}

.btn-fixed span div:last-child {
    font-size: 0.7em;
    opacity: 0.8;
}

.privacy-link {
    font-size: 16px;
    color: #000;
    margin: 2rem 0 100px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

.policy-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .text-box h1 {
        font-size: 24px;
    }

    .text-box p {
        font-size: 16px;
    }

    .btn,
    .btn-fixed {
        font-size: 16px;
        padding: 10px;
    }

    .btn-fixed img {
        width: 44px;
        height: 44px;
    }
}

@keyframes float {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}