

/* auth.css */

.auth-header {
    text-align: center;
    margin-bottom: 20px;
}

.mini-logo { height: 40px; margin-bottom: 10px; }

.auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.illustration-box {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}

.auth-message p {
    font-size: 1.1rem;
    color: #3c4043;
    font-weight: 500;
}

/* 規約ボタンの並び */
.policy-links {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.sub-button {
    text-decoration: none;
    color: #1A73E8;
    background: #f1f3f4;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.2s;
}

.sub-button:hover { background: #e8f0fe; }

.guide-text {
    font-size: 0.95rem;
    color: #5f6368;
    
    margin-bottom: 20px;
}

/* メインの認証ボタン */
.auth-main-button {
    display: inline-block;
    background: #1A73E8;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 60px;
    border-radius: 35px;
    font-size: 1.15rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    transition: all 0.2s ease;
}

.auth-main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.4);
}

/* 注意事項カード */
.info-card {
    margin-top: 50px;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    width: 100%;
    max-width: 600px;
    border: 1px solid #dadce0;
}

.info-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #202124;
    border-bottom: 1px solid #dadce0;
    padding-bottom: 10px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.info-list li {
    font-size: 0.9rem;
    color: #5f6368;
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
}

.title_text {
    font-size: 2.5rem;
    color: #1A73E8;
    margin: 0;
}

.info-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #1A73E8;
    font-weight: bold;
}

.note-text {
    font-size: 0.85rem;
    color: #EA4335;
    font-weight: bold;
    margin-top: 15px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .auth-main-button { width: 100%; text-align: center; box-sizing: border-box; }
    .policy-links { flex-direction: column; width: 100%; }
}


