@charset "UTF-8";

/* ==========================================
   共通スタイル
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* ========================================== 
   ヘッダーとハンバーガーメニュー
   ========================================== */

/* ヘッダー */
.site-header {
  background: #fff;
  border-bottom: 2px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

/* ヘッダータイトル（中央配置） */
.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  color: #333;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* 左側の空スペース（バランス調整用） */
.header-left {
  width: 30px;
  height: 30px;
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ナビゲーションメニュー */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 80px;
  box-shadow: -3px 0 15px rgba(0,0,0,0.2);
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link {
  display: block;
  padding: 20px 30px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 40px;
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.nav-link:hover::before {
  width: 5px;
}

/* メニューオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ボディにメニューが開いているときのスタイル */
body.menu-open {
  overflow: hidden;
}

/* メインコンテンツの調整 */
.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  min-height: calc(100vh - 70px);
}

/* ==========================================
   Coming Soon ページ用スタイル (index.html)
   ========================================== */
body.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.coming-soon-page .logo {
  margin-bottom: 30px;
}

.coming-soon-page .hanwa_logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.coming-soon-page .coming {
  font-size: 2.5rem;
  color: #333;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アップロードリンク */
.upload-link {
  margin-top: 40px;
  text-align: center;
}

.upload-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.upload-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ==========================================
   アップロードフォーム用スタイル (upload-form.html)
   ========================================== */
body.upload-page {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  max-width: none;
}

body.upload-page .main-content {
  background-color: white;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.upload-page h1 {
  color: #333;
  margin-bottom: 15px;
  font-size: 28px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.upload-page p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input[type="text"],
.form-group select {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
  border-color: #4CAF50;
  outline: none;
}

.required {
  color: red;
  margin-left: 3px;
}

/* 情報ボックス */
.info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border: 1px solid #2196f3;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  font-size: 14px;
  color: #0d47a1;
}

.info-box strong {
  color: #1565c0;
}

/* 支社情報 */
.branch-info {
  display: block;
  color: #666;
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
}

.upload-area {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin: 20px 0;
  background-color: #f9f9f9;
  transition: border-color 0.3s;
}

.upload-area:hover {
  border-color: #007bff;
}

.upload-area.dragover {
  border-color: #007bff;
  background-color: #e3f2fd;
}

/* アップロード領域の強化 */
.supported-formats {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  font-size: 14px;
  color: #555;
  border: 1px solid #e0e0e0;
}

.file-input {
  margin: 10px 0;
}

.preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

/* プレビューアイテムの強化 */
.preview-item {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.preview-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.preview-item[data-type="zip"] {
  border-color: #6f42c1;
}

.preview-item[data-type="image"] {
  border-color: #28a745;
}

.preview-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* ZIPファイルプレビュー */
.zip-preview {
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  height: 150px;
  border-radius: 8px 8px 0 0;
}

.zip-icon {
  font-size: 48px;
  margin-right: 20px;
  opacity: 0.9;
}

.zip-info {
  flex: 1;
  line-height: 1.4;
}

.zip-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zip-filename {
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 0.9;
  word-break: break-all;
}

.zip-size {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.zip-note {
  font-size: 12px;
  opacity: 0.7;
  font-style: italic;
}

/* 画像情報の改善 */
.image-info {
  padding: 12px;
  font-size: 12px;
  color: #666;
  background: #fafafa;
}

.image-filename {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  word-break: break-all;
}

.image-size {
  color: #888;
  font-size: 11px;
}

/* 削除ボタンの改善 */
.delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 68, 68, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.2s;
  z-index: 10;
}

.delete-btn:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.submit-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px 0;
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.submit-btn:hover:not(:disabled) {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ファイルカウントの改善 */
.file-count {
  color: #555;
  font-size: 14px;
  margin: 15px 0;
  font-weight: 500;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.clear-all-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px 0;
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.clear-all-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* アップロード状況表示 */
.upload-status {
  background: #e8f5e8;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
  animation: pulse 2s infinite;
}

.upload-status p {
  margin: 0;
  color: #2e7d32;
  font-weight: 500;
}

@keyframes pulse {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

/* ==========================================
   注意事項・ステップページ用スタイル
   ========================================== */

/* 注意事項コンテナ */
.instructions-container {
  max-width: 100%;
}

.instructions-container h2 {
  color: #333;
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.instructions-intro {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

/* ステップセクション */
.step-section {
  margin-bottom: 40px;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.step-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.step-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.step-number {
  background: rgba(255,255,255,0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.step-content {
  padding: 25px;
}

.step-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.step-note {
  color: #777;
  font-size: 14px;
  margin-top: 10px;
  font-style: italic;
}

/* ボタンコンテナ */
.button-container {
  text-align: center;
  margin: 20px 0;
}

/* アクションボタン */
.action-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pdf-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.pdf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.form-btn {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* アップロード機能リスト */
.upload-features {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #e9ecef;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* アップロードフォームセクション */
.upload-form-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 2px solid #e9ecef;
}

/* 完了セクション */
.completion-section {
  text-align: center;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border-radius: 12px;
  padding: 40px 25px;
  margin-top: 40px;
  border: 2px solid #4caf50;
}

.completion-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: bounceIn 1s ease-out;
}

.completion-section h3 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-size: 22px;
}

.completion-section p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* アップロードフォーム内の情報ボックス調整 */
.upload-form-section .info-box {
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-color: #ff9800;
  color: #e65100;
}

.upload-form-section .info-box strong {
  color: #bf360c;
}

/* ==========================================
   代表者用アップロードページ専用スタイル
   ========================================== */

/* 代表者用コンテナ */
.admin-upload-container {
  max-width: 100%;
}

/* 代表者用ヘッダー */
.admin-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.admin-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.admin-header h2 {
  margin: 0 0 15px 0;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.admin-description {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* 機能概要 */
.feature-overview {
  margin-bottom: 40px;
}

.feature-overview h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #667eea;
}

.feature-card .feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.feature-card h4 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* 注意事項セクション（代表者用） */
.instructions-section {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3d3 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.instructions-header {
  text-align: center;
  margin-bottom: 25px;
}

.instructions-header h3 {
  color: #856404;
  font-size: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.instructions-header p {
  color: #6c5400;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.instructions-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.pdf-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.pdf-icon {
  font-size: 48px;
  opacity: 0.8;
}

.pdf-details h4 {
  color: #856404;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
}

.pdf-details p {
  color: #6c5400;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.pdf-button-container {
  flex-shrink: 0;
}

.instructions-section .pdf-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
  white-space: nowrap;
}

.instructions-section .pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* アップロードフォームコンテナ */
.upload-form-container {
  background: white;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid #f0f0f0;
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f5f5f5;
}

.form-header h3 {
  color: #333;
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-header p {
  color: #666;
  margin: 0;
  font-size: 16px;
}

/* 強化されたアップロード領域 */
.upload-form-container .upload-area {
  border: 3px dashed #ccc;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  margin: 25px 0;
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  transition: all 0.3s ease;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-form-container .upload-area:hover {
  border-color: #667eea;
  background: linear-gradient(145deg, #e3f2fd 0%, #f3e5f5 100%);
  transform: translateY(-2px);
}

.upload-form-container .upload-area.dragover {
  border-color: #667eea;
  background: linear-gradient(145deg, #e8f5e8 0%, #f0f8f0 100%);
  transform: scale(1.02);
}

.upload-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.upload-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.upload-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* サポートフォーマット表示の改良 */
.upload-form-container .supported-formats {
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
  backdrop-filter: blur(5px);
}

.format-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.format-row:last-child {
  margin-bottom: 0;
}

.format-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* ファイル選択ボタン */
.file-select-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.file-select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ファイル情報セクション */
.file-info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.file-info-section .file-count {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #333;
}

.file-info-section .clear-all-btn {
  margin: 0;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
}

/* 送信セクション */
.submit-section {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #f5f5f5;
}

.admin-submit-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  font-size: 18px;
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  min-width: 250px;
}

.admin-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #218838 0%, #1ea896 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.submit-note {
  color: #777;
  font-size: 14px;
  margin-top: 15px;
  font-style: italic;
}

/* ==========================================
   サンクスページ用スタイル (thanks.html)
   ========================================== */
body.thanks-page {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

body.thanks-page .main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 70px);
}

.thanks-container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 90%;
}

.thanks-container p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

.back-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.back-btn:hover {
  background: #218838;
}

/* ==========================================
   プライバシーポリシーページ用スタイル
   ========================================== */
body.privacy-page {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

body.privacy-page .main-content {
  background-color: white;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  line-height: 1.8;
}

body.privacy-page h1 {
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
  position: relative;
}

body.privacy-page h1::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #764ba2;
}

/* ポリシーコンテンツ */
.policy-content {
  max-width: 100%;
}

.policy-section {
  margin-bottom: 35px;
  padding: 25px;
  background: #fafafa;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.policy-section:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.policy-section h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.policy-section h2::before {
  content: '?';
  margin-right: 8px;
  font-size: 18px;
}

.policy-section p {
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.policy-section ul {
  color: #555;
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-section li {
  margin-bottom: 8px;
  position: relative;
}

.policy-section li::marker {
  color: #667eea;
}

/* 連絡先情報 */
.contact-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid #2196f3;
}

.contact-info p {
  margin-bottom: 8px;
  font-weight: 500;
  color: #0d47a1;
}

/* 制定日 */
.policy-date {
  text-align: right;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.policy-date p {
  color: #777;
  font-size: 14px;
  font-style: italic;
}

/* 戻るボタン */
.back-to-upload {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.back-to-upload .back-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.back-to-upload .back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ==========================================
   レスポンシブ対応
   ========================================== */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .header-title {
    font-size: 18px;
  }
  
  .nav-menu {
    width: 280px;
    right: -280px;
  }
  
  .main-content {
    padding: 20px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .coming-soon-page .hanwa_logo {
    max-width: 200px;
  }
  
  .coming-soon-page .coming {
    font-size: 1.8rem;
  }
  
  .upload-page {
    padding: 15px;
  }
  
  .upload-page h1,
  body.upload-page h1 {
    font-size: 24px;
  }
  
  .preview-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .thanks-container {
    padding: 30px 20px;
  }
  
  .upload-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  .info-box {
    padding: 12px;
    font-size: 13px;
  }
  
  .supported-formats {
    padding: 12px;
    font-size: 13px;
  }
  
  .zip-preview {
    padding: 15px;
  }
  
  .zip-icon {
    font-size: 36px;
    margin-right: 15px;
  }
  
  .zip-label {
    font-size: 14px;
  }
  
  .instructions-container h2 {
    font-size: 20px;
    flex-direction: column;
    gap: 5px;
  }
  
  .instructions-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .step-header {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .step-header h3 {
    font-size: 18px;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .action-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  .upload-form-section {
    padding: 20px;
    margin: 20px 0;
  }
  
  .completion-section {
    padding: 30px 20px;
  }
  
  .completion-icon {
    font-size: 36px;
  }
  
  .completion-section h3 {
    font-size: 20px;
  }
  
  .completion-section p {
    font-size: 14px;
  }
  
  .admin-header {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .admin-header h2 {
    font-size: 24px;
  }
  
  .admin-description {
    font-size: 14px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-card .feature-icon {
    font-size: 40px;
  }
  
  .feature-card h4 {
    font-size: 16px;
  }
  
  .instructions-section {
    padding: 25px 20px;
  }
  
  .instructions-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .pdf-info {
    justify-content: center;
  }
  
  .pdf-icon {
    font-size: 40px;
  }
  
  .instructions-section .pdf-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .upload-form-container {
    padding: 25px 20px;
  }
  
  .upload-form-container .upload-area {
    padding: 30px 20px;
    min-height: 180px;
  }
  
  .upload-icon {
    font-size: 48px;
  }
  
  .upload-title {
    font-size: 16px;
  }
  
  .file-info-section {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .admin-submit-btn {
    min-width: 200px;
    font-size: 16px;
    padding: 12px 30px;
  }
  
  body.privacy-page h1 {
    font-size: 24px;
  }
  
  .policy-section {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .policy-section h2 {
    font-size: 18px;
  }
  
  .contact-info {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 55px;
  }
  
  .header-title {
    font-size: 16px;
  }
  
  .nav-menu {
    width: 250px;
    right: -250px;
  }
  
  .nav-link {
    padding: 15px 25px;
    font-size: 16px;
  }
  
  .main-content {
    padding: 15px 10px;
    min-height: calc(100vh - 55px);
  }
  
  .coming-soon-page .hanwa_logo {
    max-width: 150px;
  }
  
  .coming-soon-page .coming {
    font-size: 1.5rem;
  }
  
  .upload-page h1,
  body.upload-page h1 {
    font-size: 20px;
  }
  
  .form-group input[type="text"],
  .form-group select {
    max-width: 100%;
  }
  
  .preview-container {
    grid-template-columns: 1fr;
  }
  
  .thanks-container p {
    font-size: 16px;
  }
  
  .upload-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .zip-preview {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
  }
  
  .zip-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .supported-formats {
    padding: 10px;
    font-size: 12px;
  }
  
  .step-section {
    margin-bottom: 30px;
  }
  
  .step-header {
    padding: 12px 15px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .step-header h3 {
    font-size: 16px;
  }
  
  .step-content {
    padding: 15px;
  }
  
  .action-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
  }
  
  .upload-features {
    padding: 15px;
  }
  
  .feature-item {
    font-size: 13px;
  }
  
  .upload-form-section {
    padding: 15px;
  }
  
  .completion-section {
    padding: 25px 15px;
  }
  
  .admin-header {
    padding: 20px 15px;
  }
  
  .admin-header h2 {
    font-size: 20px;
  }
  
  .feature-card .feature-icon {
    font-size: 36px;
  }
  
  .instructions-section {
    padding: 20px 15px;
  }
  
  .pdf-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .pdf-icon {
    font-size: 36px;
  }
  
  .pdf-details h4 {
    font-size: 15px;
  }
  
  .pdf-details p {
    font-size: 12px;
  }
  
  .instructions-section .pdf-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .upload-form-container {
    padding: 20px 15px;
  }
  
  .upload-form-container .upload-area {
    padding: 25px 15px;
    min-height: 160px;
  }
  
  .upload-icon {
    font-size: 40px;
  }
  
  .format-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .admin-submit-btn {
    min-width: 180px;
    font-size: 15px;
    padding: 10px 25px;
  }
  
  body.privacy-page h1 {
    font-size: 20px;
  }
  
  .policy-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .policy-section h2 {
    font-size: 16px;
  }
  
  .policy-section h2::before {
    font-size: 16px;
  }
  
  .back-to-upload .back-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/* ハンバーガーメニューのアニメーション強化 */
@media (prefers-reduced-motion: no-preference) {
  .nav-menu {
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .menu-overlay {
    transition: all 0.4s ease;
  }
  
  .nav-link {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.open .nav-link {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav-menu.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.open .nav-link:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu.open .nav-link:nth-child(3) { transition-delay: 0.3s; }
}

/* ==========================================
   選択ページ用スタイル (新しいindex.html)
   style.cssの最後に追加してください
   ========================================== */

/* 選択ページ全体 */
body.selection-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body.selection-page .main-content {
  background: none;
  box-shadow: none;
  border-radius: 0;
  max-width: 1000px;
  padding: 40px 20px;
}

/* 選択コンテナ */
.selection-container {
  max-width: 100%;
}

/* ページヘッダー */
.page-header {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.page-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* 選択カード */
.selection-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.selection-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
}

.selection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.selection-card:hover::before {
  transform: translateX(100%);
}

.selection-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* カードヘッダー */
.card-header {
  padding: 30px 25px 20px;
  text-align: center;
  position: relative;
}

.employee-card .card-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.admin-card .card-header {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: white;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.card-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.card-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* カードコンテンツ */
.card-content {
  padding: 25px;
}

.card-description {
  text-align: center;
  margin-bottom: 25px;
}

.card-description p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* 機能リスト */
.card-features {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
}

.feature-check {
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* カードフッター */
.card-footer {
  padding: 0 25px 25px;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 10px;
  letter-spacing: 0.5px;
}

.employee-button {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.admin-button {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.employee-button:hover {
  background: linear-gradient(135deg, #2980b9 0%, #2471a3 100%);
}

.admin-button:hover {
  background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
}

.button-icon {
  font-size: 18px;
}

.button-text {
  flex: 1;
}

.button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.card-button:hover .button-arrow {
  transform: translateX(5px);
}

/* リップルエフェクト */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* 補足情報 */
.additional-info {
  margin-bottom: 40px;
}

.info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.info-icon {
  font-size: 32px;
  opacity: 0.8;
}

.info-content {
  flex: 1;
  color: white;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.info-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* システム情報 */
.system-info {
  text-align: center;
  color: white;
}

.system-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.system-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.system-feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.system-feature:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.sys-icon {
  font-size: 20px;
  opacity: 0.8;
}

.system-feature span:last-child {
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  body.selection-page .main-content {
    padding: 30px 15px;
  }
  
  .page-header h2 {
    font-size: 26px;
  }
  
  .page-description {
    font-size: 16px;
  }
  
  .selection-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .card-header {
    padding: 25px 20px 15px;
  }
  
  .card-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .card-header h3 {
    font-size: 20px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-description p {
    font-size: 15px;
  }
  
  .card-features {
    padding: 15px;
  }
  
  .feature-item {
    font-size: 14px;
  }
  
  .card-footer {
    padding: 0 20px 20px;
  }
  
  .card-button {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .info-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .info-icon {
    font-size: 28px;
  }
  
  .system-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .system-feature {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  body.selection-page .main-content {
    padding: 25px 10px;
  }
  
  .page-header {
    margin-bottom: 40px;
  }
  
  .page-header h2 {
    font-size: 22px;
  }
  
  .page-description {
    font-size: 14px;
  }
  
  .selection-cards {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .selection-card {
    border-radius: 15px;
  }
  
  .card-header {
    padding: 20px 15px 12px;
  }
  
  .card-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .card-header h3 {
    font-size: 18px;
  }
  
  .card-badge {
    padding: 4px 12px;
    font-size: 12px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-description p {
    font-size: 14px;
  }
  
  .card-features {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .feature-item {
    font-size: 13px;
    gap: 10px;
  }
  
  .card-footer {
    padding: 0 15px 15px;
  }
  
  .card-button {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  
  .button-icon {
    font-size: 16px;
  }
  
  .button-arrow {
    font-size: 16px;
  }
  
  .info-card {
    padding: 15px;
  }
  
  .info-content h4 {
    font-size: 16px;
  }
  
  .info-content p {
    font-size: 13px;
  }
  
  .system-info h4 {
    font-size: 18px;
  }
  
  .system-feature {
    padding: 10px;
  }
  
  .system-feature span:last-child {
    font-size: 13px;
  }
}

/* ==========================================
   戻るリンク用CSS（選択ページ用）
   style.cssの選択ページセクションに追加してください
   ========================================== */

/* 戻るリンク */
.back-to-top {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.back-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-icon {
  font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .back-to-top {
    margin-top: 30px;
    padding-top: 25px;
  }
  
  .back-link {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .back-icon {
    font-size: 14px;
  }
}