@charset "utf-8";
/**初期設定**/
* {
	margin:0;
	padding:0;
	font:1em "メイリオ", Meiryo, Verdana, YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",sans-serif;
}
html {
	height:100%;
	-webkit-text-size-adjust:100%;
}
body {
	height:100%;
	text-align: center;
	letter-spacing: .015em;
}
#jsng {
	margin:0 auto;
	text-align: center;
}
ul,
ol {
	list-style:none;
}
a {
	text-decoration: none;
}
input {vertical-align: middle;}
textarea,
select,
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"] {
	outline: none; /* Chromeでフォーカス時の枠線をリセット */
	color:#555;
	background-color:#fff;
	background-image:none;
	border:1px solid #ccc;
	/*角丸*/
	border-radius: 8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	/*内側の影*/
	-webkit-box-shadow:0 0 1px 3px #fafafa inset;
	-moz-box-shadow:0 0 1px 3px #fafafa inset;
	box-shadow:0 0 1px 3px #fafafa inset;
	-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
select {
	padding: 5px;
	height: 46px;
}
input.datepicker {
	width:135px !important;
	border:solid 1px #ccc !important;
}
input.datetimepicker {
	width:180px !important;
	border:solid 1px #ccc !important;
}
/*フォーカス時*/
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
	border-color:#C1EB89;
	outline:0;
	-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05),0 0 3px rgba(193,235,137,0.75);
	-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05),0 0 3px rgba(193,235,137,0.75);
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.05),0 0 3px rgba(193,235,137,0.75);
}
/*readonly属性*/
input[readonly],
input[readonly]:focus,
textarea[readonly],
textarea[readonly]:focus {
	background-color: #fff !important;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	resize: none;
	min-height:auto !important;
	min-width:auto !important;
}
/*ckediter（HTMLエディター用）*/
.cke_reset{
	width: 100% !important;
}
/*プレスホルダー処理*/
textarea::-moz-placeholder,
select::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
	color:#999;
	opacity:1
}
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
	color:#999
}
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
	color:#999
}
[type="submit"][disabled],
input[type="text"][disabled],
fieldset[disabled] input[type="text"]{
	cursor:not-allowed;
	background-color:#eee;
	opacity:1;
	color: #a9a9a9 !important;
	border: 1px solid #eee;
}
input[type="text"][readonly] {
	cursor:not-allowed;
	border: none !important;
	padding: 11px 10px;
}
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	padding: 10px;
}
textarea {
	min-height: 100px;
	resize: vertical;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
}
label input[type="radio"],
label input[type="checkbox"]{
	margin-right: 5px;
	margin-bottom: 2px;
}
header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: #ccc;
	z-index: 1000;
}
header div{
	margin: 10px;
}
header div a{
	color: #000;
}
header div:first-child{
	margin: 5px 5px 0 5px;
	padding:5px 0;
}
header div:last-child span{
	margin-right: 10px;
}
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
header div:last-child a {
	margin-right: 40px;
	font-family: 'Noto Sans JP', sans-serif;
}
#wrap{
	display: flex;
	margin:0 auto;
	height:calc(100% - 48px);
}
/*ハンバーガーメニュー*/
#hm_menu-icon {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: 40px; /*アイコン横幅*/
	height: 40px;
	text-align: center;
	transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
	z-index: 1000;
}
a#hm_menu-icon{
	display: block;
}
#hm_menu-icon span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
}
#hm_menu-icon span:nth-of-type(1) {
	top: 15px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: transform 0.3s linear 0s;
}
#hm_menu-icon span:nth-of-type(2) {
	top: 15px;
	opacity: 0;
	transition: transform 0.3s linear 0s;
}
#hm_menu-icon span:nth-of-type(3) {
	top: 15px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: transform 0.3s linear 0s;
}
#hm_menu-icon.inActive span:nth-of-type(1) {
	-webkit-transform: translateY(-10px) rotate(0deg);
	transform: translateY(-10px) rotate(0deg);
}
#hm_menu-icon.inActive span:nth-of-type(2) {
	opacity: 1;
}
#hm_menu-icon.inActive span:nth-of-type(3) {
	-webkit-transform: translateY(10px) rotate(0deg);
	transform: translateY(10px) rotate(0deg);
}
.sidebar {
	display: block;
	height: auto;
	min-width: 200px;
	position: relative;
	left: 0;
	top: 0;
	padding: 10px;
	text-align: left;
	background-color: #ffc0cb;
	transition: transform 0.3s linear 0s;
	opacity: 0.9;
	z-index: 1000;
}
.sidebar nav.menu h2{
	margin-bottom: 10px;
}
.sidebar nav.menu ul li {
	margin-bottom: 10px;
	border-bottom: solid 1px #ff1493;
}
.sidebar nav.menu ul li a,
.sidebar nav.menu ul li a:visited {
	color: #000;
}
.sidebar nav.menu ul li.login-name,
.sidebar nav.menu ul li.login-course-title {
	font-weight: bold;
}
.sidebar.inActive{
	display: none;
}
#contents {
	margin:10px auto;
	padding: 0 10px;
	width:100%;
	overflow-x: hidden;
}
#contents h1 {
	margin: 0 auto;
	font-size: 120%;
}
/*ぱんくず*/
.breadcrumb {
	display: flex;
	margin-bottom: 10px;
}
.breadcrumb > li {
	margin-top: 1px;
	margin-right: 3px;
	text-align: left;
}
.breadcrumb > li:first-child {
	padding-left: 25px;
	background: url(../img/ico_menu.svg) no-repeat top -1px left 0;
}
.breadcrumb > li + li:before {
	content: "> ";
}
/* ページトップボタン */
#page-top {
	position: fixed;
	bottom: 60px;
	right: 0;
	font-size: 80%;
}
#page-top a {
	background: #666;
	color: #fff;
	width: 80px;
	padding: 20px 0;
	text-align: center;
	display: block;
	border-radius: 6px 0 0 6px;
}
#page-top a:link,
#page-top a:hover,
#page-top a:active,
#page-top a:visited {
	background: #999;
}

.opeTop {
	display: flex;
	margin-bottom: 10px;
	font-size: 80%;
	justify-content: flex-end;
}
.opeTop label,
.opeTop span{
	margin:10px;
	white-space: nowrap;
}
.opeTop a {
	padding: 12px;
	min-width: 54px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
.opeTop a:first-child,
.opeTop a:last-child {
	border-top-left-radius : 6px;
	border-bottom-left-radius : 6px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.opeTop button {
	border-left: none;
	border-right: none;
	border-radius:0;
	min-width: 50px;
}
.opeTop select{
	border-radius:0;
}
.opeTop input{
	border-left: none;
	border-right: none;
	border-radius: 6px 0 0 6px;
}
.opeTop input:not(:first-child) {
	border-radius: 0;
}
.opeTop input[type="search"]{
	max-width: 200px;
}
.opeTop input.datepicker{
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
}

.opeMid {
	display: flex;
	font-size: 70%;
	text-align: left;
	margin:5px 0;
}

.opeBottom {
	display: flex;
	justify-content: space-around;
	margin:30px auto 10px auto;
	padding: 0;
}
.opeBottom a {
	margin:0 auto;
	padding: 12px;
	color: #000;
	border-radius: 6px;
	border: solid 1px #ccc;
}
.opeBottom a:not(:first-child),
.opeBottom a:not(:last-child) {
	margin-top: 5px;
}
.opeBottom button {
	margin:5px;
}
.opeBottom button[name="delete"]{
	margin-left:100px;
}

.opePopUpTop {
	width: 100%;
}
.opePopUpTop div:first-child {
	width: 50%;
	float: left;
	text-align: left;
	margin-bottom: 10px;
}
.opePopUpTop div:last-child {
	width: 50%;
	float: right;
	text-align: right;
	margin-bottom: 10px;
}

.addButtonArea a {
	display: block;
	width:240px;
	padding: 12px;
	border-radius : 6px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	text-align: center;
}
.addButtonArea button {
	width:265px;
	padding: 12px;
	text-align: center;
}

.formArea {
	text-align: center;
}
.checkboxs {
	word-wrap: break-word;
	white-space: nowrap;
	white-space: normal;
	display: block;
	text-align: left;
}

/*入力共通*/
.active {ime-mode:active;}
.inactive {ime-mode:inactive;}
.has-error{
	border: solid 2px #EECACA !important;
	background-color: #EECACA !important;
}

/*タブ*/
ul.nav-tabs{
	display: flex;
	justify-content: space-around;
	margin-bottom: 10px;
}
ul.nav-tabs li{
	width: 100%;
	padding:10px;
	border-bottom: solid 1px #ccc;
}
ul.nav-tabs li.active{
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: none;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	color:#666;
}
ul.nav-tabs li:not(.active):hover{
	background-color: #ccc;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	cursor: pointer;
}

/*エラー*/
.err-sec {
	margin:10px auto !important;
	padding:10px !important;
	border-radius:8px;
	color:#B20000;
	background-color:#F9EBEB;
	border:solid 2px #EECACA;
	text-align: left;
	width: calc(100% - 5px) !important;
}
div.err-sec {
	width: calc(100% - 23px) !important;
}

/*注意*/
.notice {
	color: #ff0000;
}

/*必須*/
.must:before {
	content: "*";
	color: #ff0000;
}

/*ボタン*/
button,
.button {
	padding: 10px;
	cursor: pointer;
	border-radius: 6px;
	border: solid 1px #ccc;
	font-weight: 500;
	letter-spacing: .2em;
}
.blueBtn {
	color: #fff !important;
	border: 1px solid #00A2E5;
	background-color: #00A2E5;
}
.greenBtn {
	color: #fff !important;
	border: 1px solid #3cb371;
	background-color: #3cb371;
}
.grayBtn {
	color: #000 !important;
	border: 1px solid #f5f5f5;
	background-color: #f5f5f5;
}
.whiteBtn {
	color: #000 !important;
	border: 1px solid #fffafa;
	background-color: #fffafa;
}
.orangeBtn {
	color: #fff !important;
	border: 1px solid #f0ad4e;
	background-color: #f0ad4e;
}
.redBtn {
	color: #fff !important;
	border: solid 1px #FF3807;
	background-color: #FF3807;
}
.pinkBtn {
	color: #B20000 !important;
	border: solid 1px #F9EBEB;
	background-color: #F9EBEB;
}
/*評価*/
.starArea01 {
	text-indent: 0;
}
.starArea01 input {
	float: left;
	display: block;
}
.starArea01 {
	font-size: 0;
	text-indent: 100%;
	width: 76px;
	height: 14px;
	margin-right: 5px;
	background: url("../img/ico_star01.svg") repeat-x 0 0/15px 34px;
	line-height: 0;
	white-space: nowrap;
	display: inline-block;
	overflow: hidden;
	position: relative;
}
.starArea01 .starList01 {
	height: 14px;
	background: url("../img/ico_star01.svg") repeat-x 0 100%/15px 34px;
	display: inline-block;
	float: left;
}
.starArea01 input {
	width: 20%;
	height: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	position: relative;
}
.starArea01 input:hover + i,
.starArea01 input:checked + i {
	opacity: 1;
}
.starArea01 i {
	width: 20%;
	height: 100%;
	background: url("../img/ico_star01.svg") repeat-x 0 100%/15px 34px;
	opacity: 0;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
}
.starArea01 i ~ i {
	width: 40%;
}
.starArea01 i ~ i ~ i {
	width: 60%;
}
.starArea01 i ~ i ~ i ~ i {
	width: 80%;
}
.starArea01 i ~ i ~ i ~ i ~ i {
	width: 100%;
}
/*ローディングアイコン*/
#loading{
	background: url("../img/circles.svg") no-repeat;
	display:none;
	position: fixed;
	top:50%;
	left:50%;
	z-index: 1000;
	width: 180px;
	height: 180px;
	margin-top:-90px;
	margin-left:-90px;
	text-align: center;
}
/*カバー*/
#cover {
	background-color: #333; /*黒背景部分背景色*/
	display: block;
	height: 100%;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
	width: 100%;
	z-index: -1;
}
#cover.active {
	opacity: 0.5;
	z-index: 999;
}
@media screen and (min-width: 768px) {
	.br-sp {display: none; }
}
@media screen and (max-width:480px) {
	#wrap{
		display: block;
		width: 100%;
	}
	#hm_menu-icon span:nth-of-type(1) {
		top: 15px;
		-webkit-transform: translateY(-10px) rotate(0deg);
		transform: translateY(-10px) rotate(0deg);
		transition: transform 0.3s linear 0s;
	}
	#hm_menu-icon span:nth-of-type(2) {
		top: 15px;
		opacity: 1;
		transition: transform 0.3s linear 0s;
	}
	#hm_menu-icon span:nth-of-type(3) {
		top: 15px;
		-webkit-transform: translateY(10px) rotate(0deg);
		transform: translateY(10px) rotate(0deg);
		transition: transform 0.3s linear 0s;
	}
	#hm_menu-icon.active span:nth-of-type(1) {
		-webkit-transform: translateY(0px) rotate(-45deg);
		transform: translateY(0px)  rotate(-45deg);
	}
	#hm_menu-icon.active span:nth-of-type(2) {
		opacity: 0;
	}
	#hm_menu-icon.active span:nth-of-type(3) {
		-webkit-transform: translateY(0px) rotate(45deg);
		transform: translateY(0px) rotate(45deg);
	}
	.sidebar{
		position: absolute;
		top:44px;
		transform:translateX(-300px);
	}
	.sidebar.active{
		transform:translateX(0px);
	}
	#contents {
		width:calc(100% - 20px) !important;
	}
	/*ぱんくず*/
	.breadcrumb {
		margin-left: 5px;
	}
	.opeBottom a {
		display: block;
	}
	.opeBottom a:first-child {
		margin-bottom: 20px;
	}
	.notice {
		text-align: left;
	}
}
@media print {
	header{
		display: none;
	}
	ul.nav-tabs{
		display: none;
	}
	.sidebar{
		display: none;
	}
	.breadcrumb{
		display: none;
	}
}
