html, body {
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background: #eff0f3;
}

/*--------------------------------
 * navi 
---------------------------------*/

.hero nav.navbar {
	background: #fff;
}

nav.navbar {
	border-top: 4px solid #3e8ed0;
}

.navbar-item, .navbar-link {
	font-size: 15px;
	font-weight: 700;
}

.navbar-item img.logo {
	max-height: 100%;
}

.navi-search-form {
	position: relative;
	width: 600px;
}

.navi-search-form .search-btn {
	position: absolute;
	top: 5px;
	right: 16px;
	margin: 0;
	padding: 0 10px 0 0;
	cursor: pointer;
	font-size: 25px;
	line-height: 49px;
	border: none;
	color: #ccc;
	background-color: rgba(255, 255, 255, 0);
}

.navi-search-form .search-btn::before {
	font-family: "Font Awesome 6 Free";
	content: "\f002";
	font-weight: 900;
	font-size: 18px;
}


/*--------------------------------
 * content
---------------------------------*/

.hero.is-fullheight .hero-body.center-false {
	align-items: start;
}

.hero-body {
	padding: 1rem 3.5rem;
}

.pagination {
	margin-top: 3rem;
}

/* editor */
img {
	max-width: 100%;
}


/*--------------------------------
 * footter
---------------------------------*/

.footer {
	padding: 1rem;
	border-top: 4px solid #3e8ed0;
}


/*--------------------------------
 * table
---------------------------------*/

.column-center tr th,
.column-center tr td {
	text-align: center;
	vertical-align: middle;
}

.table th {
	font-weight: bold !important;
	text-align: center !important;
}

.table td {
	vertical-align: middle;
}

.top-center tbody td:first-child {
	text-align: center;
}

.top-bold tbody td:first-child {
	font-weight: bold;
}


/*--------------------------------
 * Upload
---------------------------------*/

.upload-area {
	position: relative;
	height: 280px;
	border: 2px dashed #dcdcdc;
}

.upload-area .upload-area-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}


/*--------------------------------
 * Toggle
---------------------------------*/

.toggle_switch {
	position: relative;
	width: 60px;
	height: 30px;
	border-radius: 50px;
	overflow: hidden;
	cursor: pointer;
}

.toggle_switch input[type=checkbox] {
	display: none;
}

.toggle_switch:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: #455a64;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}

.toggle_switch:after {
	content: "OFF";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 26px;
	height: 26px;
	display: block;
	border-radius: 50px;
	background: #fff;
	box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	text-align: center;
	padding: 8px 0 0;
	line-height: 1;
	font-size: 10px;
	font-weight: bold;
	color: #455a64;
	letter-spacing: .5px;
	box-sizing: border-box;
}

.toggle_switch.checked:before {
	background: #00c853;
}

.toggle_switch.checked:after {
	content: "ON";
	left: 32px;
	padding: 8px 0 0 0;
	box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
	color: #2e7d32;
}


/*--------------------------------
 * common 
---------------------------------*/

.w100 { width: 100%; }
.w60  { width: 60%; }
.w50  { width: 49%; }
.w40  { width: 30%; }
.w30  { width: 30%; }
.w25  { width: 25%; }
.w20  { width: 20%; }
.w15  { width: 15%; }
.w10  { width: 10%; }
.w5   { width: 5%; }

.w100px { width: 100px; }
.w150px { width: 150px; }
.w200px { width: 200px; }

.h100 { height: 100%; }
.h100vh { height: 100vh; }

.mh200px { min-height: 200px; }

.wc3 {
	width: 33.33%;
	width: -webkit-calc(100% / 3);
	width: -moz-calc(100% / 3);
	width: calc(100% / 3);
}

.wc4 {
	width: 25%;
	width: -webkit-calc(100% / 4);
	width: -moz-calc(100% / 4);
	width: calc(100% / 4);
}

.wc5 {
	width: 20%;
	width: -webkit-calc(100% / 5);
	width: -moz-calc(100% / 5);
	width: calc(100% / 5);
}

.m-02 { margin: 0.25rem; }
.m-05 { margin: 0.5rem; }
.m-10 { margin: 1rem; }
.m-15 { margin: 1.5rem; }
.m-20 { margin: 2rem; }

.mt-02 { margin-top: 0.25rem; }
.mt-05 { margin-top: 0.5rem; }
.mt-10 { margin-top: 1rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-20 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-02 { margin-bottom: 0.25rem !important; }
.mb-05 { margin-bottom: 0.5rem !important; }
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2rem !important; }

.mr-02 { margin-right: 0.25rem; }
.mr-05 { margin-right: 0.5rem; }
.mr-10 { margin-right: 1rem; }
.mr-15 { margin-right: 1.5rem; }
.mr-20 { margin-right: 2rem; }

.ml-02 { margin-left: 0.25rem; }
.ml-05 { margin-left: 0.5rem; }
.ml-10 { margin-left: 1rem; }
.ml-15 { margin-left: 1.5rem; }
.ml-20 { margin-left: 2rem; }

.p-02 { padding: 0.25rem; }
.p-05 { padding: 0.5rem; }
.p-10 { padding: 1rem; }
.p-15 { padding: 1.5rem; }
.p-20 { padding: 2rem; }

.pt-02 { padding-top: 0.25rem; }
.pt-05 { padding-top: 0.5rem; }
.pt-10 { padding-top: 1rem; }
.pt-15 { padding-top: 1.5rem; }
.pt-20 { padding-top: 2rem; }

.pb-02 { padding-bottom: 0.25rem; }
.pb-05 { padding-bottom: 0.5rem; }
.pb-10 { padding-bottom: 1rem; }
.pb-15 { padding-bottom: 1.5rem; }
.pb-20 { padding-bottom: 2rem; }

.pr-02 { padding-right: 0.25rem; }
.pr-05 { padding-right: 0.5rem; }
.pr-10 { padding-right: 1rem; }
.pr-15 { padding-right: 1.5rem; }
.pr-20 { padding-right: 2rem; }

.pl-02 { padding-left: 0.25rem; }
.pl-05 { padding-left: 0.5rem; }
.pl-10 { padding-left: 1rem; }
.pl-15 { padding-left: 1.5rem; }
.pl-20 { padding-left: 2rem; }

.bold { font-weight: bold; }
.font-small { font-size: 12px; }

.red { color: #e53935; }

/*--------------------------------
 * Media Query
---------------------------------*/

/* 480px以下 */
@media screen and (max-width: 480px) {

	.hero.is-fullheight .hero-body {
		display: block;
		padding: 0;
	}

}
