/* © 2026 PassQuest Team (https://passquest.jp). All rights reserved. 無断複製・転載・改変を禁じます。 */
/* =========================================================================
 * ios_zoom_fix.css — 入力欄をさわったときに画面が勝手に拡大するのを防ぐ
 *
 * 【何が起きていたか】
 * iPhone（iOS Safari／Chrome）は、文字の大きさが 16px 未満の入力欄を
 * さわると、読みやすくするために画面全体を勝手に拡大します。
 * そして、入力を終えても **拡大したまま戻りません**。
 * そのため、ログインのあとトップ画面に戻ると
 * 「ログイン」ボタンや言語ボタンが画面の外にはみ出して見えていました。
 * （指で縮めると直る、というのがこの症状の目印です）
 *
 * 【直し方】
 * 入力欄の文字を 16px にすると、この拡大は起きません。
 * 見た目は 14.4px → 16px のほんの少しだけ大きくなります。
 *
 * 【元に戻したいとき】
 * index.html からこのファイルの <link> の行を消すだけです。
 * ========================================================================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input:not([type]),
textarea,
select,
.login-input,
#email-input,
#password-input,
#name-input,
#fb-desc {
    font-size: 16px !important;
}
