@charset "UTF-8";
/* line 1, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal {
  /* 変数定義 */
  --bg-black: #000000;
  --electric-blue: #00a2ff;
  --glass-bg: rgba(15, 23, 42, 0.8);
  --text-muted: #94a3b8;
  --glow: 0 0 15px rgba(0, 162, 255, 0.5);
  /* レイアウト強制リセット */
  all: unset;
  display: block;
  background-color: var(--bg-black);
  min-height: 100vh;
  color: #fff;
  font-family: 'Inter', sans-serif;
  /* サイドバー */
  /* コンテンツ */
  /* カード設計 */
  /* テーブル */
  /* 固有パーツ */
}
/* line 17, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .wrapper {
  display: flex;
}
/* line 20, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar {
  width: 260px;
  height: 100vh;
  position: fixed;
  background: #050505;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 27, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar .sidebar-header {
  padding: 10px 10px;
}
/* line 29, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar .sidebar-header .logo-glow {
  filter: drop-shadow(0 0 10px var(--electric-blue));
  max-width: 240px;
}
/* line 32, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar ul.components {
  list-style: none;
  padding: 0;
}
/* line 36, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar ul.components li a {
  padding: 14px 25px;
  display: flex;
  color: var(--text-muted);
  text-decoration: none;
}
/* line 41, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar ul.components li a i {
  width: 30px;
}
/* line 42, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar ul.components li a:hover {
  background: rgba(0, 162, 255, 0.1);
  color: #fff;
}
/* line 44, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #sidebar ul.components li.active a {
  background: rgba(0, 162, 255, 0.15);
  color: #fff;
  border-left: 4px solid var(--electric-blue);
  text-shadow: 0 0 8px var(--electric-blue);
}
/* line 55, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #content {
  margin-left: 260px;
  padding: 50px;
  width: 100%;
}
/* line 60, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #content .top-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
/* line 64, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal #content .top-header h2 {
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 0 10px var(--electric-blue);
}
/* line 69, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* line 75, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .glass-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
/* line 82, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .glass-card .card-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}
/* line 83, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .glass-card .card-value {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 10px;
}
/* line 83, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .glass-card .card-value .unit {
  font-size: 1rem;
  color: var(--text-muted);
}
/* line 87, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .okurite-table {
  width: 100%;
  margin-top: 20px;
  border-spacing: 0;
}
/* line 91, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .okurite-table th {
  text-align: left;
  color: var(--text-muted);
  padding: 10px;
  font-size: 0.8rem;
}
/* line 92, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .okurite-table td {
  padding: 20px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 96, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .badge-electric {
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  padding: 4px 12px;
  border-radius: 4px;
}
/* line 97, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .custom-progress-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}
/* line 98, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .bar-electric {
  background: var(--electric-blue);
  height: 100%;
  box-shadow: var(--glow);
}

/* ===== Form UI (Settings用) ===== */
/* line 104, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal {
  /* フォーム全体 */
  /* 入力フィールド */
  /* フォーム間余白 */
  /* 区切り線 */
  /* ボタン */
  /* Logoutは少し危険操作として視覚差分 */
  /* Reset系リンク */
}
/* line 107, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .settings-section {
  max-width: 700px;
}
/* line 111, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .card-body {
  margin-top: 20px;
}
/* line 115, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal h6 {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* line 123, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
/* line 136, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .form-control::-moz-placeholder {
  color: rgba(148, 163, 184, 0.6);
}
#okurite-client-portal .form-control::placeholder {
  color: rgba(148, 163, 184, 0.6);
}
/* line 140, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .form-control:focus {
  border: 1px solid var(--electric-blue);
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.4);
  background: rgba(0, 162, 255, 0.05);
}
/* line 147, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .form-group {
  margin-top: 10px;
}
/* line 152, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 30px 0;
}
/* line 159, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .btn-electric-outline {
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  background: transparent;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* line 170, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .btn-electric-outline:hover {
  background: rgba(0, 162, 255, 0.1);
  box-shadow: var(--glow);
  color: #fff;
}
/* line 177, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal a[href*="sign_out"] {
  border-color: rgba(255, 80, 80, 0.6);
  color: rgba(255, 80, 80, 0.8);
}
/* line 182, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal a[href*="sign_out"]:hover {
  background: rgba(255, 80, 80, 0.1);
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.4);
  color: #ff8080;
}
/* line 189, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal a[href*="password"] {
  opacity: 0.9;
}
/* line 193, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal a[href*="password"]:hover {
  opacity: 1;
}

/*Client Trial Modal*/
/* Okurite Trial Modal - Electric Dark */
/* line 204, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(7, 10, 15, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999 !important;
  align-items: center;
  justify-content: center;
}
/* line 218, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay.is-visible {
  display: flex !important;
}
/* line 222, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-trial-card {
  background: #12151c;
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 28px;
  padding: 40px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 210, 255, 0.1);
  text-align: center;
  animation: okModalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* line 234, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-trial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  border-radius: 28px 28px 0 0;
}
/* line 243, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}
/* line 252, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}
/* line 259, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
/* line 266, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-btn-primary {
  display: block;
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  color: #fff !important;
  text-decoration: none;
  padding: 14px 0;
  width: 100%;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
  transition: all 0.3s ease;
}
/* line 279, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
  opacity: 0.9;
}
/* line 286, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-btn-close {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}
/* line 293, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.ok-trial-overlay .ok-btn-close:hover {
  color: #fff;
}

@keyframes okModalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
