.page-title {
    font-size: 20px;
}

/* ポップアップのコンテナ */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /* Flexboxで中央寄せ */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ポップアップの内容 */
.modal-content {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #888;
    max-width: 400px;
    width: 90%;
    /* スマートフォン対応のため */
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeInScale 0.2s ease;
}

.modal-content-forgot-password {
    max-width: 500px;
}

.modal-content {
    /* フォーム要素を中央に配置 */
    padding: 40px 20px;
    /* フォーム要素を左に配置 */
    text-align: left;
}

.modal-input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    /* 角を少し丸くする */
    border-radius: 8px;
}

.modal-input-tel {
    width: 200px;
}

/* 開閉アニメーション */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 説明テキスト */
.message-text {
    text-align: center;
    line-height: 1.6;
}