@charset "UTF-8";
/**
 * 管理者向けウェルカムページ専用スタイル
 * 
 * @package CustomTankyuTheme
 * @since 1.0.0
 */
.admin-welcome-main {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 40px 0;
}

.admin-welcome-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.welcome-header {
  text-align: center;
  margin-bottom: 40px;
}
.welcome-header .welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  font-family: "Lexend Giga", sans-serif;
}
.welcome-header .welcome-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

.welcome-message {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.guide h2 {
  color: #007cc3;
  font-size: 2.4rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #111;
}
.guide .welcome-content {
  padding-top: 10px;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
.guide h3 {
  display: inline-block;
  font-size: 2rem;
  width: 100%;
  background: #007cc3;
  color: #fff;
  padding: 10px 20px;
}
.guide .guide-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px dashed #111;
  padding-bottom: 15px;
}
.guide .guide-list dt {
  padding: 15px 0 0 10px;
  width: 350px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  color: #007cc3;
}
.guide .guide-list dt::before {
  content: "●";
  margin-right: 5px;
}
.guide .guide-list dd {
  padding: 15px 0 0;
  line-height: 1.8;
  font-size: 1.6rem;
  width: calc(100% - 360px);
}

.welcome-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}
.welcome-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  font-family: "Lexend Giga", sans-serif;
}
.welcome-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.admin-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.admin-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.admin-link-button .dashicons {
  margin-right: 8px;
  font-size: 18px;
}
.admin-link-button:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.admin-link-button.primary {
  background: #667eea;
  border-color: #667eea;
  color: white;
}
.admin-link-button.primary:hover {
  background: #5a6fd8;
  border-color: #5a6fd8;
}

.site-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 5px;
  font-family: "Lexend Giga", sans-serif;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.quick-action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #28a745;
  border: 2px solid #28a745;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.quick-action-button .dashicons {
  margin-right: 8px;
  font-size: 18px;
}
.quick-action-button:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  color: white;
}

.welcome-footer {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  text-align: center;
}
.welcome-footer .welcome-note {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-link-button,
.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.site-link-button .dashicons,
.logout-button .dashicons {
  margin-right: 8px;
  font-size: 16px;
}

.site-link-button {
  background: #007cc3;
  border: 2px solid #007cc3;
  font-size: 1.6rem;
  color: white;
}
.site-link-button:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.logout-button {
  font-size: 1.6rem;
  background: #dc3545;
  border: 2px solid #dc3545;
  color: white;
}
.logout-button:hover {
  text-decoration: none;
  background: #6f242a;
  border-color: #6f242a;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .admin-welcome-main {
    padding: 20px 0;
  }
  .admin-welcome-content {
    padding: 0 15px;
  }
  .welcome-header .welcome-title {
    font-size: 2rem;
  }
  .welcome-header .welcome-subtitle {
    font-size: 1rem;
  }
  .welcome-message {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guide h2 {
    color: #007cc3;
    font-size: 2.4rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #111;
  }
  .guide .welcome-content {
    padding-top: 10px;
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
  .guide h3 {
    display: inline-block;
    font-size: 2rem;
    width: 100%;
    background: #007cc3;
    color: #fff;
    padding: 10px 20px;
  }
  .guide .guide-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .guide .guide-list dt {
    padding: 15px 0 0 10px;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    color: #007cc3;
  }
  .guide .guide-list dt::before {
    content: "●";
    margin-right: 5px;
  }
  .guide .guide-list dd {
    padding: 10px 0 15px 30px;
    font-size: 1.6rem;
    width: 100%;
  }
  .welcome-card {
    padding: 20px;
  }
  .admin-links {
    grid-template-columns: 1fr;
  }
  .site-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-actions {
    grid-template-columns: 1fr;
  }
  .welcome-actions {
    flex-direction: column;
    align-items: center;
  }
  .site-link-button,
  .logout-button {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .welcome-header .welcome-title {
    font-size: 1.8rem;
  }
  .site-stats {
    grid-template-columns: 1fr;
  }
  .welcome-card {
    padding: 15px;
  }
}

/*# sourceMappingURL=admin-welcome.css.map */
