@charset "utf-8";

/********* HTMLリセット *********************************************/

/* Reset */
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, img, a, table, tr, th, td {
	font-weight: normal;
}
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img,section,header,footer,nav, a, table, tr, th, td,textarea, select, input, button{
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section { 
  display:block;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
ol, ul {
  list-style: none;
  list-style-type: none;
  width:100%
}

/********* HTML再定義 ***********************************************/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img,section,header,footer,nav, a, table, tr, th, td,textarea, select, input, button{
	font-family: 'Noto Sans JP', sans-serif;
}
html{
	position:relative;
	min-height:100%;
	font-size: 62.5%;
}
html,
body {
	line-height: 1.4;
	margin: 0 auto;
	background: #fff;
	color: #3f3f3f;
	-webkit-text-size-adjust: none;
}
a{
	color: var(--main-color);
    text-decoration: none;
}
h1 {
	line-height: 1.0;
	font-size: 200%;
}
.main h1{
	width: 100%;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    padding: 20px;
}
h2{
	background:none;
	font-size:20px;
	border:0;
	padding:0;
	margin:10px 0;
	height:30px;
}
h2 i{
	color: var(--main-color);
}
h2 span{
	font-size:12px;
}
h2 a,
h2 a:visited,
h2 a:active{
	float:right;
	border-radius:5px;
	height:30px;
	padding:0 10px;
	line-height:30px;
	font-size:13px;
	color:#111;
	background:#222;
	color:#fff;
}
h2 a:hover{
	background: #666;
	color:#fff;
	border:0;
	opacity:1;
}
h1,h2,h3{
	color:#333;
	font-weight: bold;
	width: 100%;
}
h4, h5, h6 {
	margin: 10px 0;
	font-weight: bold;
}
h3 a:active,h3 a:hover{
	opacity:0.5;
}
form{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
select{
	position: relative;
	display:block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #eee;
	border:0;
	width:100%;
	padding:5px;
	height:40px;
}
.select-group{
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #eee;
	border: 1px solid #ccc;
	border-radius:5px;
}
.select-group:before,
.select-group:after{
	content: '';
	position: absolute;
	z-index: 2;
	top: 15px;
	right: 15px;
	width: 0;
	height: 0;
	border: 4px dashed;
	border-color: #888 transparent;
	pointer-events: none;
}
.select-group:before {
	border-bottom-style: solid;
	border-top: none;
}
.select-group:after {
	margin-top: 7px;
	border-top-style: solid;
	border-bottom: none;
}
.unit{
	margin-left:0.5em;
}
input{
	height:40px;
}
input,textarea{
	border-radius:5px;
	border:1px solid #ccc;
	background:#feffe5;
	padding:5px;
	-webkit-appearance: none;
	max-width:100%;
}
input.readonly{
	background:#c0c0c0;
	color:#666;
}
/*Checkboxes styles*/
.checkboxItem{
	width:100%;
}
.checkboxBox{
	width:100%;
	margin-bottom:20px;
}
input[type="checkbox"] { display: none; }
input[type="checkbox"] + label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font: 14px/20px 'Open Sans', Arial, sans-serif;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 80%;
    margin-left:20%;
    height: 50px;
}
input[type="checkbox"] + label:last-child { margin-bottom: 0; }
input[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -10px;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}
input[type="checkbox"]:checked + label:before {
  width: 10px;
  left: 5px;
  margin-top: -15px;
  border-radius: 0;
  opacity: 1;
  border-color:#6cc0e5;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
textarea{
	resize: none; 
	width:100%;
}

i{
	margin:0 0.5rem;
}
button>i{
	margin:0;
}

table{
	width:100%;
	border-collapse: separate;
	border-spacing: 3px;
}
th{
	background:#DDDDDD;
	padding:10px;
	width:25%;
}
td{
	background:#fff;
	padding:10px;
	width:25%;
}
.tableBody,
.tableBody div{
	display:inline-block;
}
.tableBody,
.tableRow{
	width:100%;
}
.tableTh{
	width:30%;
}
.tableTd{
	width:20%;
}
.tableTh,
.tableTd{
	height:30px;
	line-height:30px;
	border-bottom:1px solid #ddd;
	border-left:1px solid #ddd;
	white-space: nowrap;
	font-size:95%;
}
.tableTh{
	text-align:center;
	background:#eee;
}
.tableTd{
	text-align:right;
	padding:0 5px;
}
.tableTd:last-child{
	border-right:1px solid #ddd;
}
.tableRow:first-child{
	border-top:1px solid #ddd;
}
.disableTd{
	opacity:0;
}
.tableTitle{
	text-align:center;
	width:100%;
	font-weight:bold;
	font-size:1.2rem;
	line-height:40px;
}
.divTable{
	width:100%;
}
.divTr{
	padding:8px;
}
.divTd input{
	width:100%;
	padding:7px;
	-webkit-appearance: none;
	min-height: 40px;
	margin-bottom:5px;
}
.flexTable{
    margin: 20px 0;
}
.flexTable,
.flexTr,
.flexTh,
.flexTd{
	flex-wrap:wrap;
	display:flex;
}
.flexTable,
.flexTr{
	width:100%;
}
.flexTr{
	margin-bottom:5px;
}
.flexTh,
.flexTd{
	width:50%;
	height:50px;
	align-items:center;
	justify-content:center;
}
.flexTh.col2,
.flexTd.col2{
	width:100%;
}
.flexTr{
	background:#f9f9f9;
}
.flexTr:nth-child(2n-1) {
    background: #f1f1f1;
}
.flexTh{
	background:#dddddd;
}
.flexTd form{
	width:calc((100% - 5px) / 2);
	height: 40px;
}
.subText{
	width:95%;
	margin: 20px auto;
	padding:5%;
	background:#eee;
}

/********* 基本構造 *************************************************/

div#container{
	margin: 0 auto 250px;
	min-height:100%;
	height:100%;
}
div.inner{
	width:100%;
	margin: 0 auto;
}
div#container .main{
	margin-top:50px;
	margin-bottom:268px;
	padding-bottom: 30px;
}
.content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}
.content>div{
	width:100%;
}
.pc{
	display:none!important;
}
.flexBox{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
}
/********* メニュー *************************************************/
div#menu h2 {
	display: none;
}
div#menu ul {
	margin: 5px 0;
}
div#menu ul li {
	display: inline;
	list-style: none;
	margin-right: 10px;
}
header{
	position:fixed;
	top:0px;
	z-index: 5;
	width:100%;
}
.header_top{
	background:var(--main-color);
	height:50px;
}
.header_top .inner{
	position:relative;
}
.header_left,
.header_right{
	top:0;
	position:absolute;
	font-weight:700;
	line-height:50px;
	height:50px;
	width:50px;
	text-align:center;
}
.header_left{
	left:0;
}
.header_right{
	right:0;
	background: var(--sub-color);
	color:#222;
}
.header_top a{
	color:#fff;
	font-size:20px;
}
#logo{
	text-align:center;
}
#logo img{
	max-height:50px;
	padding:10px 0;
}
.sb-toggle-right:hover{
	cursor:pointer;
}
.header_navi ul{
	overflow:hidden;
}
.header_navi li{
	float:left;
}
.header_top a{
	color:#fff;
	display: inline-block;
	line-height:50px;
	text-align:center;
	height:50px;
	width:50px;
	font-size:20px;
	font-weight:700;
	background: var(--sub-color);
}
.header_top a:hover{
	background: var(--sub-color);
	text-decoration:none;
}
#mainVisual {
	background: url(../../img/main.jpg) center 40% no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
#mainVisual>div{
	background:rgba(255,255,255,0.2);
}
#sideBtn{
	display:none;
}
#sideBtn + div #user_navi{
	width:0;
}
#sideBtn:checked + div #user_navi{
	width:70%;
}
#user_navi{
	position:fixed;
	background:#222;
	z-index: 10;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	top:0;
	right:0;
	height:100vh;
	overflow-y:scroll;
}
#user_navi ul{
	padding:15px 15px;
	width:100%;
	color: var(--main-color);
}
#user_navi li{
	text-align:center;
	height:40px;
	line-height:40px;
	margin-bottom:10px;
}
#user_navi a{
	width:100%;
	text-align:left;
	display:block;
	height:40px;
	padding:0 5px;
	background:#fff;
	line-height:40px;
}
#user_navi a:hover{
	color:#fff;
	background:var(--main-color);
}	
footer{
	width: 100%;
	background: #333;
	position:absolute;
	bottom:0;
	text-align: center;
	color: #ccc;
	height:268px;
}
footer>.inner{
	padding: 20px 0 20px;
}
footer dd {
	margin: 10px;
}
footer dt {
	font-size:25px;
	font-weight:bold;
}
footer .logo img{
	max-height:50px;
}
#copyright {
	padding-top: 26px;
	letter-spacing: 1px;
}
.bottom_area{
	background: #eee;
	padding: 30px 0;
}
.bottom_area li,
.bottom_area a{
	height:25px
}
.bottom_area a{
	color:#aaa;
}
/********* パンくず *************************************************/
.breadcrumb{
	background: #eee;
	border:0;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	overflow-x: scroll;
	overflow-y: hidden;
}
.breadcrumb ul {
  list-style: none;
  display: flex;
}
.breadcrumb li{
	display: flex;
	white-space: nowrap;
}
.breadcrumb a{
	text-decoration: none;
	color: #444;
	position: relative;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
	background-color: #ddd;
	padding-left: 15px;
	padding-bottom: 5px;
	padding-top: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.breadcrumb li:first-child a{
	padding-left: 5px;
	border-radius: 5px 0 0 5px;
}
.breadcrumb a:hover{
	background: #fff;
}
.breadcrumb a::after,
.breadcrumb a::before{
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1.5em;
	border-top: 1.5em solid transparent;
	border-bottom: 1.5em solid transparent;
	border-left: 1em solid;
	right: -1em;
	padding-left: 1px;
}
.breadcrumb a::after{
	z-index: 2;
	border-left-color: #ddd;
}
.breadcrumb a::before{
	border-left-color: #eee;
	right: -1.1em;
	z-index: 1;
}
#breadcrumbs a:hover::after{
	border-left-color: #fff;
}
/*********   編集  **************************************************/
.editControl ul{
	overflow:hidden;
}
.editControl li{
	text-align:center;
	margin:0 5px;
	float:left;
}
span.editControl{
	overflow:hidden;
	float:right;
	margin-right:20px;
}
.editControl form{
	float:left;
}
.editControl button{
	color:var(--main-color);
	display:inline-block;
	border:0;
	padding:0;
	background:none;
	height:30px;
	line-height:30px;
	font-size:14px;
}
.editControl button:hover{
	opacity:0.5;
}
.control ul{
	padding:0 10px 10px;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
}
.control li{
	width:50%;
	text-align:center;
}
.control li a{
	padding:5px;
	background:#FFB853;
	display:flex;
	width:40%;
	margin:0 auto;
	border-radius:5px;
	border-bottom:3px solid #cc7800;
	color:#fff;
	font-weight:bold;
	height: 40px;
}
.control li button{
	padding:5px;
	background:#FFB853;
	width:100%;
	margin:0 auto;
	border-radius:5px;
	border:0;
	border-bottom:3px solid #cc7800;
	color:#fff;
	font-weight:bold;
	height: 40px;
}
.control li a:hover{
	background:#cc7800;
	border-bottom:0;
	border-top:3px solid #995a00;
	text-decoration:none;
}
.control li input[name=search_word]{
	width:70%;
}
div.editControl li{
	width:30%;
	margin:0 10%;
}
div.editControl li form{
	width:100%;
}
div.editControl li button{
	width:100%;
	display:block;
	text-align:center;
	color:#fff;
	background:#aaa;
	border-radius:5px;
	border-bottom:2px solid #777;
}
/********* ボタン *************************************************/
button.submit,
input.submit,
a.submit,
.otherBtn,
.backBtn,
.snsBtn{
	-webkit-appearance: none;
	background:var(--btn-color);
	color:#fff;
	font-size:15px;
	font-weight:bold;
	text-align:center;
	border:0;
	border-bottom:3px solid #994600;
	width:60%;
	height:50px;
	padding:0;
	margin:20px auto 20px;
	border-radius:5px;
	display:flex;
	align-items:center;
	justify-content:center;
}
button.submit:hover,
.otherBtn:hover,
input.submit:hover{
	background:#994600;
	border-top:3px solid #662f00;
	border-bottom:0;
}
.backBtn{
	background:#aaa;
	color:#fff;
	border-bottom:2px solid #777;
}
.control li button.searchBtn{
	padding: 5px;
	height:32px;
	width:auto;
	background: #333;
	border-radius: 5px;
	border:1px solid #333;;
	color: #fff;
	font-weight: bold;
	margin-left:5px;
	height: 40px;
}
.control li button.searchBtn:hover{
	background:#994600;
}
/********* ページ移動 ***********************************************/
div#page{
	overflow:hidden;
}
div#page ul {
	text-align:center;
}
div#page ul li {
	display: inline-block;
	margin: 5px;
	width:30px;
	height:30px;
	text-align:center;
	line-height:30px;
	border:1px #ccc solid;
	border-radius:5px;
}
div#page ul li.active,
div#page ul li:hover{
	background: var(--main-color);
	color: #fff;
}
div#page ul li:hover input{
	color: #fff;
}
div#page ul li form {
	height: 100%;
	width: 100%;
}
div#page ul li input{
	display: inline-block;
	background:none;
	border:none;
	width:100%;
	height:100%;
}
label {
    display: block;
}
input[type="checkbox"].on-off{
    display: none;
}
/********* ナビゲーション *******************************************/
div#navi ul {
	width:auto;
	margin: 5px 0;
	text-align: right;
	text-align:center;
}
div#navi ul li {
	display: inline-block;
	margin: 5px;
	width:30px;
	height:30px;
}

/********** ERROR *******************************************************/
.error{
	background:#fecece;
	color:#f80707;
}
.message{
	background:#ccebff;
	color:#0196F9;
}
#message_box li{
	padding:10px 15px 0;
}
#message_box li:last-child{
	padding:10px 15px;
	margin-bottom:5px
}
/********* 処理選択 *************************************************/
div#work form {
	margin: 10px 0;
}
div#work form dl dt {
	display: none;
}
div#work form dl dd {
	margin: 0;
}
/********* 個別指定 *************************************************/
/***20201223なんだっけこれ(笑)***/
.attention {
	color: #fff;
	background:#bf0000;
	border-radius:2px 3px;
	margin: 0 0 0 4px;
	padding:2px;
	font-weight: bold;
	font-size:0.78em;
}
