/* .btn-primary: Match pricing page blue button */
.btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.5em 1.5em;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
}
/* ===== ナビゲーション レスポンシブ対応 ===== */
@media (max-width: 768px) {
  nav {
    overflow-x: auto;
    width: 100vw;
    min-width: 0;
    box-sizing: border-box;
  }
  nav > div:last-child {
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
  }
  nav a {
    font-size: 0.98rem;
    padding: 0 10px;
    min-width: 80px;
    box-sizing: border-box;
  }
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.login-outer {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.login-card {
  background: #fff;
  max-width: 400px;
  width: 100%;
  padding: 48px 32px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.login-title {
  font-size: 1.6rem;
  color: #0c4a6e;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}

.login-google-btn {
  width: 100%;
  height: 44px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background 0.2s, border 0.2s;
}
.login-google-btn:hover {
  background: #f7f7f7;
}

.login-divider-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 24px 0;
}
.login-divider-line {
  flex: 1;
  height: 1px;
  background: #eee;
  border: none;
}
.login-divider-text {
  margin: 0 12px;
  color: #888;
  font-size: 0.95rem;
  white-space: nowrap;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.login-label {
  color: #333;
  font-weight: 600;
  margin-bottom: 4px;
}
.login-input {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 0 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #fff;
}
.login-btn {
  width: 100%;
  height: 44px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.login-btn:hover {
  background: #1749b1;
}
.login-message {
  margin: 1rem 0;
  color: #e11d48;
  text-align: center;
}
.login-forgot {
  width: 100%;
  text-align: right;
  margin-top: 8px;
}
.login-forgot a {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.97rem;
}
.login-forgot a:hover {
  text-decoration: underline;
}
/* ===== Login Page Styles ===== */
.login-container {
  max-width: 420px;
  margin: 3rem auto 0 auto;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem 2rem 2rem;
}

.login-title {
  font-size: 2rem;
  color: #0c4a6e;
  margin-bottom: 1.2rem;
  text-align: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.login-label {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.login-input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 7px;
  border: 1px solid #ccc;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.login-btn {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.login-btn:hover {
  background: var(--primary-dark);
}

.login-divider {
  margin: 1.5rem 0;
  border-bottom: 1px solid #ddd;
}

.login-message {
  margin: 1rem 0;
  color: #e11d48;
  text-align: center;
}

.login-google-btn {
  width: 100%;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 7px;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1.2rem;
  transition: background 0.2s, border 0.2s;
}
.login-google-btn:hover {
  background: #f3f4f6;
  border: 1px solid #888;
}
/* Global styles for AI FAQ service landing pages */

:root {
  --primary-color: #f97316;
  --primary-dark: #ea580c;
  --secondary-color: #ec4899;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #fff5f0;
  --bg-white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-light);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
}
