@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: 20px 0;
  width: 100%;
  border-radius: 50px;
  font-weight: 600;
  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);
  }
}
/* フローティング・コンタクト全体の親 */
/* line 305, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.floating-contact {
  z-index: 1000;
}

/* ダッシュボードモード専用のデザイン */
/* line 310, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode {
  background: rgba(15, 23, 42, 0.85) !important;
  /* 深い紺色 */
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15) !important;
  border-radius: 12px !important;
  /* 少し角を落とす */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  padding: 12px 18px !important;
  /* アイコン部分：ネオン発光 */
  /* テキスト部分 */
  /* ホバーアクション */
}
/* line 321, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode .icon-container .dashboard-icon {
  font-size: 1.2rem;
  color: #38bdf8;
  filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.8));
}
/* line 329, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode .text-container {
  margin-left: 12px;
}
/* line 332, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode .text-container .main-text {
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  /* シグナル部分：アニメーション付き */
}
/* line 341, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode .text-container .main-text .fa-angle-double-right {
  color: #38bdf8;
  font-size: 0.75rem;
  margin-left: 8px;
  opacity: 0.7;
}
/* line 349, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode .text-container .sub-text {
  color: rgba(148, 163, 184, 0.8);
  /* グレーアウト */
  font-size: 0.7rem;
  font-weight: 500;
}
/* line 357, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode:hover {
  background: rgba(56, 189, 248, 0.1) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4) !important;
  transform: translateY(-3px) scale(1.02);
}
/* line 363, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode:hover .dashboard-icon {
  transform: rotate(90deg);
  transition: transform 0.4s ease;
}
/* line 368, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contact-box.dashboard-mode:hover .fa-angle-double-right {
  opacity: 1;
  animation: signal-bounce 0.8s infinite;
}

/* シグナルの跳ねるような動き */
@keyframes signal-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
/* line 393, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form-wrapper {
  padding: 40px;
  background: var(--bg-black);
  color: #fff;
  min-height: 100vh;
}
/* line 399, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form {
  max-width: 800px;
  margin: 0 auto;
}
/* line 402, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form h2 {
  margin-bottom: 30px;
  font-weight: 800;
  color: var(--electric-blue);
}
/* line 404, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form table {
  width: 100%;
  border-collapse: collapse;
}
/* line 405, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form th {
  padding: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: left;
}
/* line 406, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form td {
  padding: 10px;
}
/* line 408, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form .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;
  color: #fff;
}
/* line 415, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form .form-control:focus {
  border-color: var(--electric-blue);
  outline: none;
}
/* line 418, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form .btn-submit {
  background: var(--electric-blue);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  margin-top: 20px;
}

/* ===== Legal Pages (Privacy & Law) Additional Styles ===== */
/* line 443, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .plain-form-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}
/* line 449, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-container {
  max-width: 800px;
  width: 100%;
}
/* line 454, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-card {
  background: var(--glass-bg);
  border: 1px solid rgba(0, 162, 255, 0.3);
  border-radius: 24px;
  padding: 60px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
/* line 463, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-header {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  text-shadow: var(--glow);
}
/* line 472, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-body {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
}
/* line 477, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-body section {
  margin-top: 40px;
}
/* line 479, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-body section:first-child {
  margin-top: 0;
}
/* line 482, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-body h3 {
  color: var(--electric-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  padding-bottom: 10px;
}
/* line 491, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
}
/* line 498, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-table th {
  padding: 20px 0;
  width: 40%;
  text-align: left;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 506, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-table td {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 512, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .policy-footer {
  margin-top: 60px;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* line 519, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
/* line 525, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-card {
  background: var(--glass-bg);
  border: 1px solid rgba(0, 162, 255, 0.3);
  border-radius: 24px;
  padding: 60px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
/* line 534, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-header {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  text-shadow: var(--glow);
}
/* line 543, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-body {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1rem;
}
/* line 548, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-body section {
  margin-top: 40px;
}
/* line 550, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-body section:first-child {
  margin-top: 0;
}
/* line 553, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .terms-body h3 {
  color: var(--electric-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  padding-bottom: 10px;
}

/* line 565, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.mini-rate {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #7dd3fc;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* line 578, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-page {
  width: 100%;
  padding: 42px 0 80px;
}

/* line 583, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-container {
  width: 85%;
  margin: 0 auto;
}

/* line 588, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-header {
  margin-bottom: 26px;
  text-align: center;
}

/* line 593, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.7), 0 0 25px rgba(59, 130, 246, 0.45);
}

/* line 604, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-subtitle {
  margin: 0;
  color: #93c5fd;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 612, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.96));
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 30px rgba(59, 130, 246, 0.16), 0 0 60px rgba(37, 99, 235, 0.12), 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* line 631, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(96, 165, 250, 0.06), transparent 35%, transparent 65%, rgba(59, 130, 246, 0.05));
  pointer-events: none;
}

/* line 646, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-card__body {
  position: relative;
  z-index: 1;
}

/* line 651, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table-wrap {
  overflow-x: auto;
}

/* line 655, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

/* line 661, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table thead {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
}

/* line 670, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table th {
  padding: 20px 24px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(96, 165, 250, 0.15);
  white-space: nowrap;
}

/* line 681, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

/* line 687, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table tbody tr {
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* line 694, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.management-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.06);
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.06);
  transform: translateY(-1px);
}

/* line 703, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.client-id {
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
}

/* line 709, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.client-email {
  color: #e0f2fe;
  font-weight: 500;
}

/* line 714, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.contract-date {
  color: #cbd5e1;
  font-size: 14px;
}

/* line 719, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.price-text {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* line 725, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.empty-text {
  color: #64748b;
}

/* その月の送信実数表示のスタイルを追加 */
/* line 730, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.monthly-sends-text {
  color: #38bdf8;
  font-weight: 700;
  font-size: 14px;
}

/* line 736, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.monthly-sends-text .small {
  color: #64748b;
  font-weight: 500;
  font-size: 12px;
}

/* line 742, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.plan-badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* line 756, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.plan-trial {
  color: #dbeafe;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(203, 213, 225, 0.18);
  box-shadow: 0 0 12px rgba(203, 213, 225, 0.12);
}

/* line 765, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.plan-starter {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.18);
}

/* line 774, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.plan-standard {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.26);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.22);
}

/* line 783, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.plan-pro {
  color: #ffffff;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(125, 211, 252, 0.34);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.24);
}

/* 【新規追加】エンタープライズプラン（高貴なパープルネオンで視認性を確保） */
/* line 793, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.plan-enterprise {
  color: #f3e8ff;
  background: rgba(168, 85, 247, 0.16);
  border: 1px solid rgba(216, 180, 254, 0.35);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.26);
}

/* line 802, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.status-active {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.2);
}

/* line 811, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.status-cancelled {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* line 817, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
.status-paused {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

@media (max-width: 1200px) {
  /* line 824, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
  .management-container {
    width: 92%;
  }
}
@media (max-width: 768px) {
  /* line 830, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
  .management-page {
    padding-top: 24px;
  }

  /* line 834, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
  .management-container {
    width: 96%;
  }

  /* line 838, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
  .management-title {
    font-size: 28px;
  }

  /* line 842, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
  .management-table th,
  .management-table td {
    padding: 16px;
  }
}
/* line 849, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal {
  /* コンテンツを画面中央にロックするコンテナ */
  /* タイトルエリアの中央配置 */
  /* サブタイトルの中央寄せ */
  /* セクション全体の幅固定解除 */
  /* リンク要素をブロック化して100%化 */
  /* カード類のホバーエフェクト */
  /* フローコンテナ */
  /* カード本体 */
  /* ホバー時にカードを僅かに右へシフト */
  /* 左側のステップバッジ */
  /* コンテンツ */
  /* 解説文内のstrong強調 */
  /* 下部メタ情報 */
  /* バッジ下に伸びる垂直線 */
  /* 警告テキスト */
  /* ユーティリティマージン */
}
/* line 852, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-container {
  max-width: 800px;
  margin: 0 auto !important;
  width: 100%;
}
/* line 859, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-header-group,
#okurite-client-portal .howto-header-center-group {
  text-align: center !important;
  margin-bottom: 40px;
}
/* line 863, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-header-group h2,
#okurite-client-portal .howto-header-center-group h2 {
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 0 10px var(--electric-blue);
  margin: 0 0 10px 0;
}
/* line 872, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-subtitle-center {
  margin: 0 !important;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center !important;
}
/* line 883, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-section {
  width: 100%;
}
/* line 888, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .glass-card-link,
#okurite-client-portal .flow-step-link {
  text-decoration: none !important;
  display: block;
  color: inherit;
  width: 100%;
}
/* line 897, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .hover-glow {
  transition: all 0.3s ease;
  width: 100%;
}
/* line 900, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .hover-glow:hover {
  border-color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 162, 255, 0.15);
  transform: translateY(-2px);
}
/* line 908, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-steps-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}
/* line 917, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-step-card {
  display: flex;
  align-items: flex-start;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 162, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
}
/* line 930, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-step-link:hover .flow-step-card {
  border-color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 162, 255, 0.15);
  transform: translateX(5px);
}
/* line 937, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .step-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-right: 25px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  text-align: center;
  min-width: 85px;
}
/* line 952, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .step-badge.badge-highlight {
  background: rgba(0, 162, 255, 0.1);
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  text-shadow: var(--glow);
}
/* line 961, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-step-content {
  flex: 1;
}
/* line 963, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}
/* line 972, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 15px 0;
}
/* line 978, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-description strong {
  color: #fff;
  font-weight: 600;
  background: rgba(0, 162, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 2px;
}
/* line 989, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* line 993, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-meta .meta-text {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.6);
}
/* line 1000, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .flow-connector-line {
  width: 2px;
  height: 25px;
  background: linear-gradient(to bottom, var(--electric-blue), rgba(0, 162, 255, 0.1));
  margin-left: 72px;
  opacity: 0.6;
}
/* line 1009, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .text-warning {
  color: #fde68a !important;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}
/* line 1015, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .margin-bottom-30 {
  margin-bottom: 30px;
}
/* line 1016, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .margin-top-40 {
  margin-top: 40px;
}
/* line 1017, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .margin-top-10 {
  margin-top: 10px;
}
/* line 1018, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .margin-right-5 {
  margin-right: 5px;
}

/* line 1024, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal {
  /* ヘッダー右側をインラインで整列 */
  /* 独立したHowToボタンのデザイン定義 */
  /* 既存バッジのフレックス干渉防止 */
}
/* line 1027, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .user-meta {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  /* ボタンとバッジの間の綺麗な余白 */
}
/* line 1034, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-header-btn {
  all: unset !important;
  /* 既存の干渉をすべて初期化 */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--electric-blue) !important;
  color: var(--electric-blue) !important;
  background: rgba(0, 162, 255, 0.05) !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
  /* 既存のbadge-electricと角丸を統一 */
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  /* 下線を完全に消去 */
  box-sizing: border-box !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  /* アイコンの幅固定を解除 */
  /* ホバー時のネオンエフェクト */
}
/* line 1053, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-header-btn i {
  width: auto !important;
  margin-right: 5px !important;
}
/* line 1059, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .howto-header-btn:hover {
  background: rgba(0, 162, 255, 0.15) !important;
  box-shadow: var(--glow) !important;
  color: #ffffff !important;
  text-shadow: 0 0 8px var(--electric-blue) !important;
}
/* line 1068, /opt/webroot/okurite/app/assets/stylesheets/client.scss */
#okurite-client-portal .badge-electric {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
@charset "UTF-8";
/* このファイル内、または style タグ内に記述 */
/* line 7, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-container {
  padding: 20px;
  background-color: #f9fbff;
  /* 画面全体の背景を少し変えて特別感を出す */
  font-family: sans-serif;
}

/* カードスタイル */
/* line 14, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  padding: 20px;
  border-left: 5px solid #eee;
}

/* line 23, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-card:nth-of-type(1) {
  border-left-color: #764ba2;
}

/* AI抽出 */
/* line 24, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-card:nth-of-type(2) {
  border-left-color: #2193b0;
}

/* SERP補完 */
/* line 26, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* line 32, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-icon-purple {
  color: #764ba2;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* line 33, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-icon-blue {
  color: #2193b0;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* line 35, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-headline {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  color: #333;
}

/* スタッツ */
/* line 43, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-stats {
  margin-bottom: 20px;
}

/* line 46, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-label {
  font-size: 0.8rem;
  color: #777;
  margin-right: 10px;
}

/* line 47, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-count {
  font-size: 1.4rem;
  color: #333;
}

/* line 48, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-subtext {
  font-size: 0.75rem;
  color: #999;
  margin-left: 8px;
}

/* ボタン（専用） */
/* line 51, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

/* line 62, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-btn-primary {
  background: #764ba2;
  color: white;
}

/* line 63, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-btn-secondary {
  background: #2193b0;
  color: white;
}

/* line 64, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* line 65, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

/* ===== Okurite Flash Notification System ===== */
/* line 73, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.app-flash-container {
  padding: 20px 0 0 0;
  background: transparent;
  /* 親の背景黒をそのまま活かす */
}

/* line 78, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.app-flash {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 15px auto;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: flashFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

/* Notice: 深みのあるエレクトリックブルーの透過ブレンドと発光 */
/* line 95, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.app-flash-notice {
  background: linear-gradient(135deg, rgba(0, 162, 255, 0.2) 0%, rgba(0, 80, 255, 0.15) 100%);
  border: 1px solid rgba(0, 162, 255, 0.5);
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 162, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 162, 255, 0.25), inset 0 0 15px rgba(0, 162, 255, 0.1);
}

/* Alert: 危険・警告操作用のレッド透過ブレンドと発光 */
/* line 106, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.app-flash-alert {
  background: linear-gradient(135deg, rgba(255, 80, 80, 0.2) 0%, rgba(200, 40, 40, 0.15) 100%);
  border: 1px solid rgba(255, 80, 80, 0.5);
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 80, 80, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 80, 80, 0.25), inset 0 0 15px rgba(255, 80, 80, 0.1);
}

/* フェードインアニメーション */
@keyframes flashFadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* レスポンシブ対応: 画面幅1240px以下で左右に綺麗なマージンをキープ */
@media (max-width: 1240px) {
  /* line 130, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
  .app-flash-container {
    padding: 15px 20px 0 20px;
  }

  /* line 133, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
  .app-flash {
    margin-bottom: 10px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}
/* インラインフォーム */
/* line 146, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-form-inline form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
}

/* line 152, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 153, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-field-group label {
  font-size: 0.75rem;
  color: #666;
}

/* line 154, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-select, .ai-input-number {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fcfcfc;
}

/* line 161, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-worker-state {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 8px;
  padding: 3px 10px;
}

/* line 170, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-worker-state.is-running {
  background: #d4edda;
  color: #155724;
}

/* line 175, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-worker-state.is-stopped {
  background: #fff3cd;
  color: #856404;
}

/* line 180, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-serp-progress {
  background: #f6fbfd;
  border: 1px solid #d8edf3;
  border-radius: 8px;
  margin: 0 0 18px;
  padding: 14px 16px;
}

/* line 188, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-progress-topline {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* line 196, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-progress-topline .ai-label {
  margin-right: 0;
}

/* line 200, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-progress-percent {
  color: #1f6f8b;
  font-weight: 700;
  margin-left: auto;
}

/* line 206, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-progress-track {
  background: #e7eef3;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

/* line 213, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-progress-fill {
  background: linear-gradient(90deg, #2193b0, #4bbf73);
  border-radius: inherit;
  height: 100%;
  transition: width 0.35s ease;
  width: 0;
}

/* line 221, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-progress-meta {
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 10px 16px;
  justify-content: space-between;
  margin-top: 10px;
}

/* テーブル（専用） */
/* line 232, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-table-wrapper {
  background: #fff;
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* line 238, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-custom-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

/* line 243, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-custom-table thead th {
  background: #f4f7f9;
  padding: 12px;
  text-align: left;
  font-size: 0.85rem;
  color: #555;
}

/* line 250, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-custom-table tbody td {
  padding: 12px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}

/* line 255, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-company a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* line 256, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-company a:hover {
  color: #764ba2;
}

/* line 257, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-address {
  max-width: 260px;
  word-break: break-word;
}

/* line 261, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-industry small {
  display: block;
  color: #888;
}

/* line 262, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-links {
  min-width: 96px;
  white-space: nowrap;
}

/* line 267, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-link-pill {
  color: #1f6f8b;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* line 277, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-link-pill:hover {
  color: #155267;
}

/* line 281, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-list-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* line 289, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-list-count {
  background: #eef1f7;
  border-radius: 999px;
  color: #555;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
}

/* line 298, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-empty-row {
  color: #777;
  font-weight: 600;
  padding: 24px !important;
  text-align: center;
}

/* ── 進捗ダッシュボード ── */
/* line 306, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 312, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
  .ai-dash-summary-grid {
    grid-template-columns: 1fr;
  }
}
/* line 314, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-block {
  background: #f7f9fc;
  border-radius: 8px;
  padding: 16px 20px;
}

/* line 319, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #333;
  border-bottom: 1px solid #e1e6ef;
  padding-bottom: 6px;
}

/* line 327, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 332, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
}

/* line 339, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-list li.ai-summary-total {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed #cfd6e3;
  font-weight: 600;
}

/* line 345, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-list .ai-label {
  color: #555;
}

/* line 346, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-summary-list .ai-count {
  color: #2c3e50;
}

/* ── フィルタ ── */
/* line 349, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-filter-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-end;
}

/* line 355, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-filter-form .ai-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}

/* line 361, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-filter-form label {
  font-size: 0.85rem;
  color: #555;
}

/* line 362, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-dash-filter-form .ai-checkbox-label {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

/* line 367, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-input-text {
  padding: 6px 8px;
  border: 1px solid #cfd6e3;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* line 373, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-btn-tertiary {
  background: #eef1f7;
  color: #555;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
}

/* ── バッジ・○× ── */
/* line 386, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* line 393, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-badge-gray {
  background: #e3e6ec;
  color: #555;
}

/* line 394, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-badge-yellow {
  background: #fff3cd;
  color: #856404;
}

/* line 395, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-badge-green {
  background: #d4edda;
  color: #155724;
}

/* line 396, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-badge-blue {
  background: #d1ecf1;
  color: #0c5460;
}

/* line 397, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-badge-red {
  background: #f8d7da;
  color: #721c24;
}

/* line 399, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-fill-ok {
  color: #28a745;
  font-weight: 700;
}

/* line 400, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-fill-warn {
  color: #b7791f;
  font-weight: 700;
}

/* line 401, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-fill-ng {
  color: #dc3545;
  font-weight: 700;
}

/* line 403, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-fill {
  text-align: center;
}

/* line 404, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.ai-col-serp-status {
  white-space: nowrap;
}

/* line 406, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-worker-state {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 10px;
}

/* line 414, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-worker-state.is-running {
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.6);
  color: #10b981;
}

/* line 420, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-worker-state.is-stopped {
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.6);
  color: #f59e0b;
}

/* line 426, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 16px;
}

/* line 434, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__topline {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* line 442, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__percent {
  color: #38bdf8;
  font-weight: 700;
  margin-left: auto;
}

/* line 448, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__track {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

/* line 456, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__fill {
  background: linear-gradient(90deg, #38bdf8, #10b981);
  border-radius: inherit;
  height: 100%;
  transition: width 0.2s ease;
  width: 0;
}

/* line 464, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__meta {
  color: rgba(229, 231, 235, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 10px 16px;
  justify-content: space-between;
  margin-top: 10px;
}

/* line 474, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__audit {
  justify-content: flex-start;
}
/* line 477, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-serp-progress__audit code {
  color: #7dd3fc;
  font-size: 0.75rem;
  margin-left: 4px;
  word-break: break-all;
}

/* line 485, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-target-preview__table {
  max-height: 260px;
}

/* line 489, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-detect__draft-table {
  max-height: none;
  overflow-x: auto;
}

/* line 494, /opt/webroot/okurite/app/assets/stylesheets/customers.scss */
.sc-list-count {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  color: #7dd3fc;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
}
@charset "UTF-8";
/* ========================================
   FORM SUBMISSIONS / SEARCH (DARK & NEON)
======================================== */
/* ========================================
   FORM DETECTION SECTION (DARK & NEON)
======================================== */
/* line 12, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect {
  /* タイトル */
  /* カードデザイン（ガラス質感） */
  /* テーブルデザイン */
  /* カスタムチェックボックス（一括選択・各行） */
  /* ボタン */
  /* アラート・情報エリア */
}
/* line 13, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect.container {
  max-width: 1200px;
  margin: 40px auto;
}
/* line 19, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(56, 189, 248, 0.3);
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}
/* line 30, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  overflow: hidden;
}
/* line 41, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__card-header {
  background: rgba(56, 189, 248, 0.1);
  padding: 15px 25px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.3);
}
/* line 46, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__card-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #38bdf8;
}
/* line 54, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__card-body {
  padding: 25px;
  color: #e5e7eb;
}
/* line 58, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__card-body p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  opacity: 0.9;
}
/* line 65, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__card-body strong {
  color: #38bdf8;
  font-size: 1.1em;
  margin: 0 4px;
}
/* line 73, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table-wrapper {
  background: rgba(2, 6, 23, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin: 20px 0;
  max-height: 400px;
  overflow-y: auto;
  /* スクロールバーのカスタマイズ */
}
/* line 82, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table-wrapper::-webkit-scrollbar {
  width: 8px;
}
/* line 83, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table-wrapper::-webkit-scrollbar-track {
  background: rgba(2, 6, 23, 0.2);
}
/* line 84, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.3);
  border-radius: 10px;
}
/* line 87, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
/* line 92, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table th {
  background: rgba(15, 23, 42, 0.9);
  color: #7dd3fc;
  font-weight: 600;
  text-align: left;
  padding: 12px 15px;
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid rgba(56, 189, 248, 0.3);
}
/* line 104, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table td {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: rgba(229, 231, 235, 0.8);
}
/* line 110, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table tr:hover td {
  background: rgba(56, 189, 248, 0.05);
}
/* line 114, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table a {
  color: #38bdf8;
  text-decoration: none;
}
/* line 117, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__table a:hover {
  text-decoration: underline;
}
/* line 122, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__check-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
/* line 129, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__check-group input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #38bdf8;
  border-radius: 4px;
  background: rgba(2, 6, 23, 0.8);
  position: relative;
  cursor: pointer;
}
/* line 139, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__check-group input[type="checkbox"]:checked {
  background: #38bdf8;
}
/* line 141, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__check-group input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  color: #01040a;
  font-size: 12px;
  left: 3px;
  top: -1px;
}
/* line 152, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__check-group label {
  font-size: 14px;
  color: #e5e7eb;
  cursor: pointer;
}
/* line 160, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* line 171, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn--warning {
  background: #38bdf8;
  color: #01040a;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}
/* line 175, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn--warning:hover {
  background: #ffffff;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}
/* line 182, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn--primary {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 6px 16px;
  font-size: 13px;
}
/* line 188, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn--primary:hover {
  background: rgba(56, 189, 248, 0.1);
  color: #ffffff;
}
/* line 196, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* line 205, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__alert--secondary {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: rgba(229, 231, 235, 0.7);
}
/* line 211, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__alert--info {
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #e5e7eb;
}

/* ページネーションの色合わせ */
/* line 220, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .pagination {
  margin-top: 15px;
}
/* line 222, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .pagination .page-item.active .page-link {
  background-color: #38bdf8;
  border-color: #38bdf8;
  color: #01040a;
}
/* line 227, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .pagination .page-link {
  background-color: rgba(15, 23, 42, 0.8);
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

/* 検索フォーム・バッチ送信用の追加スタイル */
/* line 235, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect {
  /* 入力フィールドの統一スタイル */
  /* バッジスタイル */
  /* インプットグループ（件数指定など） */
}
/* line 237, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input, .sc-detect .sc-detect__select {
  width: 100%;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}
/* line 247, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input:focus, .sc-detect .sc-detect__select:focus {
  border-color: #38bdf8;
  outline: none;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
  background: rgba(2, 6, 23, 0.9);
}
/* line 256, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}
/* line 261, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__badge--success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid #10b981;
}
/* line 262, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__badge--warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}
/* line 263, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__badge--danger {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
}
/* line 264, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__badge--info {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  border: 1px solid #38bdf8;
}
/* line 268, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* line 272, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input-group .sc-detect__input {
  max-width: 200px;
}

/* ファイル入力のカスタマイズ */
/* line 278, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect__file-input {
  width: 100%;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
/* line 288, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect__file-input::-webkit-file-upload-button {
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid #38bdf8;
  border-radius: 4px;
  color: #38bdf8;
  padding: 4px 12px;
  margin-right: 12px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 297, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect__file-input::-webkit-file-upload-button:hover {
  background: #38bdf8;
  color: #01040a;
}

/* 進捗ボード・ステータス表示の強化 */
/* line 305, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect {
  /* 進捗レールのカスタマイズ（ガラス質感） */
  /* 進捗率テキスト */
}
/* line 307, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__progress {
  background: rgba(2, 6, 23, 0.6);
  border-radius: 12px;
  height: 14px;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  /* 進捗バー本体 */
}
/* line 317, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__progress .sc-detect__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #7dd3fc);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6), 0 0 20px rgba(56, 189, 248, 0.2);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  /* バー表面の光沢アニメーション */
}
/* line 327, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__progress .sc-detect__progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: progress-shine 2s infinite;
}
/* line 343, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__progress-label {
  font-size: 11px;
  font-weight: 700;
  color: #7dd3fc;
  margin-bottom: 4px;
  display: block;
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  /* あれば */
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* ========================================
   FORM COMPONENT FIXES
======================================== */
/* line 364, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect {
  /* 各入力項目のラッパー */
  /* ラベル：色を明るくし、間隔を固定 */
  /* 入力フィールド：背景の透過度と枠線を調整 */
  /* テキストエリア専用：最小高さを設定 */
  /* 保存ボタンエリアの区切り */
}
/* line 366, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
/* line 373, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #7dd3fc;
  /* 明るいブルー */
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
/* line 383, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input,
.sc-detect .sc-detect__select,
.sc-detect .sc-detect__textarea {
  width: 100%;
  box-sizing: border-box;
  /* パディングを含めたサイズ計算 */
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 16px;
  /* モバイルでのズーム防止 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* line 396, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input:focus,
.sc-detect .sc-detect__select:focus,
.sc-detect .sc-detect__textarea:focus {
  border-color: #38bdf8;
  outline: none;
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4), 0 0 15px rgba(56, 189, 248, 0.2);
}
/* line 405, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__input::-moz-placeholder, .sc-detect .sc-detect__select::-moz-placeholder, .sc-detect .sc-detect__textarea::-moz-placeholder {
  color: rgba(229, 231, 235, 0.3);
}
.sc-detect .sc-detect__input::placeholder,
.sc-detect .sc-detect__select::placeholder,
.sc-detect .sc-detect__textarea::placeholder {
  color: rgba(229, 231, 235, 0.3);
}
/* line 411, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__textarea {
  min-height: 240px;
  line-height: 1.6;
  resize: vertical;
}
/* line 418, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__form-actions {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  gap: 16px;
}

/* --- .sc-detect 内の paginate 専用追加スタイル --- */
/* 既存の .pagination 等を壊さないよう .sc-detect__pagination-zone 配下に限定 */
/* line 431, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone nav {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* line 437, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone ul.pagination {
  display: flex !important;
  gap: 6px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* リンク・ボタン要素の装飾（追加のみ） */
/* line 448, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone .page-item,
.sc-detect .sc-detect__pagination-zone .page {
  border: none !important;
  background: transparent !important;
}

/* line 454, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone .page-link,
.sc-detect .sc-detect__pagination-zone a,
.sc-detect .sc-detect__pagination-zone span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  color: #38bdf8 !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* ホバー時の発光（追加） */
/* line 474, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone a:hover {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5) !important;
  background: rgba(56, 189, 248, 0.15) !important;
  color: #ffffff !important;
}

/* 現在のページ（アクティブ）の状態を定義 */
/* line 482, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone .active span,
.sc-detect .sc-detect__pagination-zone .current {
  background: #38bdf8 !important;
  color: #020617 !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.6) !important;
  cursor: default !important;
}

/* 無効・ギャップ部分の減光 */
/* line 492, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__pagination-zone .disabled span,
.sc-detect .sc-detect__pagination-zone .gap span {
  border-color: rgba(229, 231, 235, 0.1) !important;
  color: rgba(229, 231, 235, 0.2) !important;
  background: rgba(2, 6, 23, 0.5) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

/* キャンセルボタン（ネオンレッド）の追加 */
/* line 503, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn--danger {
  background: rgba(239, 68, 68, 0.1) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.5) !important;
  text-decoration: none !important;
  justify-content: center;
}

/* line 511, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__btn--danger:hover {
  background: #ef4444 !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6) !important;
}

/* ラベルの既存クラスへの統合（もし不足していれば） */
/* line 518, /opt/webroot/okurite/app/assets/stylesheets/form_submissions.scss */
.sc-detect .sc-detect__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(229, 231, 235, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@charset "UTF-8";
/* ===========================================================
   1. PC用スタイル（元のデザイン・余白・装飾を完全維持）
=========================================================== */
/* line 10, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-corp-wrapper {
  --brand-blue: #0055ff;
  --bg-light: #f8f9fa;
  --text-main: #1a1a1a;
  --radius-news: 4px;
  --radius-card: 24px;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.06);
  font-family: "Inter", "Hiragino Sans", sans-serif;
  color: var(--text-main);
}

/* line 21, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-hero-fullwide {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* PC用背景画像 */
  background-image: url(/assets/index-base-92c8a06f3f66c9ac394dc395dc93f7b45665883d90549cec06fa8b0dd4943e59.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 画像の明るさを死守しつつ、文字の視認性を確保するブレンド */
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: overlay;
  filter: none !important;
  opacity: 1 !important;
  padding: 180px 0;
  margin-bottom: 80px;
  color: #ffffff;
}

/* line 46, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

/* line 53, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-badge {
  display: inline-block;
  margin-bottom: 40px;
  padding: 12px 32px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border-left: 12px solid var(--brand-blue);
  animation: slideIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* line 72, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-copy {
  font-size: clamp(1.5rem, 3.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* line 79, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-lead {
  color: rgba(255, 255, 255, 0.9);
  line-height: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* line 85, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-cta-wrap {
  --log-white-glow: #e0faff;
  --log-blue-light: #5de6ff;
  --logo-blue-main: #0088ff;
  --logo-blue-deep: #0055ff;
}

/* line 92, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-btn-primary {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(135deg, var(--log-white-glow) 0%, var(--log-blue-light) 30%, var(--logo-blue-main) 100%);
  color: black;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(93, 230, 255, 0.5);
  border: 1px solid #fff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* line 111, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, var(--log-white-glow) 20%, var(--log-blue-light) 100%);
  box-shadow: 0 0 30px rgba(93, 230, 255, 0.8);
  transform: translateY(-3px) scale(1.02);
  color: #0055ff;
}

/* ===========================================================
   2. スマホ用レスポンシブ（768px以下に集約）
=========================================================== */
@media (max-width: 768px) {
  /* line 122, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-hero-fullwide {
    background-image: url(/assets/index-base-sp-557bdb3045d14b689088b1f9cd6fc3c9e067c50a3327bde0c830e0f462d288d8.webp);
    padding: 80px 0 60px 0;
    margin-bottom: 40px;
    filter: none !important;
    opacity: 1 !important;
  }

  /* line 130, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-hero-container {
    padding: 0 24px;
  }

  /* line 134, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-badge {
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 6px 16px;
    border-left-width: 3px;
    margin-bottom: 25px;
  }

  /* line 142, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-copy {
    font-size: 22px;
    /* スマホ最適なサイズに固定 */
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0;
  }
  /* line 148, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-copy .reveal-row {
    margin-bottom: 12px;
    /* スマホでは文字が溢れないよう、インラインブロック等で自然に改行を許容 */
  }
  /* line 152, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-copy .reveal-row .reveal {
    display: inline-block;
  }
  /* line 156, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-copy .reveal-row.sub-row {
    font-size: 15px;
    /* コピーの重要度（主従）を明確にするため小さめに変更 */
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 5px;
  }
  /* line 164, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-copy .reveal-amp {
    margin: 0 4px;
  }

  /* 元コードの display: none を外し、スマホでも視認性の良い極小フォントでCoolに残すパターン */
  /* line 170, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-lead {
    display: block;
    /* 非表示から、洗練された小さめの表示へ変更 */
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    padding: 0;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
  }
  /* line 179, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-lead br {
    display: none;
    /* スマホでは勝手な位置での改行を防ぎ自動流し込み */
  }

  /* line 184, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-btn-primary {
    margin-top: 20px;
    /* 130pxから適正値に調整 */
    padding: 18px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}
/* --- 指定範囲のみのスタイル適用 --- */
/* line 196, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  background-color: #050505;
  /* ロゴに合わせた黒 */
  color: #ffffff;
}

/* line 204, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-row {
  display: flex;
  background: #000000;
  border: 1px solid #222222;
  border-radius: 4px;
  /* 丸み抑制 */
  padding: 25px 30px;
  margin-bottom: 80px;
  align-items: center;
  gap: 25px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
}

/* 左端のアクセントライン（ロゴの発光をイメージ） */
/* line 217, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #00aaff;
  box-shadow: 0 0 10px #00aaff;
}

/* line 226, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-label {
  font-weight: 800;
  color: #ffffff;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.8);
}

/* line 234, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-content {
  flex: 1;
}

/* line 238, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-item {
  display: flex;
  text-decoration: none;
  color: #b0b0b0;
  font-size: 1.0rem;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.3s ease;
  align-items: center;
}

/* line 250, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-item:last-child {
  border-bottom: none;
}

/* line 254, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-item:hover {
  color: #00aaff;
  transform: translateX(5px);
}

/* line 259, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-item time {
  color: #666666;
}

/* line 263, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-content-container .sp-news-item .category {
  color: #00aaff;
  border: 1px solid #00aaff;
  padding: 1px 6px;
  font-size: 0.75rem;
  border-radius: 2px;
}

/* モバイル対応 */
@media (max-width: 768px) {
  /* line 273, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-content-container .sp-news-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}
/* line 284, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
:root {
  --primary-blue: #0066ff;
  --primary-hover: #0052cc;
  --bg-slate: #f8fafc;
  --border-color: #e2e8f0;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --radius-lg: 1.5rem;
  --shadow-main: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* line 295, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-wrapper {
  max-width: 860px;
  margin: 3rem auto;
  padding: 3.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
  font-family: "Inter", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--text-dark);
}

/* ヘッダーデザイン */
/* line 307, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-header {
  text-align: center;
  margin-bottom: 3rem;
}
/* line 311, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-header .contract-subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 0.75rem;
}
/* line 321, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-header .contract-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* 契約書本文ボックス */
/* line 329, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  margin-bottom: 3.5rem;
}
/* line 335, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-box .contract-inner {
  max-height: 300px;
  overflow-y: auto;
  padding: 3rem;
  font-size: 1.1rem;
  line-height: 2;
  color: #334155;
  /* スクロールバー */
}
/* line 343, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-box .contract-inner h4 {
  font-size: 1.3rem;
  color: #1e293b;
  margin: 2.5rem 0 1rem;
  font-weight: 800;
  border-left: 6px solid #0055ff;
  padding-left: 1rem;
}
/* line 353, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-box .contract-inner::-webkit-scrollbar {
  width: 8px;
}
/* line 354, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.contract-box .contract-inner::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* 単価・条件のグリッド */
/* line 359, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* line 366, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.info-card {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  transition: transform 0.2s ease;
}
/* line 372, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
}
/* line 377, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.info-card .info-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* line 388, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.price-list {
  list-style: none;
  padding: 0;
}
/* line 391, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bg-slate);
}
/* line 397, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.price-list li .vehicle {
  color: var(--text-muted);
  font-size: 0.9rem;
}
/* line 398, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.price-list li .amount {
  font-weight: 800;
  color: var(--text-dark);
}
/* line 401, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.price-list li .amount span {
  font-size: 0.7rem;
  margin-left: 2px;
}

/* line 406, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.schedule-item {
  margin-bottom: 1rem;
}
/* line 408, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.schedule-item .badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary-blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 4px;
}
/* line 417, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.schedule-item .badge.outline {
  background: transparent;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
}
/* line 423, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.schedule-item p {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* 同意エリア & ボタン */
/* line 427, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* line 434, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 2rem;
  background: var(--bg-slate);
  border-radius: 100px;
  transition: all 0.2s ease;
}
/* line 444, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox:hover {
  background: #eff6ff;
}
/* line 446, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox input {
  display: none;
}
/* line 448, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox .checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  position: relative;
  background: white;
  transition: all 0.2s;
}
/* line 458, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox input:checked + .checkmark {
  background: var(--primary-blue);
}
/* line 460, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox input:checked + .checkmark::after {
  content: '✓';
  color: white;
  position: absolute;
  left: 5px;
  top: 0;
  font-size: 14px;
  font-weight: 900;
}
/* line 471, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.custom-checkbox .label-text {
  font-weight: 700;
  font-size: 1rem;
}

/* line 474, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.button-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  gap: 1rem;
}

/* line 482, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
#submitBtn {
  width: 100%;
  padding: 1.25rem;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0044cc 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.3);
}
/* line 495, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
#submitBtn:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
/* line 502, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
#submitBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 102, 255, 0.4);
}

/* line 508, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
#translate {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
/* line 522, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
#translate:hover {
  background: var(--bg-slate);
  color: var(--text-dark);
}

/* レスポンシブ */
@media (max-width: 640px) {
  /* line 530, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .contract-wrapper {
    padding: 2rem 1.5rem;
  }

  /* line 531, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* line 532, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .contract-title {
    font-size: 1.5rem;
  }
}
/* 日付フィールド全体のコンテナ */
/* line 537, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  /* 入力中・クリック時の青い強調 */
  /* --- CSS描画のモダンなカレンダーアイコン --- */
  /* --- テキスト入力エリア --- */
}
/* line 550, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* line 557, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  /* フォーカス時にアイコンも少し強調 */
}
/* line 562, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field:focus-within .icon-calendar-blue {
  transform: scale(1.05);
}
/* line 568, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .icon-calendar-blue {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary-blue);
  border-radius: 4px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  /* カレンダー上部の突起 */
  /* カレンダー内部の横線（デザインアクセント） */
}
/* line 578, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .icon-calendar-blue::before, .date-field .icon-calendar-blue::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 2px;
  height: 5px;
  background: var(--primary-blue);
  border-radius: 1px;
}
/* line 588, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .icon-calendar-blue::before {
  left: 4px;
}
/* line 589, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .icon-calendar-blue::after {
  right: 4px;
}
/* line 592, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .icon-calendar-blue span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  opacity: 0.3;
}
/* line 604, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .date-input-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* line 609, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .date-input-group label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
/* line 618, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .date-input-group .styled-date-input {
  border: none;
  outline: none !important;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  padding: 0;
  /* 標準のピッカーアイコンも青色へ(Chrome用) */
}
/* line 631, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .date-input-group .styled-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(21%) sepia(100%) saturate(2514%) hue-rotate(212deg) brightness(97%) contrast(101%);
  opacity: 0.6;
}
/* line 635, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.date-field .date-input-group .styled-date-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* 調整：action-area内での中央揃え */
/* line 642, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* --- おしゃれなモダンボタン --- */
/* line 659, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-card-body .sp-btn-modern.btn-primary {
  background-color: #0066ff;
  /* テーマカラー */
  border: none;
  color: #ffffff;
  border-radius: 4px;
  /* ここがポイント */
  padding: 12px 20px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  /* すべて大文字に */
  letter-spacing: 0.12em;
  /* 文字間を少し広げる */
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* 軽い影 */
}

/* ホバー時の洗練されたアニメーション */
/* line 682, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-card-body .sp-btn-modern.btn-primary:hover,
.sp-card-body .sp-btn-modern.btn-primary:focus {
  background-color: #0044cc;
  /* 少し暗く */
  transform: translateY(-3px);
  /* 少し上に持ち上げる */
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
  /* 青白い光のような影を強く */
  text-decoration: none;
  /* 下線を消す */
  color: #ffffff;
}

/* line 693, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-corp-wrapper {
  --log-blue: #0088ff;
  /* ロゴのメイン青 */
  --log-glow: #5de6ff;
  /* ロゴの発光色 */
  --text-main: #1a1a1a;
  --border-light: #eeeeee;
  background-color: #000;
  /* 白背景 */
  color: var(--text-main);
  font-family: "Inter", "Hiragino Sans", sans-serif;
}

/* ===========================================================
   1. PC用スタイル（一切変更なし・完全維持）
=========================================================== */
/* line 711, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-corp-wrapper {
  --log-blue: #0088ff;
  --log-glow: #5de6ff;
  --text-main: #1a1a1a;
  --border-light: #eeeeee;
  background-color: #000;
  color: var(--text-main);
  font-family: "Inter", "Hiragino Sans", sans-serif;
}

/* line 721, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions {
  background-color: #050505;
  color: #ffffff;
}

/* line 726, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* line 731, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-section-header .en-sub {
  color: #00aaff;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* line 737, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff 40%, #00aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.4));
}

/* line 748, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-section-header p.desc {
  font-size: 1.1rem;
  color: #b0b0b0;
}

/* line 753, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* line 759, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-card {
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

/* line 767, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-card:hover {
  transform: translateY(-5px);
  border-color: #00aaff;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

/* line 773, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-card-image {
  height: 240px;
  overflow: hidden;
}

/* 画像：PCでの明るさを100%に固定 */
/* line 779, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: none !important;
  opacity: 1 !important;
  display: block;
}

/* line 788, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-card-body {
  padding: 40px;
  position: relative;
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
}

/* line 794, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .sp-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #00aaff;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
}

/* line 809, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .en-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* line 816, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .jp-title {
  font-size: 1.2rem;
  color: #00aaff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* line 823, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-solutions .text-detail {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* line 830, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-btn-modern {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid #00aaff;
  border-radius: 4px !important;
  font-weight: 700;
  padding: 15px 25px !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===========================================================
   2. スマホ用レスポンシブ（991px以下に集約）
=========================================================== */
@media (max-width: 991px) {
  /* line 846, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions {
    padding: 60px 20px;
  }

  /* line 850, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions .sp-section-header h2 {
    font-size: 2.2rem;
    /* 画面に収まるサイズに調整 */
  }

  /* line 854, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions .sp-grid {
    grid-template-columns: 1fr !important;
    /* 縦並び */
    gap: 20px;
  }

  /* line 859, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions .sp-card-image {
    height: 200px;
  }

  /* スマホでも画像を絶対に暗くしない */
  /* line 864, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions .sp-card-image img {
    filter: none !important;
    opacity: 1 !important;
  }

  /* line 869, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions .sp-card-body {
    padding: 30px 20px;
  }

  /* line 873, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-solutions .en-title {
    font-size: 1.3rem;
  }

  /* line 877, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-btn-modern {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}
/* --- 4. Company (Solutions 踏襲・非干渉版) --- */
/* line 898, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company {
  padding: 80px 0 0;
  background-color: #050505;
  /* Solutionsと統一 */
  color: #ffffff;
}

/* line 904, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-company-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* タイトルデザインの完全転用 */
/* line 910, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-section-header {
  text-align: center;
  margin-bottom: 70px;
}

/* line 915, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-section-header .en-sub {
  color: #00aaff;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

/* line 922, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 15px 0;
  background: linear-gradient(to right, #ffffff 40%, #00aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.4));
}

/* line 933, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-section-header .desc {
  font-size: 1.1rem;
  color: #b0b0b0;
}

/* テーブルを廃止した新しいグリッドレイアウト */
/* line 939, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* line 946, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-info-card {
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  /* Solutionsのカードと統一 */
  padding: 35px 45px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 左側にアクセントの発光ラインを配置 */
/* line 957, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #00aaff;
  box-shadow: 0 0 10px #00aaff;
  opacity: 0.5;
  transition: 0.3s;
}

/* line 968, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-info-card:hover {
  transform: translateY(-5px);
  border-color: #00aaff;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.1);
}

/* line 974, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-info-card:hover::before {
  opacity: 1;
}

/* line 978, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-info-label {
  color: #00aaff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* line 987, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
.sp-company .sp-info-value {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

/* モバイル対応 */
@media (max-width: 768px) {
  /* line 996, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-company {
    padding: 80px 5%;
  }

  /* line 997, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-company .sp-company-grid {
    grid-template-columns: 1fr;
  }

  /* line 998, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-company .sp-section-header h2 {
    font-size: 2.8rem;
  }

  /* line 999, /opt/webroot/okurite/app/assets/stylesheets/tops.scss */
  .sp-company .sp-info-card {
    padding: 30px;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */


body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
}



.custom-navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 40px;
  position: relative;
}

.mobile-nav {
  position: relative;
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #222222;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  padding-top: 0;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

.close-line {
  width: 100%;
  height: 3px;
  background-color: #222222;
  position: absolute;
  transition: all 0.3s ease;
}

.close-line:nth-child(1) {
  transform: rotate(45deg);
}

.close-line:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
}

.mobile-nav-list li {
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  display: block;
  padding: 20px 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: #f8f9fa;
  color: #000000;
}

.mobile-nav-actions {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.mobile-nav-actions .search-icon {
  width: 24px;
  height: 24px;
}

.mobile-nav-actions .login-btn,
.mobile-nav-actions .contact-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
}

.logo-section .nav-logo {
  height: 40px;
  width: auto;
}

.nav-subtext {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 350;
  color: #222222;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link-custom {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: #000000;
}

.search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.login-btn {
  background-color: #fff;
  border: 2px solid #C2CBD8;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 6px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: #f8f9fa;
}

.contact-btn {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding: 6px 18px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #333;
}

.arrow-icon {
  width: 12px;
  height: 12px;
}








/* -----------------------------------------------------------
   Hero Section Top Page Style (Okurite Concept)
   Based on Image concept
   ----------------------------------------------------------- */

/* -----------------------------------------------------------
   Hero Section Top Page Style (Okurite Concept)
   ----------------------------------------------------------- */

:root {
  --inter: 'Inter';
}

.hero-main {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-image: url(/assets/generated-bb44b7e2795d866e6c73bb485cc113d01c9e56fa3ac6b3c28ea2646be2077c24.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
  font-family: var(--inter), sans-serif;
  z-index: 0;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  box-sizing: border-box;
}

.hero-header {
  margin-bottom: 40px;

  .logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.8);
  }

  .logo-subtext {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 4px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  }
}

.hero-main-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 40px;
}

.hero-catch {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.hero-sub-copy {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-action-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  margin-bottom: 55px;
  padding-right: 0%;
}

.btn-glow-blue {
  background: linear-gradient(135deg, #0056b3 0%, #00a3ff 100%);
  color: #ffffff;
  border-radius: 40px;
  padding: 22px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  box-shadow: 0 0 30px rgba(0, 163, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  .btn-text {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
  }

  .btn-subtext {
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
  }
}

.btn-glow-blue:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 163, 255, 0.8);
  filter: brightness(1.1);
}

.hero-bottom-sparkle {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 24px;
  height: 24px;
  background-image: url(/sparkle.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-catch {
    font-size: 48px;
    line-height:1.5;
  }
}

@media (max-width: 768px) {
  .hero-main {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-main-area {
    padding-top: 20px;
    justify-content: center;
  }

  .hero-catch {
    font-size: clamp(28px, 8vw, 40px); /* 画面幅に合わせて流動的に縮小 */
    margin-bottom: 16px;
  }

  .hero-sub-copy {
    font-size: 16px;
    padding: 0 10px;
  }

  .hero-action-area {
    justify-content: center; /* スマホでは中央に寄せないと画面外へ突き抜けるため */
    padding-right: 0;
    margin-top: 430px;
    margin-bottom: 40px;
  }

  .btn-glow-blue {
    padding: 18px 40px;
    width: 90%;
    max-width: 400px;

    .btn-text {
      font-size: 18px;
    }
  }

  .hero-bottom-sparkle {
    bottom: 20px;
    right: 20px;
  }
}














.hero-main-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  overflow: hidden;
}

/* ここが透明化の本体部分 */
.hero-main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0); /* ← 背景だけを淡くする層（透明度調整） */
  z-index: 0; /* テキストの下に配置 */
}

/* sectionの中身を上に重ねる */
.hero-main-section > * {
  position: relative;
  z-index: 1;
}

.hero-main-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04));
  pointer-events: none;
}

.hero-main-left { max-width: 640px; }

.hero-main-top-btn{
  background:#000;
  color:#fff;
  font-family: var(--inter);
  font-size:18px;
  font-weight:700;
  border: none;
  padding:10px 14px;
  border-radius:6px;
  display:inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform-origin:center;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .1s both;
}

.hero-main-title{
  font-family: var(--noto);
  font-size:50px;
  font-weight:900;
  color:#111;
  line-height:1.05;
  margin:0;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .25s both;
}

.hero-main-subtitle{
  font-family: var(--noto);
  font-size:32px;
  font-weight:900;
  color:#111;
  margin:0;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .35s both;
}

.hero-main-badges { margin-top:18px; align-items:center; flex-wrap:wrap; }

.hero-main-badge{
  font-family: var(--inter);
  font-size:14px;
  font-weight:700;
  color:#fff;
  background: linear-gradient(90deg,#0C4AE6 0%,#198CDE 100%);
  border: none;
  padding:10px 16px;
  border-radius:20px;
  box-shadow: 0 8px 20px rgba(25,140,222,0.12);
  display:inline-flex;
  align-items:center;
  gap:8px;
  animation: popIn .6s cubic-bezier(.2,.9,.3,1) .5s both;
}

.hero-main-badge-text{
  font-family:var(--inter);
  font-size:14px;
  font-weight:700;
  color:#2D3748;
  margin:0;
  animation: fadeUp .6s cubic-bezier(.2,.9,.3,1) .55s both;
}

.hero-main-trial {
  font-family: var(--inter);
  font-size: 20px;
  color: #ffffff !important;
  font-weight: bold !important;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(0, 163, 255, 0.6);
}

.hero-main-trial2 {
  font-family: var(--inter);
  font-size: 20px;
  color: #ffffff !important;
  font-weight: bold !important;
  margin: 0;
}

/* ===========================================================
   BASE (PCデザイン維持)
=========================================================== */
.hero-main-right {
  background: linear-gradient(145deg, #1a1c20, #0a0b0d) !important;
  border-radius: 16px !important;
  padding: 2.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-main-form {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main-label {
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 700;
  color: #cbd5e0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.required-badge {
  display: inline-block;
  padding: 1px 6px;
  color: #00a3ff;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid #00a3ff;
  border-radius: 2px;
  line-height: 1.4;
}

.hero-main-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.2s ease;
}

.hero-main-submit {
  background: linear-gradient(135deg, #0056b3 0%, #00a3ff 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 163, 255, 0.3);
  transition: all 0.3s;
}

/* ===========================================================
   RESPONSIVE (集約・整理版)
=========================================================== */

/* --- タブレット・スマホ一括 (991px以下) --- */
@media (max-width: 991px) {
  .hero-main-right {
    padding: 1.5rem !important; /* 外側の余白を少し詰める */
    margin-top: 20px;
  }

  .hero-main-form {
    padding: 20px; /* 内部をタイトに */
  }

  .hero-main-label {
    font-size: 13px; /* 極端に小さくせず視認性維持 */
  }

  .hero-main-input {
    padding: 10px 12px;
    font-size: 14px; /* 入力文字は14px以下にするとiPhone等でズームされるため維持 */
  }

  .hero-main-submit {
    font-size: 16px;
    padding: 14px;
  }
}

/* --- 小さいスマホ (576px以下) --- */
@media (max-width: 576px) {
  .hero-main-right {
    padding: 1rem !important;
    border-radius: 12px !important;
  }

  .hero-main-form {
    padding: 15px;
    border-radius: 8px;
  }

  /* 入力ミスを防ぐためタップターゲットを確保 */
  .hero-main-input {
    height: 48px; 
  }

  /* テキストエリアは高さ自動 */
  textarea.hero-main-input {
    height: auto;
    min-height: 100px;
  }
  
  .hero-main-submit {
    height: 54px;
    font-size: 16px;
  }
}









.brand-marquee-section {
  background-color: #000;
  overflow: hidden;
  position: relative;
}

.brand-marquee {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scroll-marquee 25s linear infinite;
  white-space: nowrap;
}

.brand-track img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}







/* -----------------------------------------------------------
   Common
----------------------------------------------------------- */
.ser-mos-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: #eaf6ff;
}

/* -----------------------------------------------------------
   背景を強制的に黒にする（最重要）
----------------------------------------------------------- */
.ser-mos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #020611; /* 完全黒 */
  z-index: 0;
}

/* SERVICE 背景文字 */
.ser-mos-section::after {
  content: "SERVICE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 220px;
  font-weight: 900;
  letter-spacing: 10px;

  color: rgba(255,255,255,0.05);

  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.ser-mos-section .container {
  position: relative;
  z-index: 1;
}

/* -----------------------------------------------------------
   Heading
----------------------------------------------------------- */
.ser-mos-kicker {
  font-size: 14px;
  color: #00d4ff;
}

.ser-mos-title {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 36px;
}

/* -----------------------------------------------------------
   Panel
----------------------------------------------------------- */
.ser-mos-panel {
  background: transparent;
}

/* -----------------------------------------------------------
   Card（紺＋ネオン）
----------------------------------------------------------- */
.ser-mos-card {
  position: relative;

  background: linear-gradient(145deg, #071a33, #020c1f);
  border-radius: 14px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  border: 1px solid rgba(0,212,255,0.3);

  transition: 0.3s;
}

.ser-mos-card:hover {
  transform: translateY(-8px);

  border-color: rgba(0,212,255,0.8);

  box-shadow:
    0 0 20px rgba(0,212,255,0.4),
    0 0 50px rgba(0,212,255,0.2);
}

/* ネオン縁 */
.ser-mos-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,212,255,0.25),
    transparent
  );

  opacity: 0;
  transition: 0.3s;
}

.ser-mos-card:hover::before {
  opacity: 1;
}

/* -----------------------------------------------------------
   Image
----------------------------------------------------------- */
.ser-mos-card-img {
  max-width: 200px;
  width: 100%;
  border-radius: 12px; 
}

/* -----------------------------------------------------------
   Text
----------------------------------------------------------- */
.ser-mos-card-title {
  color: #fff;
  font-weight: 700;
}

.ser-mos-card-desc {
  color: #cfefff;
  text-align: center;
  line-height: 1.7;
}

/* -----------------------------------------------------------
   Responsive
----------------------------------------------------------- */
@media (max-width: 768px) {
  .ser-mos-title { font-size: 22px; }
}



/* -----------------------------------------------------------
   FAQ Section（黒ベース・中央・クリック明確版）
----------------------------------------------------------- */
.faq-japan-section {
  background: #020611;
  padding: 120px 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* -----------------------------------------------------------
   Container
----------------------------------------------------------- */
.faq-japan-container {
  max-width: 820px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
   Item（押せるUI）
----------------------------------------------------------- */
.faq-japan-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 26px 20px;
  margin-bottom: 16px;

  cursor: pointer;
  transition: all 0.25s ease;

  text-align: center;
}

/* hoverで明確に変化 */
.faq-japan-item:hover {
  border-color: rgba(0,212,255,0.35);
  background: rgba(255,255,255,0.02);

  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* -----------------------------------------------------------
   Question（中央固定）
----------------------------------------------------------- */
.faq-japan-question {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.faq-japan-question p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* -----------------------------------------------------------
   Icon（＋として見せる）
----------------------------------------------------------- */
.faq-japan-icon {
  width: 16px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.2s;
}

/* hoverで「押せる感」 */
.faq-japan-item:hover .faq-japan-icon {
  transform: scale(1.15);
  opacity: 1;
}

/* 開いたら回転（＋→×） */
.faq-japan-item.active .faq-japan-icon {
  transform: rotate(45deg);
  opacity: 1;
}

/* -----------------------------------------------------------
   Answer（開閉）
----------------------------------------------------------- */
.faq-japan-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-japan-answer p {
  font-size: 15px;
  color: #cfe0ee;
  margin-top: 16px;
  line-height: 1.7;
  text-align: center;
}

/* 開いた状態 */
.faq-japan-item.active .faq-japan-answer {
  max-height: 500px;
  opacity: 1;
}

/* -----------------------------------------------------------
   Responsive
----------------------------------------------------------- */
@media (max-width: 768px) {
  .faq-japan-section {
    padding: 70px 20px;
  }

  .faq-japan-question p {
    font-size: 15px;
  }

  .faq-japan-answer p {
    font-size: 14px;
  }
}






/* ===========================================================
   1. PC用スタイル（元のデザイン・装飾を完全維持）
=========================================================== */
.cards-moos-section {
  background: #020611;
  padding: 120px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.cards-moos-card {
  background: linear-gradient(145deg, #071a33, #020c1f);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  box-sizing: border-box;
}

/* ネオン装飾 */
.cards-moos-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(120deg, #00aaff, #4dd2ff, #00aaff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards-moos-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(0,170,255,0.35), transparent 70%);
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
  .cards-moos-card:hover { transform: translateY(-6px); border-color: rgba(0,170,255,0.6); }
  .cards-moos-card:hover::before, .cards-moos-card:hover::after { opacity: 1; }
}

.cards-moos-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
  filter: none !important;
  opacity: 1 !important;
  display: block;
}

.cards-moos-heading {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cards-moos-desc {
  font-size: 15px;
  color: #cfe0ee;
  line-height: 1.7;
  max-width: 90%;
  margin: 0 auto;
}

/* ===========================================================
   2. スマホ用レスポンシブ（PCデザインを保持したままスライド化）
=========================================================== */
@media (max-width: 768px) {
  .cards-moos-section {
    padding: 80px 0;
    overflow: hidden;
  }

  .sp-section-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  /* 
     スライドコンテナ：PCの重厚感を出すため、左右の余白をしっかり確保
  */
  .cards-moos-row.d-none.d-md-flex {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin: 0 !important;
    padding: 20px 20px 80px !important; /* ネオンの反射を綺麗に見せる */
    gap: 15px !important;
    scrollbar-width: none;
  }

  .cards-moos-row::-webkit-scrollbar {
    display: none;
  }

  /* 
     カードサイズ：小さくならないよう幅を90%まで拡大
  */
  .cards-moos-row > [class*="col-"] {
    flex: 0 0 90% !important;
    max-width: 90% !important;
    min-width: 90% !important;
    padding: 0 !important;
    scroll-snap-align: center;
  }

  /* PCのデザイン設定を強制適用 */
  .cards-moos-card {
    height: auto;
    padding: 30px 20px !important; /* PC版と同じ余白 */
    /* 背景グラデーションなどは自動でPC版を継承 */
  }

  /* スマホはホバーがないため、ネオンを全点灯 */
  .cards-moos-card::before,
  .cards-moos-card::after {
    opacity: 1;
  }

  /* 画像：PC版のスケール感を維持 */
  .cards-moos-img {
    height: auto !important;
    margin-bottom: 25px;
    filter: none !important;
    opacity: 1 !important;
  }

  /* 文字サイズ：PC版のサイズ（22px/15px）をスマホでも死守 */
  .cards-moos-heading {
    font-size: 22px !important;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .cards-moos-desc {
    font-size: 15px !important;
    line-height: 1.7;
    max-width: 90%;
    color: #cfe0ee;
  }
}

/* -----------------------------------------------------------
   Pricing Section（基本スタイル）
----------------------------------------------------------- */
.pricing-cards-section {
  font-family: "Noto Sans JP", sans-serif;
  background: #020611;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* 背景ネオン */
.pricing-cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,212,255,0.08), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,120,255,0.06), transparent 60%);
  pointer-events: none;
}

.pricing-cards-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 70px;
  text-align: center;
  text-shadow: 0 0 12px rgba(0,212,255,0.25);
}

/* カードデザイン */
.pricing-cards-card {
  position: relative;
  background: linear-gradient(145deg, #071a33, #020c1f);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.2);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.pricing-cards-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0,212,255,0.6);
  box-shadow:
    0 0 25px rgba(0,212,255,0.3),
    0 0 60px rgba(0,212,255,0.15),
    0 20px 40px rgba(0,0,0,0.8);
}

.pricing-cards-plan-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.pricing-cards-plan-sub {
  font-size: 16px;
  color: #9fdfff;
  margin-bottom: 15px;
}

/* ボタン */
.pricing-cards-btn,
.pricing-cards-main-btn {
  border: none;
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.pricing-cards-btn {
  padding: 12px 24px;
  margin-bottom: 25px;
  font-size: 13px;
  pointer-events: none;
}

.pricing-cards-main-btn {
  padding: 14px 20px;
  margin-top: auto;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.btn-gray  { background: linear-gradient(90deg,#555,#999); }
.btn-blue  { background: linear-gradient(90deg,#00cfff,#007bff); }
.btn-green { background: linear-gradient(90deg,#00d4aa,#00a87c); }

/* 特徴リスト */
.pricing-cards-features {
  text-align: left;
  margin-top: 20px;
  flex-grow: 1;
}

.pricing-cards-feature {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #cfefff;
  padding: 8px 0;
}

.pricing-cards-features hr {
  border: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 4px 0;
}

/* PC：中央プラン強調 */
@media (min-width: 992px) {
  .pricing-cards-card:nth-child(2) {
    transform: scale(1.05);
    border-color: rgba(0,212,255,0.5);
    box-shadow: 0 0 30px rgba(0,212,255,0.25), 0 20px 60px rgba(0,0,0,0.8);
  }
}

/* -----------------------------------------------------------
   Responsive (左右スワイプ完全対応版)
----------------------------------------------------------- */
@media (max-width: 991px) {
  .pricing-cards-section {
    padding: 60px 0;
  }

  /* 
     Bootstrapの.rowをスワイプコンテナへ書き換え
     justify-content: center があると左へ戻れなくなるため flex-start を強制
  */
  .pricing-cards-section .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important; 
    -webkit-overflow-scrolling: touch;
    padding: 20px 20px 40px !important; /* コンテナ内側に余白を作りスクロールを担保 */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .pricing-cards-section .row::-webkit-scrollbar {
    display: none;
  }

  /* カード幅とスナップ位置 */
  .pricing-cards-section .col-lg-4.col-md-6 {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
    padding: 0 10px !important;
  }

  .pricing-cards-card {
    margin-top: 0;
    transform: none !important;
    height: 100%;
  }

  .pricing-cards-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .pricing-cards-section .col-lg-4.col-md-6 {
    flex: 0 0 88% !important;
    max-width: 88% !important;
  }

  .pricing-cards-plan-title {
    font-size: 20px;
  }
}





.swiper {
  width: 100%;
  padding: 20px 0 50px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #08a5a1 !important;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #ddd !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: #08a5a1 !important;
}

.case-studies-swiper .swiper-button-next,
.case-studies-swiper .swiper-button-prev {
  color: #08a5a1 !important;
}

.case-studies-swiper .swiper-pagination-bullet-active {
  background: #08a5a1 !important;
}

.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
  color: #4A4A4A !important;
}

.pricing-swiper .swiper-pagination-bullet-active {
  background: #4A4A4A !important;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }
  
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px !important;
  }
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 8px 15px;
  }
  
  .nav-subtext {
    font-size: 10px;
  }
  
  .logo-section .nav-logo {
    height: 30px;
  }
  
  .hero-main-section {
    padding: 30px 0;
  }
  
  .hero-main-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .hero-main-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .hero-main-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .hero-main-badge-text {
    font-size: 10px;
  }
  
  .hero-main-trial {
    font-size: 14px;
  }
  
  .hero-main-label {
    font-size: 11px;
  }
  
  .hero-main-input {
    font-size: 11px;
    padding: 6px 8px;
  }
  
  .hero-main-submit {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .ser-mos-section {
    padding: 40px 0;
  }
  
  .ser-mos-title {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .ser-mos-card-title {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .ser-mos-card-desc {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .ser-mos-card-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .main-moss-section {
    padding: 40px 0;
  }
  
  .main-moss-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .main-moss-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .main-moss-block-title {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .main-moss-block-desc {
    font-size: 13px;
    line-height: 1.8;
  }
  
  .faq-japan-section {
    padding: 40px 0;
  }
  
  .faq-japan-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .faq-japan-question p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .faq-japan-answer p {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .cards-moos-section {
    padding: 40px 0;
  }
  
  .cards-moos-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .cards-moos-heading {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .cards-moos-desc {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .cards-moos-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
  
  .pricing-cards-section {
    padding: 40px 0;
  }
  
  .pricing-cards-title {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .pricing-cards-plan-title {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .pricing-cards-plan-sub {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .pricing-cards-price {
    font-size: 20px;
    line-height: 1.6;
  }
  
  .pricing-cards-feature {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .pricing-cards-btn {
    font-size: 12px;
    padding: 8px 25px;
  }
  
  .pricing-cards-main-btn {
    font-size: 12px;
    padding: 10px 30px;
  }
  
  .pricing-cards-card {
    padding: 20px 15px;
  }
}


/* -----------------------------------------------------------
   Japan Notyo Section (Blue Gradient)
   ----------------------------------------------------------- */
.japan-notyo-section {
  background: linear-gradient(135deg, #000);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.japan-notyo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.japan-notyo-column {
  flex: 1;
}

.japan-notyo-heading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.japan-notyo-description {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.japan-notyo-image {
  width: 100%;
  max-width: 600px;
  display: block;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease 0.5s;
}

.japan-notyo-visible .japan-notyo-heading,
.japan-notyo-visible .japan-notyo-description,
.japan-notyo-visible .japan-notyo-image {
  opacity: 1;
  transform: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .japan-notyo-section {
    padding: 60px 20px;
  }

  .japan-notyo-container {
    flex-direction: column; /* 縦並びに変更 */
    text-align: center;      /* テキストを中央寄せ */
    gap: 30px;
  }

  .japan-notyo-heading {
    font-size: 24px;         /* スマホ向けに縮小 */
    line-height: 1.3;
  }

  .japan-notyo-description {
    font-size: 14px;
    margin-top: 15px;
  }

  /* スマホ時にbrタグ（改行）を無効化して可読性を確保 */
  .japan-notyo-description br {
    display: none;
  }

  .japan-notyo-image-column {
    order: -1; /* スマホでは画像をテキストの上に配置（必要なければ削除してください） */
  }

  .japan-notyo-image {
    max-width: 100%;
    margin: 0 auto;
  }
}



.jap-notto-section {
  background-color: #00050a;
  background-image: 
    linear-gradient(rgba(0, 163, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 20px; /* 上下余白をPC基準で調整 */
  color: #fff;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
}

.jap-notto-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ヘッダー周りの調整（追加） */
.sp-section-header {
  text-align: center;
  margin-bottom: 60px;
  .en-sub {
    color: #00a3ff;
    font-size: 14px;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
  }
  h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 15px;
  }
  .desc {
    font-size: 16px;
    color: #ccc;
  }
}

/* グリッド配置 */
.jap-notto-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.jap-notto-card {
  grid-column: span 2;
  position: relative;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #444 0%, #222 50%, #555 100%);
  box-shadow: 
    0 0 20px 2px rgba(0, 163, 255, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s ease;

  &.card-4 { grid-column: 2 / 4; }
  &.card-5 { grid-column: 4 / 6; }
}

.card-inner {
  background: linear-gradient(135deg, #1a1d20 0%, #111416 45%, #0a0c0e 50%, #111416 55%, #1a1d20 100%);
  border-radius: 10px;
  padding: 40px 25px; /* 上下の余白を増やして高級感を出す */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  &::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
}

.jap-notto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px 5px rgba(0, 163, 255, 0.5), 0 30px 60px rgba(0, 0, 0, 0.9);
}

.card-icon {
  margin-bottom: 20px;
  .card-img {
    width: 140px; /* 少しサイズを絞ってバランスを調整 */
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.6));
  }
}

.card-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.card-sub {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  line-height: 1.5;
}

/* --- レスポンシブバランスの最適化 --- */
@media (max-width: 1024px) {
  .jap-notto-grid {
    gap: 20px;
  }
  .jap-notto-card.card-4,
  .jap-notto-card.card-5 {
    grid-column: span 3; /* タブレットサイズでは下段も均等に */
  }
}

@media (max-width: 768px) {
  .jap-notto-section {
    padding: 60px 15px;
  }
  
  .sp-section-header {
    margin-bottom: 40px;
    h2 { font-size: 24px; }
    .desc { font-size: 14px; }
  }

  .jap-notto-grid {
    grid-template-columns: repeat(2, 1fr); /* 2カラム維持 */
    gap: 15px;
  }
  
  .jap-notto-card,
  .jap-notto-card.card-4,
  .jap-notto-card.card-5 {
    grid-column: span 1 !important; /* 全て1カラム幅（実質2個並び） */
  }

  .card-inner {
    padding: 30px 15px;
  }

  .card-icon .card-img {
    width: 100px; /* スマホではアイコンを適切に縮小 */
  }

  .card-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .jap-notto-grid {
    grid-template-columns: 1fr; /* 完全1カラム */
  }
  
  .card-inner {
    padding: 25px 20px;
    flex-direction: row; /* 横並びレイアウトに変更して縦長すぎるのを防ぐ */
    justify-content: flex-start;
    text-align: left;
  }

  .card-icon {
    margin-bottom: 0;
    margin-right: 20px;
    .card-img {
      width: 80px;
    }
  }

  .card-text, .card-sub {
    text-align: left;
  }
  
  .card-text {
    margin-bottom: 4px;
  }
}










/* -----------------------------------------------------------
   Main Moss Section（進化版）
----------------------------------------------------------- */
.main-moss-section {
  color: #eaf6ff;
  position: relative;
  overflow: hidden;
}

/* 背景ネオン */
.main-moss-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,212,255,0.08), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,120,255,0.06), transparent 60%);
  pointer-events: none;
}

/* -----------------------------------------------------------
   Block（うっすらカード化）
----------------------------------------------------------- */
.main-moss-block {
  padding: 70px 40px;
  position: relative;
  margin: 40px auto;
  max-width: 1200px;

  background: rgba(10, 20, 40, 0.35);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);

  border-radius: 18px;

  border: 1px solid rgba(0,212,255,0.08);

  transition: all 0.4s ease;
}

/* 光が走る */
.main-moss-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,212,255,0.2),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

.main-moss-block:hover::after {
  opacity: 1;
}

.main-moss-block:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,255,0.25);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    0 0 30px rgba(0,212,255,0.15);
}

/* -----------------------------------------------------------
   ナンバリング（自動）
----------------------------------------------------------- */
.main-moss-section {
  counter-reset: moss;
}

.main-moss-block::before {
  counter-increment: moss;
  content: counter(moss, decimal-leading-zero);

  position: absolute;
  top: 20px;
  left: 30px;

  font-size: 48px;
  font-weight: 800;

  color: rgba(0,212,255,0.15);
  letter-spacing: 2px;
}

/* -----------------------------------------------------------
   Image（ガラス＋ネオン）
----------------------------------------------------------- */
.main-moss-img {
  width: 80%;
  max-width: 520px;

  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.7),
    0 0 20px rgba(0,212,255,0.2);

  transition: 0.4s ease;
}

.main-moss-block:hover .main-moss-img {
  transform: scale(1.05);
}

/* -----------------------------------------------------------
   Text
----------------------------------------------------------- */
.main-moss-content {
  position: relative;
  z-index: 1;
}

.main-moss-block-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;

  text-shadow: 0 0 12px rgba(0,212,255,0.25);
}

.main-moss-block-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #cfefff;
  max-width: 520px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
   Responsive
----------------------------------------------------------- */
@media (max-width: 768px) {
  .main-moss-block {
    padding: 40px 20px;
  }

  .main-moss-block-title {
    font-size: 22px;
  }

  .main-moss-block-desc {
    font-size: 15px;
  }

  .main-moss-block::before {
    font-size: 32px;
    left: 20px;
  }
}









.admin-preview-section {
  background: radial-gradient(circle at center, #0b1220 0%, #05070d 100%);
  padding: 120px 20px;
  color: #fff;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  /* Header */
  .sp-solutions {
    margin-bottom: 80px;

    .en-sub {
      display: block;
      font-size: 12px;
      letter-spacing: 2px;
      color: #5eead4;
      margin-bottom: 12px;
    }

    h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .desc {
      font-size: 16px;
      color: #9ca3af;
    }
  }

  /* Visual Area */
  .admin-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px; /* PCでの注釈スペース */
  }

  .main-device-wrapper {
    position: relative;
    display: inline-block;
    z-index: 2;
    width: 100%;
    max-width: 900px;

    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      max-width: 520px;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(94,234,212,0.15), transparent 70%);
      filter: blur(40px);
      z-index: -1;
    }
  }

  .admin-main-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
      0 20px 60px rgba(0,0,0,0.6),
      0 0 40px rgba(94,234,212,0.15);
  }

  /* Pointer (PC Default) */
  .admin-pointer {
    position: absolute;
    width: 220px;
    text-align: left;
    z-index: 3;

    .label, .labels {
      display: block;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 6px;
      color: #5eead4;
      text-shadow: 0 0 8px rgba(94, 234, 212, 0.5);
    }

    .detail {
      font-size: 13px;
      color: #d1d5db;
      line-height: 1.5;
    }

    /* 指示線 */
    &::before {
      content: "";
      position: absolute;
      width: 60px;
      height: 1px;
      top: 10px;
      background: linear-gradient(90deg, #5eead4, transparent);
    }

    /* 指示点 */
    &::after {
      content: "";
      position: absolute;
      width: 6px;
      height: 6px;
      background: #5eead4;
      border-radius: 50%;
      top: 7px;
      box-shadow: 0 0 10px #5eead4;
    }
  }

  .p-1 {
    left: -120px;
    &::before { right: -60px; }
    &::after { right: -66px; }
  }

  .p-2 {
    right: -120px;
    text-align: right;
    &::before {
      left: -60px;
      background: linear-gradient(270deg, #5eead4, transparent);
    }
    &::after { left: -66px; }
  }

  /* --- レスポンシブ調整 --- */
  @media (max-width: 1100px) {
    .admin-visual-container {
      padding: 0 20px;
      flex-direction: column;
    }

    .main-device-wrapper {
      margin-bottom: 30px;
    }

    .admin-pointer {
      position: relative;
      width: 100%;
      max-width: 450px;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      margin: 10px auto;
      padding: 15px 25px;
      text-align: center;
      background: rgba(94, 234, 212, 0.03);
      border-radius: 4px;
      box-sizing: border-box;

      /* スマホ時：左右両方にネオンラインを配置 */
      border-left: 2px solid #5eead4;
      border-right: 2px solid #5eead4;
      box-shadow: 
        inset 10px 0 20px -10px rgba(94, 234, 212, 0.1),
        inset -10px 0 20px -10px rgba(94, 234, 212, 0.1);

      &::before, &::after {
        display: none;
      }
    }

    .p-2 {
      text-align: center; /* 右寄せを解除して中央に */
    }
  }

  @media (max-width: 768px) {
    padding: 60px 15px;

    .sp-solutions {
      margin-bottom: 40px;
      h2 { font-size: 24px; }
      .desc { font-size: 14px; }
    }

.admin-main-img {
    /* スマホ専用の画像パスを指定して差し替え */
    content: url(/assets/dashboard-capture-sp-5dff043687560c8c968e1f1568c2ef108c419de4f1f07b5728bc6b738f15b748.png); 
    
    width: 100%;
    height: 220px;       /* 表示したい高さを固定 */
    -o-object-fit: cover;
       object-fit: cover;    /* 中央を基準にフィットさせる */
    -o-object-position: center;
       object-position: center;
    border-radius: 12px;
  }

  /* 文字（注釈）が画像の下に確実に表示されるよう配置をリセット */
  .admin-pointer {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin: 15px 0 !important;
    padding: 15px 20px !important;
    background: rgba(94, 234, 212, 0.05);
    border-left: 2px solid #5eead4;
    border-right: 2px solid #5eead4;
    display: block !important;
    box-sizing: border-box;
    text-align: center !important;

    &::before, &::after {
      display: none !important;
    }
  }
  }
}





/* ===========================================================
   1. PC用スタイル（ご提示の元デザインを完全維持）
=========================================================== */

/* ベース */
.compare-fixed {
  position: relative;
  max-width: 1400px;
  padding-top: 70px;
  margin: 40px auto;
  font-family: sans-serif;
}

/* 背景 */
.compare-fixed__bg img {
  width: 100%;
  display: block;
}

/* オーバーレイ */
.compare-fixed__overlay {
  position: absolute;
  inset: 0;
}

/* 左：人間 */
.compare-fixed__left {
  position: absolute;
  text-align: right;
  top: 40%;
  left: 19%;
  width: 25%;
}

/* 右：AI */
.compare-fixed__right {
  position: absolute;
  top: 40%;
  right: 19%;
  width: 25%;
}

/* カード共通 */
.card {
  height: 70px;
  margin-bottom: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(148,163,184,0.2);
}

/* AI強調 */
.card--blue {
  border: 1px solid rgba(56,189,248,0.6);
  box-shadow:
    0 0 15px rgba(56,189,248,0.3),
    inset 0 0 10px rgba(56,189,248,0.2);
}

/* テキスト */
.card strong {
  font-size: 14px;
  color: #fff;
}

.card span {
  font-size: 12px;
  opacity: 0.7;
  color: #838383;
}

/* 結果 */
.result {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(148,163,184,0.2);
}

.result--blue {
  border: 1px solid rgba(56,189,248,0.6);
  box-shadow: 0 0 15px rgba(56,189,248,0.3);
}

.result__item .label {
  font-size: 12px;
  color: rgba(148,163,184,0.8);
}

.result__item .value {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

/* 中央ライン（VS） */
.compare-fixed__center {
  position: absolute;
  top: 62.8%;
  left: 50%;
  font-weight: bold;
  transform: translateX(-50%);
  text-align: center;
}

.compare-fixed__center::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 240px;
  background: linear-gradient(to bottom, transparent, #38bdf8, transparent);
  box-shadow: 0 0 20px #38bdf8;
}

.compare-fixed__center span {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: #020617;
  border: 1px solid #38bdf8;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(56,189,248,0.6);
}

/* ===========================================================
   2. スマホ用レスポンシブ（960px以下で切り替え）
=========================================================== */
@media (max-width: 960px) {
  .compare-fixed {
    padding-top: 20px;
    background: #020617;
    margin: 0;
  }

  /* 画像の下の角丸を消して隣接感を出す */
  .compare-fixed__bg img {
    border-radius: 0;
  }

  .compare-fixed__overlay {
    position: relative; /* absolute解除 */
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px; /* 隙間を極限まで詰める */
    margin-top: 0; /* 画像に隣接 */
    padding: 0 5px;
  }

  .compare-fixed__left,
  .compare-fixed__right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    text-align: center; /* 中央寄せ */
  }

  /* スマホでVSを非表示 */
  .compare-fixed__center {
    display: none !important;
  }

  /* カードを画像に隣接させるため調整 */
  .card {
    border-radius: 0;
    margin-bottom: 2px;
    padding: 8px 4px;
    height: auto;
    min-height: 60px;
    background: rgba(255, 255, 255, 0.05);
  }

  .card strong {
    font-size: 11px;
    line-height: 1.2;
  }

  /* スマホでは説明文を非表示 */
  .card span {
    display: none;
  }

  /* 結果エリア */
  .result {
    border-radius: 0;
    margin-top: 2px;
    padding: 10px 4px;
    text-align: center;
  }

  .result__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
}









/* ========================================
   BASE (PCデザイン：完全維持)
======================================== */
.service-compare {
  background: #01040a;
  padding: 100px 0;
  color: #e5e7eb;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.sc { max-width: 1200px; margin: 0 auto; }
.sc__table {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr 1fr;
  gap: 0;
  position: relative;
  align-items: stretch;
}
.sc__col { display: flex; flex-direction: column; }
.sc__col-header {
  height: 80px; display: flex; align-items: center; justify-content: center;
  font-weight: 600; border-bottom: 1px solid rgba(148,163,184,0.15);
  font-size: 15px; color: rgba(229, 231, 235, 0.8);
}
.sc__cell {
  height: 100px; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(148,163,184,0.1); font-size: 14px; padding: 0 20px;
}
.sc__cell--label { flex-direction: column; align-items: flex-start; text-align: left; }
.sc__cell--label strong { font-size: 16px; margin-bottom: 4px; color: #ffffff; }
.sc__cell--label span { font-size: 12px; opacity: 0.6; }

.sc__col--main {
  position: relative; z-index: 10; background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px); border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.8); margin: -20px 0;
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.4), 0 30px 70px rgba(0, 0, 0, 0.9);
}
.sc__col--main .sc__col-header { height: 90px; font-size: 28px; font-weight: 800; color: #ffffff; }
.sc__cell--main { color: #ffffff; justify-content: flex-start; padding-left: 35px; border-bottom: 1px solid rgba(56, 189, 248, 0.2); }
.circle { width: 32px; height: 32px; border-radius: 50%; border: 4px solid #38bdf8; margin-right: 18px; flex-shrink: 0; box-shadow: 0 0 15px rgba(56, 189, 248, 0.8); }

/* ========================================
   RESPONSIVE (横スライド解放 & タイトな横幅)
======================================== */
@media (max-width: 991px) {
  .service-compare {
    padding: 40px 0;
    overflow: hidden;
  }

  /* スクロールを確実に機能させる設定 */
  .sc__table {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    justify-content: flex-start !important; /* 左端から開始 */
    padding: 30px 15px; /* Okuriteの浮き分と左右余白 */
    gap: 0;
    scrollbar-width: none;
  }
  .sc__table::-webkit-scrollbar { display: none; }

  /* --- 横幅の絞り込み --- */
  .sc__col {
    flex: 0 0 60%; /* コンテンツ列は60%に固定 */
    max-width: 60%;
    min-width: 60%;
    scroll-snap-align: start;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.05);
  }

  /* ラベル列（幅40%で常に左側に置く） */
  .sc__col--labels {
    flex: 0 0 40%;
    max-width: 40%;
    min-width: 40%;
    background: transparent;
    border: none;
  }

  /* Okurite（幅を絞りつつ中央寄りに調整） */
  .sc__col--main {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 65%;
    margin: -15px 2px; /* 左右のカードと近づける */
    border-radius: 12px;
    z-index: 10;
  }

  /* --- 高さと余白の圧縮 --- */
  .sc__col-header {
    height: 40px;
    font-size: 11px;
  }
  .sc__col--main .sc__col-header {
    height: 50px;
    font-size: 16px;
  }

  .sc__cell {
    height: 90px; /* 内容が複数行になるため少し余裕を持たせる */
    padding: 0 8px;
    font-size: 11px;
    line-height: 1.3;
    justify-content: center;
    text-align: center;
  }

  /* ラベルセル */
  .sc__cell--label {
    padding-left: 5px;
    align-items: flex-start;
    text-align: left;
  }
  .sc__cell--label strong { font-size: 12px; margin-bottom: 0; }
  .sc__cell--label span { display: none; }

  /* Okuriteセル */
  .sc__cell--main {
    padding-left: 8px;
    justify-content: flex-start;
    text-align: left;
  }

  .circle {
    width: 16px;
    height: 16px;
    border-width: 2px;
    margin-right: 6px;
  }

  .sc__cell--main strong { font-size: 11px; }
  .sc__cell--main span { font-size: 9px; margin-top: 1px; }
}

@media (max-width: 480px) {
  /* iPhone SEなどの極小画面向け */
  .sc__col { flex: 0 0 58%; max-width: 58%; min-width: 58%; }
  .sc__col--labels { flex: 0 0 42%; max-width: 42%; min-width: 42%; }
  .sc__col--main { flex: 0 0 62%; max-width: 62%; min-width: 62%; }
}





/* ========================================
   AUTH WRAPPER (DARK THEME)
======================================== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01040a; /* 背景黒 */
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* 背景に微かなグリッド等の装飾を加える場合 */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 80%);

  .auth-forms {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
  }

  /* ========================================
     AUTH CARD (GLASSMORPHISM)
  ======================================== */
  .auth-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    border-radius: 20px;
    padding: 40px;
    flex: 1 1 350px;
    max-width: 450px;
    color: #e5e7eb;

    /* ネオンブルーのボーダーと光沢 */
    border: 1px solid rgba(56, 189, 248, 0.5);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.2),
      0 0 30px rgba(56, 189, 248, 0.2),
      0 20px 50px rgba(0, 0, 0, 0.8);

    /* 上端の光線 */
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 10%;
      width: 80%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #38bdf8, #ffffff, transparent);
      filter: blur(1px);
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 28px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.05em;
      text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
    }

    /* ========================================
       FIELDS & INPUTS
    ======================================== */
    .field {
      margin-bottom: 25px;

      label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
        color: #7dd3fc;
      }

      .input-field {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 16px;
        background: rgba(2, 6, 23, 0.6);
        border: 1px solid rgba(148, 163, 184, 0.3);
        border-radius: 8px;
        font-size: 16px;
        color: #ffffff;
        transition: all 0.3s ease;

        &::-moz-placeholder {
          color: rgba(255, 255, 255, 0.3);
        }

        &::placeholder {
          color: rgba(255, 255, 255, 0.3);
        }

        &:focus {
          border-color: #38bdf8;
          outline: none;
          background: rgba(2, 6, 23, 0.8);
          box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
        }
      }

      /* チェックボックス周り */
      &.remember {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;

        input[type="checkbox"] {
          width: 18px;
          height: 18px;
          accent-color: #38bdf8;
          cursor: pointer;
        }

        label {
          margin-bottom: 0;
          color: rgba(229, 231, 235, 0.7);
          font-weight: 400;
          cursor: pointer;
        }
      }
    }

    /* ========================================
       ACTIONS (BUTTON)
    ======================================== */
    .actions {
      text-align: center;
      margin-top: 30px;

      .btn-primary {
        width: 100%;
        background: #38bdf8;
        color: #01040a;
        padding: 14px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);

        &:hover {
          background: #ffffff;
          transform: translateY(-2px);
          box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
        }

        &:active {
          transform: translateY(0);
        }
      }
    }

    /* リンク（パスワード忘れた方など） */
    .shared-links {
      margin-top: 25px;
      text-align: center;
      font-size: 13px;

      a {
        color: rgba(229, 231, 235, 0.5);
        text-decoration: none;
        transition: color 0.2s;

        &:hover {
          color: #38bdf8;
        }
      }
    }
  }
}

/* 共通ナビバーリンクの干渉防止 */
header.custom-navbar a.nav-link-custom,
header.custom-navbar a.nav-link-custom:link,
header.custom-navbar a.nav-link-custom:visited,
header.custom-navbar a.nav-link-custom:active,
header.custom-navbar a.nav-link-custom:focus,
header.custom-navbar a.nav-link-custom:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .auth-wrapper {
    padding: 20px;
    
    .auth-forms {
      flex-direction: column;
      gap: 20px;
    }

    .auth-card {
      padding: 30px 20px;
    }
  }
}



.calculator-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.calculator {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 700px;     /* ← PCで横幅を広げる */
  margin: 0 auto;
}

.calculator h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 26px;      /* 見出しを強調 */
  letter-spacing: 1px;
  border-bottom: 2px solid #007aff;
  padding-bottom: 10px;
  display: inline-block;
}

.description-text {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
}

small {
  display: block;
  margin-bottom: 5px;
  color: #777;
  font-size: 13px;
}

.form-control {
  width: 100%;
  padding: 12px;
  font-size: 17px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background: #fafafa;
}

.result-box {
  background: #eef5ff;
  padding: 18px;
  border-radius: 12px;
  margin-top: 15px;
  border-left: 4px solid #007aff;
}

.result-box p {
  font-size: 18px;
  margin: 8px 0;
  font-weight: 600;
  text-align: center;
}

.highlight {
  font-weight: 700;
  color: #007aff;
  font-size: 24px;
}

@media (max-width: 480px) {
  .calculator {
    padding: 20px;
    border-radius: 14px;
    max-width: 95%;
  }

  .calculator h2 {
    font-size: 20px;
  }

  .highlight {
    font-size: 20px;
  }
}



/* 外側セクション（グレー背景） */
.section-company {
  background: #f3f4f6;
  padding: 80px 0;
}

/* 浮き上がるカード */
.company-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 64px 64px 72px;
  border-radius: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 見出し */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-lead {
  color: #666;
  margin-bottom: 40px;
  font-size: 15px;
}

/* テーブル */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: top;
}

.company-table th {
  width: 180px;
  font-weight: 600;
  color: #555;
}

.company-table td {
  color: #222;
  line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .company-card {
    padding: 40px 24px;
  }

  .company-table th {
    width: 120px;
  }
}


.breadcrumbs {
  position: absolute;
  top: 70px;
  left: 16px;
  z-index: 10;
  font-size: 15px;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.center {
  text-align:center;
}













/* 共通テーブルデザイン */
.table-container {
  width: 90%;
  margin: 20px auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: linear-gradient(90deg, #f9f9f9 0%, #ffffff 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.table-container th,
.table-container td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
  transition: background-color 0.25s ease;
}

.table-container th {
  background: linear-gradient(90deg, #dbeafe, #e0f2fe);
  color: #1e3a8a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-container tr:hover td {
  background-color: rgba(220, 240, 255, 0.3);
}

.table-container tbody tr:nth-child(even) td {
  background-color: #f3f4f6;
}

.table-container tbody tr:nth-child(odd) td {
  background-color: #ffffff;
}

.table-space th.document-color {
  background-color: #dbeafe;
  font-weight: bold;
  color: #1e40af;
}

.table-space th.report-color {
  background-color: #dcfce7;
  font-weight: bold;
  color: #065f46;
}

.command {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.command:hover {
  color: #1d4ed8;
}

.btn-success {
  background-color: #22c55e;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-success:hover {
  background-color: #16a34a;
}

.input-group-addon {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  padding: 4px 8px;
  border-radius: 6px;
}

.date-picker {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 4px 8px;
}




.auth-card-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem 1rem;
}

.auth-inner {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.auth-subtitle {
  color: #718096;
  font-size: 0.95rem;
}

.auth-link {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-link:hover {
  color: #4338ca;
  text-decoration: underline;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  box-sizing: border-box;
}

.auth-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.auth-action {
  margin-top: 2rem;
}

.auth-btn-submit {
  width: 100%;
  background-color: #4f46e5;
  color: white;
  padding: 0.875rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.auth-btn-submit:hover {
  background-color: #4338ca;
}

.auth-btn-submit:active {
  transform: scale(0.98);
}

.auth-footer-links {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #a0aec0;
}

/* 追加分のみ記載（基本はサインアップ画面のCSSと共通） */

.auth-options {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.auth-helper-link {
  font-size: 0.8rem;
  color: #718096;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-helper-link:hover {
  color: #4f46e5;
  text-decoration: underline;
}

/* チェックボックスのカスタムスタイル */
.auth-checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.auth-checkbox {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: #4f46e5; /* モダンブラウザでの色指定 */
}

.auth-checkbox-label {
  font-size: 0.9rem;
  color: #4a5568;
}

/* 共通パーツの再掲（必要に応じて） */
.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

/* Railsのヘルパーが出力する .flex 等と競合しないよう !important や固有クラスを活用 */
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }


.container{
  h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  letter-spacing: 0.05em;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: #007bff; /* ボタンの色と合わせると統一感UP */
}
}





/*Footer*/
/* application.css に貼り付ける場合 */

.custom-footer {
  background-color: #000 !important;
  color: #fff;
}

/* リンクの色を統一（青色を無効化） */
.custom-footer .footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.custom-footer .footer-link:hover {
  color: #fff;
}

/* ロゴ関連・アイコン関連の未使用CSSを削除 */

/* 中央寄せの補強 */
.footer-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ===== フローティングボタン共通ラッパー ===== */
.floating-btn-wrap {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-btn-wrap.left-side {
  left: 30px;
}

/* ===== フローティング お問い合わせ（右側・独立） ===== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== ボタン共通スタイル ===== */
.floating-logo .logo-box,
.floating-contact .contact-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #000;
  border: 1px solid #444;
  height: 46px;
  padding: 0 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* ホバー演出（共通） */
.floating-logo .logo-box:hover,
.floating-contact .contact-box:hover {
  transform: translateY(-5px);
  border-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
}

/* ===== ロゴ ===== */
.floating-logo .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-logo .main-logo {
  width: 120px;
  height: auto;
  display: block;
}

/* ===== お問い合わせ・ログイン アイコン ===== */
.floating-contact .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-contact .main-icon {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.floating-contact .dashboard-icon i,
.floating-contact .login-icon i {
  font-size: 16px;
  color: #fff;
}

/* ===== テキスト部分 ===== */
.floating-contact .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.floating-contact .text-container span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  width: 100%;
}

.floating-contact .text-container small {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  display: block;
  width: 100%;
}

/* ===== スマホ用調整 ===== */
@media (max-width: 768px) {
  .floating-btn-wrap {
    bottom: 20px;
  }

  .floating-btn-wrap.left-side {
    left: 20px;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
  }

  .floating-logo .logo-box,
  .floating-contact .contact-box {
    height: 40px;
    padding: 0 12px;
  }

  .floating-contact .text-container {
    display: none;
  }

  .floating-contact .icon-container {
    margin-right: 0;
  }

  .floating-logo .main-logo {
    width: 90px;
  }
}



/* =========================================
   CTA SECTION
========================================= */

.section-trial-cta {
  position: relative;
  overflow: hidden;

  padding: 120px 20px;

  background:
    radial-gradient(circle at top, rgba(0, 162, 255, 0.12), transparent 45%),
    linear-gradient(180deg, #071018 0%, #0a1622 100%);

  @media (max-width: 768px) {
    padding: 90px 16px;
  }
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.trial-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;

  &::before,
  &::after {
    content: '';

    position: absolute;
    border-radius: 50%;

    filter: blur(90px);
  }

  &::before {
    width: 420px;
    height: 420px;

    background: rgba(0, 183, 255, 0.20);

    top: 10%;
    left: 50%;

    transform: translateX(-50%);
  }

  &::after {
    width: 280px;
    height: 280px;

    background: rgba(0, 114, 255, 0.18);

    bottom: 0;
    right: 10%;
  }
}

/* =========================================
   INNER
========================================= */

.trial-cta-container {
  position: relative;
  z-index: 2;

  max-width: 860px;
  margin: 0 auto;

  padding: 72px 48px;

  border-radius: 36px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.03) 100%
    );

  border: 1px solid rgba(255,255,255,0.08);

  -webkit-backdrop-filter: blur(18px);

          backdrop-filter: blur(18px);

  box-shadow:
    0 24px 80px rgba(0,0,0,0.35),
    0 0 50px rgba(0,162,255,0.10);

  text-align: center;

  @media (max-width: 768px) {
    padding: 48px 22px;
    border-radius: 28px;
  }
}

/* =========================================
   BADGE
========================================= */

.trial-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(0, 162, 255, 0.12);

  border: 1px solid rgba(0, 162, 255, 0.28);

  color: #7fd5ff;

  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================
   PULSE
========================================= */

.pulse-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #33d17a;

  box-shadow: 0 0 0 rgba(51, 209, 122, 0.7);

  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 209, 122, 0.7);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(51, 209, 122, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(51, 209, 122, 0);
  }
}

/* =========================================
   TITLE
========================================= */

.trial-cta-title {
  margin-top: 28px;

  color: #ffffff;

  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;

  span {
    background: linear-gradient(
      135deg,
      #ffffff 0%,
      #8ed8ff 35%,
      #2ea8ff 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* =========================================
   DESCRIPTION
========================================= */

.trial-cta-description {
  margin-top: 28px;

  color: rgba(255,255,255,0.72);

  font-size: 1.12rem;
  line-height: 2;
  font-weight: 500;

  @media (max-width: 768px) {
    font-size: 1rem;
    line-height: 1.9;
  }
}

/* =========================================
   POINTS
========================================= */

.trial-cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.trial-cta-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.88);

  font-size: 0.95rem;
  font-weight: 700;

  i {
    color: #4bd68b;
  }
}

/* =========================================
   BUTTON
========================================= */

.ok-btn-primary {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: min(100%, 620px);

  min-height: 76px;

  margin-top: 42px;
  padding: 20px 42px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #00c2ff 0%,
      #0084ff 45%,
      #005dff 100%
    );

  color: #ffffff !important;
  text-decoration: none !important;

  border: 1px solid rgba(255,255,255,0.14);

  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.04em;

  box-shadow:
    0 20px 40px rgba(0, 132, 255, 0.38),
    0 0 50px rgba(0, 194, 255, 0.30);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;

  animation: floatingButton 3.8s ease-in-out infinite;

  @media (max-width: 768px) {
    width: 100%;
    min-height: 68px;

    font-size: 1rem;
  }
}

/* 光 */
.ok-btn-primary::before {
  content: '';

  position: absolute;
  top: -140%;
  left: -30%;

  width: 36%;
  height: 380%;

  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.48),
    rgba(255,255,255,0)
  );

  transform: rotate(24deg);

  animation: shineMove 3.8s linear infinite;
}

.ok-btn-primary span,
.ok-btn-primary i {
  position: relative;
  z-index: 2;
}

.ok-btn-primary i {
  transition: transform 0.28s ease;
}

.ok-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);

  box-shadow:
    0 28px 60px rgba(0, 132, 255, 0.48),
    0 0 70px rgba(0, 194, 255, 0.42);

  filter: brightness(1.06);
}

.ok-btn-primary:hover i {
  transform: translateX(6px);
}

.ok-btn-primary:active {
  transform: translateY(1px);
}

/* =========================================
   NOTE
========================================= */

.trial-cta-note {
  margin-top: 18px;

  color: rgba(255,255,255,0.48);

  font-size: 0.9rem;
  line-height: 1.8;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes shineMove {
  0% {
    left: -40%;
  }

  100% {
    left: 140%;
  }
}

@keyframes floatingButton {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE
========================================= */

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}










