@charset "utf-8";
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/raleway-v19-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/raleway-v19-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/noto-sans-jp-v28-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/noto-sans-jp-v28-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* base */
html, body {
	font-family: 'Noto Sans JP';
	background-color: #fff;
	color: #000;
	font-size: 15px;
	line-height: 1.5;
}
a { color: #0277b3; }
a:hover { color: #df0015; }
.raleway { font-family: 'Raleway'; }
.uk-card-title.small { font-size: 1rem; }
h4 {
	background-color: #df0015;
	color: #fff;
	padding: 10px;
	font-weight: bold;
}
h5 {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: center;
	padding: 10px 0;
	font-weight: bold;
}
.border-solid {
	border: 0.5px solid #000000;
}
.uk-label-jtta {
	background-color: #df0015;
	color: #fff;
}
.uk-label-jtta2 {
	background-color: #0277b3;
	color: #fff;
}
.uk-section-jtta2 {
	background-color: #0277b3;
	color: #fff;
}
.uk-section-jtta3 {
	background-color: #dcdcdc;
	/*color: #fff;*/
}
.uk-button {
	text-transform: none;
}

.uk-button-jtta {
	background-color: #df0015;
	color: #fff;
	border: 1px solid transparent;
}
.uk-button-jtta2 {
	background-color: #0277b3;
	color: #fff;
	border: 1px solid transparent;
}
.uk-button-jtta:focus, .uk-button-jtta:hover {
	background-color: #ee395b;
	color: #fff;
}
.uk-button-jtta2:focus, .uk-button-jtta2:hover {
	background-color: #4e85c4;
	color: #fff;
}
.uk-button-jtta3 {
	background-color: #FBD6D3;
	color: #333;
	border: 1px solid #e5e5e5;
}
.uk-button-jtta3:focus, .uk-button-jtta3:hover {
	background-color: #fcdddb;
	color: #333;
}
.uk-button-jtta4 {
	background-color: #b3b3b3;
	color: #333;
}

/* チェックボックス全体のカスタマイズ */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}
/* デフォルトのチェックボックスを非表示 */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
/* チェックボックスの四角 */
.checkmark {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 3px solid #ff0000; /* 赤い枠 */
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
    transition: 0.3s;
}
/* チェック時のデザイン */
.custom-checkbox input:checked + .checkmark {
    background-color: #ff0000; /* 赤背景 */
    border-color: #ff0000;
    position: relative;
}
/* チェックマーク（✔を表示） */
.custom-checkbox input:checked + .checkmark::after {
    content: '✔';
    font-size: 15px;
    color: white;
    position: absolute;
    left: 4px;
    font-weight: bold;
}

/* background */
.bg-color-green1 {
	background-color: #f9fffc !important;
}

.bg-color-gray1 {
	background-color: #dcdcdc !important;
}

.bg-color-white1 {
	background-color: #ffffff !important;
}

/* navbar */
.uk-navbar-container:not(.uk-navbar-transparent) {
	background-color: #fff;
	color: #000;
}
.uk-navbar-container .uk-container:first-child .uk-navbar {
	padding: 10px 0;
	/*height: 55px;*/
}
.uk-navbar-container .uk-container:first-child .uk-navbar .uk-navbar-toggle {
	min-height: 40px;
}
.uk-navbar-container .uk-container:first-child .uk-search input {
	color: #fff;
}
.uk-navbar-container .uk-container:nth-child(2) .uk-navbar {
	padding: 0;
	margin: 0 auto;
}
.uk-navbar-container .uk-container:nth-child(2) .uk-navbar .uk-navbar-nav>li>a {
	min-height: 40px;
	font-size: 1rem;
	color: #fff;
}
.uk-navbar-container .uk-container:nth-child(2) .uk-navbar .uk-navbar-nav .uk-navbar-dropdown {
	background-color: #fff;
	width: auto;
	min-width: 200px;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.uk-navbar-container .uk-container:nth-child(2) .uk-navbar .uk-navbar-nav .uk-navbar-dropdown-nav>li>a {
	color: #fff;
}
.uk-offcanvas-bar .uk-search-default {
	width: 100%;
}
.uk-offcanvas-bar {
	padding-bottom: 50px;
}

/* footer */
footer {
	background-color: #001B5C;
	color: #fff;
}
footer a {
	color: #fff;
}
footer .uk-navbar-nav>li>a {
	color: #fff;
	outline: 0;
}

/* gnav */
.gnav {
	list-style: none;
	border-bottom: 2px solid #e5e5e5;
	padding-left: 10px;
}
.gnav>li {
	padding: 10px 16px;
	top: 2px;
	position: relative;
	border-bottom: 2px solid #e5e5e5;
}
.gnav>li.uk-active {
	border-bottom: 2px solid #15449c;
}
.gnav>li a {
	color: #555;
}
.gnav>li.uk-active a {
	color: #15449c;
}

/* offcanvas */
.uk-offcanvas-bar {
	background-color: #df0015;
	padding: 60px 0 20px;
}
.uk-offcanvas-bar ul li {
	padding: 10px 15px;
	border-bottom: 1px solid #fff;
	/*font-size: 1.2rem;*/
}
.uk-offcanvas-bar ul li a {
	color: #fff;
}
.uk-offcanvas-bar ul li:hover {
	background-color: #fff;
}
.uk-offcanvas-bar ul li:hover a {
	color: #df0015;
}

/* archive */
.uk-card-badge.uk-label.live-label {
	background-color: #df0015;
	height: auto;
}

/* table */
.jt-table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
.jt-table td, .jt-table th {
	padding: 10px 12px;
	border: 1px solid #ccc;
	font-size: small;
}
.jt-table th {
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
	background-color: #eee;
}
.jt-table thead th {
	background-color: #333;
	color: #fff;
}
.top-scroll-bar {
  position: sticky;
  top: 102px;
  overflow-x: scroll;
}
.top-scroll-bar::-webkit-scrollbar {
  height: 16px;
}
.top-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 6px;
}
.top-scroll-bar::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 6px;
}
.page-player-add .team-name {
  position: sticky;
  top: 50px;
  margin: 0;
  padding: 20px 0;
  background-color: white;
}
.page-player-add .jt-table-head-wrapper {
  position: sticky;
  top: 120px;
  overflow-x: hidden;
}
.page-player-add .jt-table-head {
  position: relative;
}
.page-player-add .jt-table {
  table-layout: fixed;
}
.page-player-add .jt-table tr th {
  width: 160px;
  box-sizing: border-box;
  white-space: wrap;
}
.page-player-add .jt-table tr th[colspan="2"] {
  width: 320px;
}
.page-player-add .jt-table tr td {
  width: 160px;
  box-sizing: border-box;
}
.page-player-add .jt-table tr td.cell-no,
.page-player-add .jt-table tr th.cell-no {
  width: 40px;
}
.page-player-add .jt-table tr td.cell-id,
.page-player-add .jt-table tr th.cell-id {
  width: 140px;
}
.page-player-add .jt-table tr td.cell-btn,
.page-player-add .jt-table tr th.cell-btn {
  width: 100px;
}
.page-player-add .jt-table tr td.cell-checkbox,
.page-player-add .jt-table tr th.cell-checkbox {
  width: 110px;
}
.page-player-add .jt-table .uk-text-danger {
  text-wrap: wrap;
}

/* form */
.uk-input:read-only {
	background-color: transparent;
}

/*お知らせテーブル*/
.table-continue {
	width: 80px;
}

.news-category {
	desplay: block;
}

@media print, screen and (max-width: 1024px) {
	.news-category {
		display: none;
	}
}
@media print, screen and (max-width: 639px) {
	.news-date {
		display: none;
	}
}
/*お知らせタグ*/
.is_information {
	display: inline-block;
	margin: 0.5rem;
	padding: 0.2rem 0.5rem !important;
	color: #fff !important;
	background-color: #00f;
	border-radius: 0.5rem;
}

.is_caution {
	display: inline-block;
	margin: 0.5rem;
	padding: 0.2rem 0.5rem !important;
	color: #fff !important;
	background-color: #f00;
	border-radius: 0.5rem;
}

.is_attention {
	display: inline-block;
	margin: 0.5rem;
	padding: 0.2rem 0.5rem !important;
	color: #000 !important;
	background-color: #ff0;
	border-radius: 0.5rem;
}

.is_note {
	display: inline-block;
	margin: 0.5rem;
	padding: 0.2rem 0.5rem !important;
	color: #00f !important;
	background-color: #fff;
	border: solid 1px #00f;
	border-radius: 0.5rem;
}

.is_normal {
	display: inline-block;
	margin: 0.5rem;
	padding: 0.2rem 0.5rem !important;
	color: #000 !important;
	background-color: #fff;
	border: solid 1px #000;
	border-radius: 0.5rem;
}

.initial_margin {
	margin: initial !important;
}

.rule_body pre {
	white-space: pre-wrap !important;
}

/* 必須アイコン */
.ness-badge {
	color: #fff !important;
	background: #F00;
	border-radius: 5px;
	padding: 0 5px;
	margin: 0 5px;
}

/* エラー */
.error-text {
	vertical-align: middle;
	font-weight: bold;
}

.error-form {
	border: 1px solid #f0506e;
	background: #fef4f6;
}
