@charset "UTF-8";

:root {
  --bs-white: #fff;
  --bs-navy: #000080;
  --bs-dark-gray: #333333;
}

body {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  background-color: var(--bs-white);
  color: var(--bs-dark-gray);
}

.min {
  font-family: YakuHanMP, "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif !important;
}

.bg-navy {
  background-color: var(--bs-navy);
}

.bg-navy2 {
  background: #0E3364;
}

.bg-navy3 {
  background: #1e477d;
}

.bg-sky {
  background: #489edc;
}

.bg-lightsky {
  background: #E4F4FF;
}

.text-navy {
  color: var(--bs-navy);
}

.accent-navy {
  color: var(--bs-navy);
  font-weight: bold;
}

.header-content {
  padding: 50px 0;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

.sub-heading {
  font-size: 1.5rem;
  margin-top: 20px;
}

.section-padding {
  padding: 60px 0;
}

.section-bg-white {
  background-color: var(--bs-white);
}

.section-bg-light-navy {
  background-color: rgba(0, 0, 128, 0.05);
}

.list-group-item-custom {
  border: none;
  background-color: transparent;
  padding-left: 0;
}

.list-group-item-custom .fa-solid {
  margin-right: 1rem;
}

.footer-copyright {
  padding: 20px 0;
  font-size: 0.8rem;
}

/* Mobile-first adjustments */
@media (max-width: 576px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .sub-heading {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 40px 0;
  }
}

.fc-yel {
  color: #ff0;
}

.fc-red {
  color: #f00;
}

.fc-whi {
  color: #fff;
}

.fc-navy {
  color: #1e477d;
}

.fc-sky {
  color: #489edc;
}

.bg-dred {
  background: #a8171b !important
}

.bg-green {
  background: #12ae1e !important;
}

.btn:hover {
  opacity: .9;
}

.hr-sky {
  border: 0;
  height: 2px;
  background: #489edc;
}

.marker-yel {
  background: linear-gradient(to top, #ff0 40%, transparent 40%);
}

.drop-shadow {
  filter: drop-shadow(0px 0px 4px #000080);
}

img {
  max-width: 100%;
  height: auto;
}

.btn-orange {
  background-color: #ff6600;
  color: #fff;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
}

.btn-orange:hover {
  background-color: #e65c00;
  color: #fff;
}

.lh15 {
  line-height: 1.5;
}

.lh20 {
  line-height: 2.0;
}

.lh25 {
  line-height: 2.5;
}

.card-subtitle {
  position: relative;
  background: #0E3364;
  padding: 10px 0;
  color: #fff;
  margin-bottom: 2em;
}

.card-subtitle:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 20px solid;
  color: #0E3364;
}

.arrow {
  border-style: solid;
  border-color: #b4d6ec transparent transparent transparent;
  border-left-width: 100px;
  border-right-width: 100px;
  border-top-width: 60px;
  border-bottom-width: 0px;
  margin: 1em auto;
  width: 0;
  height: 0;
}

.arrow-s {
  border-left-width: 70px;
  border-right-width: 70px;
  border-top-width: 30px;
}

.days-title {
  position: relative;
  background: #fff;
  padding: 10px 0;
  color: #0E3364;
  margin-bottom: 2em;
}


/* Data Tables */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.data-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.data-table th {
  background: var(--primary);
  color: var(--white);
  padding: 15px;
  text-align: center;
  white-space: nowrap;
}

.data-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
}