@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap";

/* src/styles/admin-shared.css */
.page-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.page-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.loading {
  text-align: center;
  padding: 3rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
}
.empty-state svg {
  margin-bottom: 1rem;
}
.empty-state p {
  font-size: 0.9rem;
}
.table-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
}
.table-wrapper {
  overflow-x: auto;
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.table-card thead {
  background: var(--gray-50);
}
.table-card th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-bottom: 1px solid var(--gray-200);
}
.table-card td {
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
}
.clickable-row {
  cursor: pointer;
  transition: background 0.15s;
}
.clickable-row:hover {
  background: var(--gray-50);
}
.expanded-row {
  background: #f0fdfa;
}
.expanded-row:hover {
  background: #f0fdfa;
}
.date-cell {
  color: var(--gray-500);
  font-size: 0.8rem;
}
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.status-badge:hover {
  opacity: 0.8;
}
.detail-row td {
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
}
.detail-panel {
  padding: 1.25rem 1rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.detail-section {
  min-width: 0;
}
.detail-heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.detail-text {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.detail-message {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
  white-space: pre-wrap;
}
.detail-meta {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}
.delete-area {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
}
.delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--red-500);
  background: none;
  border: 1px solid var(--red-200);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.15s;
}
.delete-btn:hover {
  color: #fff;
  background: var(--red-500);
  border-color: var(--red-500);
}
.delete-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* src/styles/form-shared.css */
.confirm-box {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 2rem;
}
.confirm-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.confirm-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.confirm-table {
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.confirm-row {
  display: flex;
  border-bottom: 1px solid var(--gray-100);
}
.confirm-row:last-child {
  border-bottom: none;
}
.confirm-label {
  width: 140px;
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
}
.confirm-value {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}
.confirm-pre {
  white-space: pre-line;
}
.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.confirm-back-btn {
  flex: 1;
  max-width: 200px;
  padding: 0.75rem 1.5rem;
}
.confirm-submit-btn {
  flex: 1;
  max-width: 200px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.success-box {
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--green-300);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.icon-green {
  color: var(--green-600);
}
.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}
.success-text {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.back-link {
  color: var(--cyan-600);
  font-size: 0.875rem;
  font-weight: 500;
}
.back-link:hover,
.success-link:hover {
  color: var(--cyan-700);
}
.success-link {
  color: var(--cyan-600);
  font-size: 0.875rem;
  font-weight: 500;
}
.confirm-fee {
  font-weight: 700;
  color: var(--cyan-700);
}
.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* src/styles/home-sections.css */
.section-white {
  position: relative;
  padding: 5rem 0;
  background: #fff;
}
.section-gray {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-light);
}
.section-lighter {
  position: relative;
  padding: 5rem 0;
  background: #f1f5f9;
}
.section-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-inner-wide {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.header-line {
  height: 1px;
  flex: 1;
  background:
    linear-gradient(
      to right,
      transparent,
      #d1d5db);
}
.header-line:last-child {
  background:
    linear-gradient(
      to left,
      transparent,
      #d1d5db);
}
.header-line-light {
  height: 1px;
  flex: 1;
  background:
    linear-gradient(
      to right,
      transparent,
      #e5e7eb);
}
.header-line-light:last-child {
  background:
    linear-gradient(
      to left,
      transparent,
      #e5e7eb);
}
.header-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.3em;
  white-space: nowrap;
}
.header-label-bold {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a2e;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}
.section-subtitle {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  margin-top: -2rem;
}
.section-subtitle.text-rose {
  color: #fb7185;
}
.section-subtitle-gray {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 3rem;
  margin-top: -2rem;
}
.text-cyan {
  color: #0097a7;
}
.text-rose {
  color: #f43f5e;
}
.text-amber {
  color: #f59e0b;
}
.text-dark {
  color: var(--gray-800);
}
.text-cyan-accent {
  color: #0097a7;
  font-weight: 500;
}
.text-cyan-highlight {
  color: #0097a7 !important;
}

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cyan-50: #e0fcff;
  --cyan-100: #b8f5fe;
  --cyan-200: #7eedfd;
  --cyan-300: #40e0fc;
  --cyan-400: #00d4ff;
  --cyan-500: #00b8d4;
  --cyan-600: #0097a7;
  --cyan-700: #00796b;
  --magenta-400: #ff1a8c;
  --magenta-500: #e6006e;
  --gold-400: #ffd11a;
  --gold-500: #e6b800;
  --neon-green: #39ff14;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-200: #fecaca;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --amber-50: #fffbeb;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --emerald-50: #ecfdf5;
  --emerald-200: #a7f3d0;
  --emerald-500: #10b981;
  --emerald-700: #047857;
  --rose-200: #fecdd3;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --blue-50: #f0f9ff;
  --blue-600: #2563eb;
  --red-50: #fef2f2;
  --slate-400: #94a3b8;
  --text-primary: #1a1a2e;
  --bg-primary: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    monospace;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-lighter);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 180, 212, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 180, 212, 0.6);
}
::selection {
  background: rgba(0, 180, 212, 0.2);
  color: var(--text-primary);
}
.container {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 700;
  color: #fff;
  background: var(--cyan-500);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 184, 212, 0.3);
}
.btn-primary:hover {
  background: var(--cyan-600);
  transform: scale(1.05);
}
.btn-primary:disabled {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 700;
  color: var(--cyan-600);
  background: transparent;
  border: 1px solid rgba(0, 184, 212, 0.4);
  border-radius: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-50);
}
.section {
  position: relative;
  padding: 5rem 0;
}
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-800);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.15);
}
.form-select {
  appearance: none;
}
.form-textarea {
  resize: vertical;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-300);
  accent-color: var(--cyan-500);
}
.form-error {
  color: var(--red-500);
  font-size: 0.875rem;
  margin-top: 0.375rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
  opacity: 0;
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}
.delay-800 {
  animation-delay: 0.8s;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
