@charset "UTF-8";
/* ==========================
   Variables
========================== */
/* ==========================
   Table Heading
========================== */
.table-heading {
  font-size: 24px;
  font-weight: 700;
  /* margin-top: $space-xxxl; */
  margin-bottom: 32px;
  padding: 16px 24px;
  position: relative;
  background: #f5f9ff;
  border-bottom: 2px solid #cce4ff;
  text-align: center;
}
.table-heading::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -2px;
  width: 38%;
  border-bottom: 2px solid #005bbb;
}

@media (max-width: 768px) {
  .table-heading--lp {
    font-size: 18px;
  }
}
/* ==========================
   Table Wrapper
========================== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 80px;
  padding: 24px;
  border-radius: 8px;
}
.table-wrap::before, .table-wrap::after {
  content: "→ 横にスクロールできます";
  display: block;
  font-size: 12px;
  color: #888;
  text-align: left;
}
.table-wrap::before {
  margin-bottom: 8px;
}
.table-wrap::after {
  margin-top: 8px;
}

/* ==========================
   Table Base
========================== */
.table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
}
.table th,
.table td {
  padding: 16px 24px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.table th {
  background: #f5f5f5;
  font-weight: bold;
  text-align: center;
}
.table tbody tr:hover {
  background: #fafafa;
}

.table__text {
  display: inline-block;
}

.table th:nth-child(1),
.table th:nth-child(2),
.table th:nth-child(4),
.table th:nth-child(5),
.table th:nth-child(6),
.table td:nth-child(1),
.table td:nth-child(2),
.table td:nth-child(4),
.table td:nth-child(5),
.table td:nth-child(6) {
  white-space: nowrap;
}

/* ==========================
   Table Number (列AとBの間)
========================== */
.table__number {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  line-height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background-color: #005bbb;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  margin-right: 8px;
}

/* ==========================
   Download Link
========================== */
.table__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #005bbb;
  font-weight: bold;
  transition: color 0.2s ease;
}
.table__download:hover {
  color: #003f88;
}

.table__download i {
  font-size: 14px;
  flex-shrink: 0;
}

/* ==========================
   Animation
========================== */
.table__download:hover .fa-download {
  animation: bounce 0.6s ease;
  display: inline-block;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ==========================
   Badge
========================== */
.table__badge {
  display: inline-block;
  padding: 4px 16px;
  background: linear-gradient(180deg, #fff176, #fdd835);
  color: #333;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* ==========================
   Base
========================== */
body {
  margin: 0;
  line-height: 1.7;
  color: #333;
}

h1 {
  margin: 0;
}

/* ==========================
   Container
========================== */
.container {
  width: 95%;
  padding: 0 24px;
  margin: 0 auto;
}

/* ==========================
   Header
========================== */
.header {
  width: 100%;
  margin-bottom: 40px;
  padding: 32px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  display: block;
  width: 280px;
  height: auto;
}
.header__date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: bold;
  font-size: 18px;
  color: #666;
  line-height: 1.4;
}

/* ==========================
   SP
========================== */
@media (max-width: 768px) {
  .header {
    margin-bottom: 0;
  }
  .header .container {
    flex-direction: column;
    gap: 16px;
  }
  .header__date {
    align-items: center;
    text-align: center;
  }
  .header__logo img {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 98%;
  }
}
.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}
/* ==========================
   Footer
========================== */
.footer {
  width: 100%;
  background: #f1f5f9;
  border-top: 1px solid #e5e7eb;
  padding: 32px 0;
  text-align: center;
  overflow-x: hidden;
}
.footer .container {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* ==========================
   ボタン
========================== */
.table-wrap-button {
  width: 100%;
  max-width: 900px;
  padding: 24px;
  margin-bottom: 16px;
}
.table-wrap-button .button {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #005bbb;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}
.table-wrap-button .button i {
  margin-left: 8px;
}
.table-wrap-button .button:hover {
  background-color: #003f88;
  transform: translateY(-2px);
}

.button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #005bbb;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.button:hover {
  background-color: #003f88;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.button:active {
  transform: translateY(0);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */