* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

#header {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
#header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
#header .header-container .logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}
#header .header-container .logo i {
  margin-right: 0.5rem;
  color: #e74c3c;
}
#header .header-container .main-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
#header .header-container .main-nav nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#header .header-container .main-nav nav ul li a i {
  font-size: 1.1rem;
}
#header .header-container .main-nav nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #e74c3c;
}
#header .header-container .main-nav nav ul li a.active {
  background-color: #e74c3c;
  color: #ffffff;
}
#header .header-container .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  #header .header-container {
    flex-wrap: wrap;
  }
  #header .header-container .mobile-menu-toggle {
    display: block;
  }
  #header .header-container .main-nav {
    width: 100%;
    display: none;
  }
  #header .header-container .main-nav.active {
    display: block;
  }
  #header .header-container .main-nav nav ul {
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
  }
  #header .header-container .main-nav nav ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #e74c3c;
  font-family: "Raleway", sans-serif;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-custom {
  background-color: #3498db;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  text-align: center;
}
.btn-custom:hover {
  background-color: #217dbb;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}
.btn-custom.btn-danger {
  background-color: #e74c3c;
}
.btn-custom.btn-danger:hover {
  background-color: #d62c1a;
}
.btn-custom.btn-success {
  background-color: #3498db;
}
.btn-custom.btn-success:hover {
  background-color: #217dbb;
}

#footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 2rem 0 0 0;
  margin: 4rem 0 0 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#footer ul li {
  font-size: 0.9rem;
  opacity: 0.9;
}
#footer ul li:first-child {
  font-weight: 600;
  font-size: 1rem;
  opacity: 1;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.table-custom thead {
  background-color: #2c3e50;
  color: #ffffff;
}
.table-custom thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}
.table-custom tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s ease;
}
.table-custom tbody tr:hover {
  background-color: #ecf0f1;
}
.table-custom tbody tr td {
  padding: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.equipment-grid .equipment-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.equipment-grid .equipment-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.equipment-grid .equipment-card .equipment-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e74c3c;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.equipment-grid .equipment-card .equipment-image {
  width: 100%;
  height: 350px;
  background-color: transparent;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.equipment-grid .equipment-card .equipment-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.equipment-grid .equipment-card .equipment-image i {
  font-size: 3rem;
  color: #95a5a6;
}
.equipment-grid .equipment-card .equipment-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
}

.training-record {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.training-record:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.training-record .record-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ecf0f1;
}
.training-record .record-header .record-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
}
.training-record .record-header .record-actions {
  display: flex;
  gap: 0.5rem;
}
.training-record .record-details .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ecf0f1;
}
.training-record .record-details .detail-item:last-child {
  border-bottom: none;
}
.training-record .record-details .detail-item .label {
  font-weight: 600;
  color: #2c3e50;
}
.training-record .record-details .detail-item .value {
  color: #333;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}/*# sourceMappingURL=style.css.map */