@charset "UTF-8";

html {
  font-size: 100%;
}

/* メニュー用調整  */

@media (min-width: 620px) {
  body {
    padding-top: 60px;
    color: #383e45;
    font-size: 1.1rem;
  }
}
@media (max-width: 620px) {
  body {
    padding-top: 120px;
    color: #383e45;
    font-size: 1.1rem;
  }
}

/* header メニュー用 */

a {
  text-decoration: none;
  color: #333;
}

nav ul li {
  list-style: none;
}

/* header */

#header {
  position: fixed;
  width: 100%;
  min-height: 60px;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  /* justify-content: space-around; */
  justify-content: space-between;
  align-items: center;
  /* margin: 0 auto; */
  background-color: #fefefe;
  /* background-color: #141414; */

  opacity: 0;
  translate: 0 -100%;
  animation: appear-header 2s forwards;
}
@keyframes appear-header {
  to {
    translate: 0 0;
    opacity: 1;
  }
}

#header ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 10px 0;
}
#header li {
  margin-left: 30px;
  margin-top: 10px;
}

#header li a:hover {
  opacity: 0.7;
}

.site-title {
  width: 250px;
  line-height: 1px;
  white-space: nowrap;
}

/* 見出し*/

h1 {
  color: #444444;

  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 左二重線＋下線 */
.line_style02_02 {
  border-left: 6px solid #333;
  padding: 0.3em 0 0.3em 1em;
  position: relative;
}

.line_style02_02::before,
.line_style02_02::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}

.line_style02_02::before {
  top: 0;
  width: 6px;
  height: 100%;
  background: #ccc;
}

.line_style02_02::after {
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #333;
}

/*その他の設定*/
/* *,
::before,
::after {
  box-sizing: border-box;
} */

@media (min-width: 480px) {
  h2 {
    margin: 30px;
    color: #333;
  }
  .card-contents {
    margin: 50px;
  }
}

/* table.css */
.blue-cell {
  background-color: #4a90e2 !important; /* Bootstrapのスタイルを上書き */
  color: white !important;
  /* padding: 8px !important; */
  border: 1px solid #2e6eb5 !important;
  text-align: center !important;
}

.gray-cell {
  background-color: #eeeeee !important; /* Bootstrapのスタイルを上書き */
  /* color: white !important;
    padding: 8px !important;
    border: 1px solid #2e6eb5 !important;
    text-align: center !important; */
}

.swiper {
  width: 98%;
  height: 100%;
}

.slide-area {
  width: 100%;
  height: auto;
  max-height: 80vh;
  /* overflow: hidden; */
}
.mainpic {
  width: 100%; /* 幅を画面いっぱいに */
  aspect-ratio: 16/10;
  height: auto; /* アスペクト比維持 */
  min-height: 100%; /* 縦の最大値に合わせる */
  object-fit: cover; /* 縦の最大値を超えたら切り抜く */
  border-radius: 15px;
  /* padding: 0 10px 0 10px; */
}

.bg-card-header {
  background-color: #4a90e2;
  /* background-color: #696969; */
}

/* 大会成績用 */

/* .result-section {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
} */

.category-box {
  background-color: #fafafa;
  padding: 4px 10px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  color: #333;
}

/* .result-entry {
  display: flex;
  gap: 1.5rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin-bottom: 4px;
} */

/* .result-entry .tournament {
  min-width: 6em;
  font-weight: 600;
} */

.result-entry .detail {
  color: #444;
}

.result-entry {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.tournament {
  width: 130px;
  min-width: 130px;
  font-weight: 500;
}
.detail {
  flex: 1;
}
@media (max-width: 576px) {
  .result-entry {
    flex-direction: column;
    margin-bottom: 0.75rem; /* エントリー間の間隔 */
  }
  .tournament {
    width: 100%;
    margin-bottom: -15px;
    font-weight: 600;
    line-height: 1.3; /* 行の高さを縮める */
  }
  .detail {
    width: 100%;
    padding-left: 1.5rem;
    line-height: 1.3; /* 行の高さを縮める */
  }
}
