@charset "UTF-8";
/* CSS Document */
*{
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	word-wrap:break-word;
}
html,
div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
} 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display: block;
}
ul {list-style: none;}

img {
    max-width: 100%;
    height: auto;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
::placeholder{font-size: 100%!important;}
.bold{font-weight: bold;}

a{text-decoration: none;}
.a_center{text-align: center!important;}
.a_right{text-align: right!important;}
.a_left{text-align: left!important;}

.red_text{
    color: #D94E4E!important;
    line-height: 20px!important;
    font-size: 88%!important;
}
.white { color: #fff!important;}
.indent{
padding-left:1em;
text-indent:-1em;
}

i {padding-right: 8px;}


/*-----------------------------------------------------------------
	wrapper　関係
    body
-----------------------------------------------------------------*/
.sys_wrapper{
	width: 100%;
    display: block;
    position: relative;
    min-height: 100vh;
}
html {
	width: 100%;
	height: 100%!important;
	min-height: 100%!important;
	overflow-y: auto;
  background: #004A66;
  scroll-behavior: smooth;
}

body{
  width: 100%;
	/*height: 100%!important;*/
	min-height: 100%!important;
    font:16px;
    font-family: "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "MS PGothic", sans-serif; 
    font-weight: 500;
 /* background: url("../img/bg.png"), rgb(54,119,140);*/
background: url("../img/bg.png"), linear-gradient(180deg, rgba(54,119,140,1) 0%, rgba(0,74,102,1) 100%);
  animation: bgslide 100s linear infinite;
/*background-image:
radial-gradient(circle at 100% 150%, #f8f8f8 24%, #fff 24%, #fff 28%, #f8f8f8 28%, #f8f8f8 36%, #fff 36%, #fff 40%, transparent 40%, transparent),
radial-gradient(circle at 0    150%, #f8f8f8 24%, #fff 24%, #fff 28%, #f8f8f8 28%, #f8f8f8 36%, #fff 36%, #fff 40%, transparent 40%, transparent),
radial-gradient(circle at 50%  100%, #fff 10%, #f8f8f8 10%, #f8f8f8 23%, #fff 23%, #fff 30%, #f8f8f8 30%, #f8f8f8 43%, #fff 43%, #fff 50%, #f8f8f8 50%, #f8f8f8 63%, #fff 63%, #fff 71%, transparent 71%, transparent),
radial-gradient(circle at 100% 50%, #fff 5%, #f8f8f8 5%, #f8f8f8 15%, #fff 15%, #fff 20%, #f8f8f8 20%, #f8f8f8 29%, #fff 29%, #fff 34%, #f8f8f8 34%, #f8f8f8 44%, #fff 44%, #fff 49%, transparent 49%, transparent),
radial-gradient(circle at 0    50%, #fff 5%, #f8f8f8 5%, #f8f8f8 15%, #fff 15%, #fff 20%, #f8f8f8 20%, #f8f8f8 29%, #fff 29%, #fff 34%, #f8f8f8 34%, #f8f8f8 44%, #fff 44%, #fff 49%, transparent 49%, transparent);
background-size: 100px 50px;*/
margin: 0!important;
  padding: 0 0 20px;
}
@keyframes bgslide {
    0% { background-position: 0 0, 0 0;}
  100% { background-position: -1685px 0, 0 0;}
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

@media only screen and (min-width:500px){
  body{
  background-attachment: fixed;
    
  }
}


/*-----------------------------------------------------------------
	form関係
-----------------------------------------------------------------*/

input , select , textarea , button{
font-family: inherit;
}
input[type="password"],
textarea, select, input[type="text"],input[type="file"] {
    padding: 10px;
    border: 2px solid #efefef;
    font-size: 100%!important;
}
input[type="text"],button,select,textarea,input[type="submit"],input[type="file"],input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  border-radius: 0;
    font-size: 100%!important;
    height: 100%;
    width: 100%;
}
input[type="password"],
textarea,
/*select,*/
input[type="text"]{
    padding: 10px;
/*    border: none;*/
    font-size: 100%!important;
    border-radius: 5px;
    background:#fff;
}

input[type="radio"]{
  width: 20px;
  height: 20px;
  border: #fff 2px solid;
  vertical-align: top;
}

input:disabled {
  opacity: 0.6;
}
textarea {
    resize: none;
    min-height: 150px;
}
input[type="file"] {
　border: none;
　outline: none;
}
select{
/*    padding: 10px 15px 10px 5px;*/
    
    padding: 15px 45px 15px 20px;
    background: #fff;
}

.select{
    position: relative;
    display: inline-block;
    width: 100%;
}
.select::after {
    position: absolute;
    color: #000;
    right: 18px;
    bottom: 30px;
    content: "\f0d7";
}
.select::before {
    position: absolute;
    color: #000;
    right: 18px;
    top: 12px;
    content: "\f0d8";
}
.select::after, .select::before {
    color: #000;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 100%;
}


button:hover{
    opacity:0.8;
    cursor: pointer;
}

.imagebox,
.btnright{
    display: flex;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    justify-content: space-between;
    margin: 0 0 10px;
}
.savebtn,
.againbtn,
.okbtn,
.copybtn,
.downbtn,
.logoutbtn
.newbtn,
.editbtn,
.loginbtn{ width: 100%;}

.btnbox{
    position: relative;
    display: block;
    width: 100%;
}
.copybtn{
    min-width: 100px;
    max-width: 100px;
}
.againbtn,
.okbtn,
.addbtn,
.editbtn
.logoutbtn{
    min-width: 150px;
    max-width: 150px;
}
.copybtn{margin: 0 auto;}


.downbtn{
    min-width: 200px;
    max-width: 200px;
}
.newbtn{ margin: 15px auto 0;}
.loginbtn{ margin: 0 auto;}

.savebtn button,
.againbtn button,
.okbtn button,
.copybtn button,
.downbtn button,
.addbtn button,
.logoutbtn button,
.newbtn button,
.editbtn button,
.loginbtn button{
    width: 100%;
    border: none;
    padding: 13px 5px;
    color: #fff;
    border-radius: 3px;
  border: #fff 1px solid;
}

.savebtn button,
.addbtn button,
.logoutbtn button{padding: 8px 5px;}

.newbtn button{background:#6BA1A8; border: #fff 1px solid;}

.savebtn button{background: #f1a900;}
.downbtn button{background:#714d9e;}

.logoutbtn button,
.loginbtn button{background:#004A66; border: #fff 1px solid;}
.okbtn button,
.addbtn button{background:#94d100;}
.againbtn button{background: #000;}
.editbtn button{background: #004A66; padding: 10px; margin: 0 0 10px; font-weight: bold;}

.copybtn button{
    background: #a0a0a0;
    padding: 8px 5px;
}

.deletebtn{
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 10px;
    display: inline-block;
    border: solid 2px #ccc;
    color: #BE0407;
    border-radius: 50px;
    max-width: 50px;
    max-height: 50px;
    font-size: 120%!important;
    background: #fff;
}
.deletebtn i{padding: 0;}



    .r_flex{
  -webkit-box-pack: end!important;
     -ms-flex-pack: end!important;
    justify-content: flex-end!important;
    }
/* check
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.upimage{width: 100%;}
.checkitem label{
   width:100%;
    font-size: 100%;
    border: none;
/*    max-width: 115px;*/
    min-width: 115px;
}
input[type='checkbox']{ display: none; }
input[type='checkbox'] + label{
  line-height:29px;
  position: relative;
  display: flex;
  align-items: center;
  color: #343B42;
  transition: color 250ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > span{
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin:0 6px 0 0;
  min-width: 22px;
  min-height: 22px;
  vertical-align: middle;
  background: #fff;
  border: 2px solid #efefef;
  border-radius: 2px;
  cursor: pointer;  
  transition: all 250ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > .checkitem{
  border-radius: 5px;
  margin:-14px 10px 2px 0;
}
input[type='checkbox']:checked + label > span:before{
    content: "";
    position: absolute;
    top: 5vw;
    left: 0.3vw;
    border-right: 3px solid #8aa018;
    border-bottom: 3px solid #8aa018;
    transform: rotate(45deg);
    transform-origin: 0% 100%;
    animation: checkbox-check 125ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
}
input[type='checkbox']:checked + label > span{border:2px solid #8aa018; }

@keyframes checkbox-check{
  0%{
    width: 0;
    height: 0;
    border-color: #8aa018;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  33%{
    width: .4em;
    height: 0;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  100%{    
    width: .4em;
    height: .7em;    
    border-color: #8aa018;
    transform: translate3d(0,-.4em,0) rotate(45deg);
  }
}
@media only screen and (min-width:1235px){
    input[type='checkbox']:checked + label > span:before{
    top: 4em;
    left: 0.2em;
}
}
@media only screen and (max-width:999px){
    input[type='checkbox']:checked + label > span:before{
    top: 3.3em;
    left: 3px;
}
/*    .btnbox button{height: 40px;}*/
    .downbtn span,
    .radiobox ul li span,
    .csvbtn span,
    .addbtn span{display: none;} 
    .downbtn,
    .csvbtn,
    .addbtn{
        min-width: 60px;
        max-width: 60px;
    }
    .downbtn i,
    .addbtn i{padding: 0;}
}
@media only screen and (max-width:750px){
.deletebtn {
    right: 5px;
    top: 5px;
}  
    select{padding: 17px 25px 17px 10px;}
}
@media only screen and (max-width:550px){
    h2 {margin: 0 0 60px!important;}
    .btnbox,
    .r_flex{
        position: relative;
        padding: 30px 0 0;
    }
    .radiobox{order:2;}    
    .radiobox{width:70% }
    
    .btnright{order:3; }
    .searchbox{
        order: 1;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top:-30px;
    max-width: 261px;
    }
    
select{padding: 13px 25px 13px 10px;}
.select::after {
    right: 9px;
    bottom: 27px;
}
.select::before {
    right: 9px;
    top: 8px;
}
    h1{font-size: 163%;}
    
  .deletebtn {
    right: 0px;
    top: 0px;
    padding: 5px;
    max-width: 30px;
    max-height: 30px;
    font-size: 100%!important;
}  
    
}
h1{margin:0 0 40px 0; color: #fff!important;}

/*-----------------------------------------------------------------
	header関係
-----------------------------------------------------------------*/
header{
    width: 100%;
    background:rgb(0,0,0,0.3);
    height: 60px;
    position: relative;
}

header h1{
    line-height: 55px;
   color: #fff;
  margin: 0 0 0 10px;
  font-size: 0!important;
  background: url("../img/logo.png") no-repeat bottom left;
  background-size: auto 95%;
}
header h1 a{color:#fff; cursor: pointer; width: 100%; max-width: 180px; display: block;}
.logoutbtn{
    position: absolute;
    top: 10px;
    right: 25px;
}

.setting_btn {
    position: absolute;
    top: 10px;
    right: 25px;
  color: #fff;
  font-weight: bold;
  border: #6BA1A8 2px solid;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.setting_btn:before {
  font-family: "Font Awesome 5 Free";
  content: '\f013';
  font-weight: 900;
  margin: 0 5px 0 0;
}

.setting_menu_box {
  position: absolute;
  top: 60px;
  right: 20px;
  background: rgba(107, 161,168,1);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  border-radius: 20px;
  padding: 10px 20px 10px;
  display: none;
  animation: zoomIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  z-index: 9999;
}

.setting_menu_box:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 70%;
  margin-left: 0;
  border: 10px solid transparent;
  border-bottom: 15px solid #6BA1A8;
}

.setting_menu {
  width: 100%;
}

.setting_menu li {
  padding: 10px 5px 10px;
  text-align: left;
}

.setting_menu li:nth-of-type(1) {
  display: none;
}

.setting_menu li p {
  width: 100%;
  font-weight: bold;
  cursor: pointer;
}

.menu_Withdrawal {
  color: #eee;
}

.menu_Withdrawal::before {
  font-family: "Font Awesome 5 Free";
  content: '\f21e';
  font-weight: 900;
  margin: 0 5px 0 0;
}

.menu_logout {  
  color: #FFF097;
}

.menu_logout::before {
  font-family: "Font Awesome 5 Free";
  content: '\f578';
  font-weight: 900;
  margin: 0 5px 0 0;
}

/*-----------------------------------------------------------------
	login関係
-----------------------------------------------------------------*/
.chara{
    max-width: 250px;
/*    position: absolute;
top:-45px;
    right: 0;
    left: 0;*/
    margin: 0 auto;
}

.chara_only,
.nuko {  
    max-width: 200px;
    margin: 0 auto;
    animation: chara_anime ease-in-out alternate infinite 1.5s 250ms;
}

@keyframes chara_anime {
    0% {
        transform: translate(0,0px);
    }

    100% {
        transform: translate(0,-15px)
  }
}

/*.content{
    position: relative;
    top:80px;
    width: 97%;
    margin: 0 auto 50px;
    padding:60px 20px 50px;
    color: #000;
    max-width: 550px;
    background: #fff;
    border:solid 3px #616161;
    border-radius: 10px;
}*/
.content{
    position: relative;
    width: 97%;
    margin: 40px auto 50px;
    padding:60px 20px 50px;
    color: #000;
    max-width: 550px;
    background: rgba(255,255,255,0.2);
    /*border:solid 1px #fff;*/
    border-radius: 10px;
}

.content.login{
  background: none;
    border:none;
    margin: 0 auto 50px;
}
.sys_wrapper .content{
    max-width: 1200px;
    overflow: hidden;
}
.content #login_form{
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
}
.mb15{margin-bottom:15px;}
.mb20{margin-bottom:20px;}

.loginbtn{margin: 20px auto;}
.forget a{
    color: #92D1CF;
    font-size: 88%;
}
.forget a::after{
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
    margin: 0 10px
}

.forget{margin: 5px 0 40px;}
.item{
    font-size: 88%;
    margin: 0 0 20px;
}
.linebox{
	position: relative;
	padding-bottom: 13px;
}
.b_line{
	border-bottom: solid 2px #f4f4f4;
	height: 12px;
}
.matawa {
    display: flex;
    align-items: center;
  color: #fff;
}

.matawa:before,
.matawa:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}

.matawa:before {
    margin-right: 1rem;
}

.matawa:after {
    margin-left: 1rem;
}
/*-----------------------------------------------------------------
	管理画面　関係
-----------------------------------------------------------------*/
/*.backbtn_sec,
a.backbtn{
    position: absolute;
    width: 65px;
    height: 65px;
}
.backbtn_sec{
    bottom: 0px;
    right:0px;
    border-bottom: 65px solid #004A66;
    border-left: 65px solid transparent;
}
a.backbtn{
    top: 0px;
    left:0px;
    border-top: 65px solid #004A66;
    border-right: 65px solid transparent;
}

.backbtn p{
    position: absolute;
    top: -51px;
    left: 4px;
    display: inline-block;
    font-size: 80%;
    color: #fff;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  cursor: pointer;
}*/

.backbtn {
  width: 100%;
  max-width: 100px;
  background: #004A66;
  display: block;
  border: none;
  padding: 13px 5px;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  border: #fff 1px solid;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 5px;
}

.backbtn p {
  padding: 0;
  margin: 0;
  line-height: 1em;
}

h2 i img{max-width: 35px;}
h2 {margin: 0 0 30px; color: #fff;}
.listtbl {
    width: 100%;
    background: rgba(255,255,255,0.8);
    border: #ccc 1px solid;
    margin-bottom: 20px;
}
.listtbl thead{
    width: 100%;
/*    border-top: #ccc 1px solid;*/
    border-bottom: #ccc 1px solid;
    background: rgb(248,248,248,0.3);
}

.listtbl tbody tr:hover,
.p_link tbody tr:hover{ background:#f8f8f8; cursor: pointer;}
.listtbl th,
.listtbl td {
    border-bottom: #f3f3f3 1px dashed;
    min-width: 200px;
    padding: 15px 10px;
}


.bb td{border-bottom: #ddd 1px solid;}
.listtbl th{
    padding: 8px 10px;
    font-size: 90%;
}
.listtbl td:nth-child(n+1):nth-child(-n+3){border-right: 2px dashed #efefef;}
.listtbl td:nth-child(3){padding:15px 25px;}
.listtbl td:first-child{width: 20%;}
.bb td:last-child{
    margin: 0;
    position: relative;
    height: 100%;
    padding: 8px 40px 8px 25px;
}
.bb td:last-child div{
    width: 100%;
    line-height: 160%;
    display:block;
}
.bb td:last-child::after{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
font-size: 88%;
    padding: 0 0 0 20px;
    color: #555;
}

.tablescroll {margin: 5px 0 0;}

.addtbl tr{
    width: 100%;
    border-bottom: solid 2px #ddd;
}
.addtbl tr td,
.addtbl tr th{
    padding: 10px 20px!important;
    border-bottom: 2px dotted #f0f0f0;
}
.addtbl tr:last-child td,
.addtbl tr:last-child th{
    border-bottom: none;
}
.addtbl{
    max-width: 1000px;
    margin: 0 auto 30px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px 0px;
    font-size: 95%;
    border: 2px solid #616161;
}
.addtbl tr th{
    padding: 10px;
    background: #ddd;
    width: 20%;
    min-width: 195px!important;
}

.addtbl .mainimg{
    max-width: 400px;
    border: solid 3px #efefef!important;
}

.addtbl img{border-radius: 3px;}
.addtbl label{margin: 0;}

.topbtn{
    max-width: 500px;
    margin: 50px auto 30px;
}
.topbtn li{
    display: inline-block;
    margin: 0 10px;
}
.topbtn li button{line-height: 30px;}


.delete_set{width: 100%;}


.project_namebox{
    margin: 0 auto 20px;
    max-width: 600px;
}
.project_namebox input{margin: 0px auto 10px;}
.e_title,
.p_title{
    font-size: 88%;
    margin: 10px 0 0;
    color: #fff;
}
.project_tbl {
  width: 100%;
  margin-left: 8%;
}

.project_tbl th,
.project_tbl td {
  padding: 5px 10px 0;
  vertical-align: bottom;
  text-align: left;
}

.project_tbl td .copybtn {
  margin: 0;
  padding: 0 0 10px;
}

.project_tbl td .copybtn button {
  font-weight: bold!important;
}


/*.project_tbl tr:first-child {
  display: none;
}

.project_tbl td {
  display: none;
}*/

.imagebox{margin: 20px 0;}

.manybox,
.positionbox{
    width: 45%;
    max-width: 500px;
}
.manyimg,
.positionimg{
    border-radius: 10px;
    border:solid 2px #ccc;
    position: relative;
    height: 0;
    z-index: 3;
  cursor: pointer;
}

.manyimg{
    width:90%; 
    padding: 30%;
}

.positionimg{
    display: inline-block;
    width: 100%;
    padding: 14%;
    overflow: hidden;
    background: #f8f8f8 url(../img/upload.jpg)no-repeat;
    background-size: auto;
    background-position: 50% 50%;
    height: 100%;
}
.positionbox{
    margin: 0 0 0 2%;
}
.positionimg input{
    border-radius: 10px;
    border: none;
}
.manyimg_img,
.manyimg img,
.positionimg img{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  min-width: 100%;
    min-height: 100%;
  object-fit: cover;
font-family:"object-fit:cover;";
border-radius:10px;
}
.manyimg_img{overflow: hidden;}
.manyimg::after,
.manyimg::before{
    border-radius: 10px;
    content: "";
    width: 100%;
    max-width: 500px;
    height: 100%;
    position: absolute;
    
}
.manyimg::after{
    z-index: -2;
    right: -23px;
    bottom: -23px;
    background: #aaa;
    border:solid 2px #ccc;
    
}
.manyimg::before{
    z-index: -1;
    right: -13px;
    bottom: -13px;
    background: #ccc;
    border:solid 2px #ccc;
}
.edittbl{
    width: 100%;
  max-width: 800px;
    margin: 45px auto 0;
    border-collapse:separate;
    border-spacing:0 10px;
}
.edittbl td{width:150px; vertical-align: bottom;}
.edittbl th{width: calc(100% - 200px); text-align: left;}
.edittbl th input[type="text"]{height: 100%!important;}
/* 応急処置 */
.edittbl th label{ color: #fff;}
.edittbl th label + label{ margin: 0 0 0 20px;}
.savebtn {
    width: 100px;
    max-width: 100px;
}
.savebtn {
    position: absolute;
    top: 5px;
    right: 5px;
}

.status_bar {
  background: rgba(0, 74, 102, 0.6);
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.status_bar span {
  background: #004A66;
  font-size: 113%;
  font-weight: bold;
  padding: 10px;
  margin: 0 10px;
}

/*.photo_scroll_box {
  background: rgba(0, 74, 102 0.8);
  height: 300px;
  overflow-y: auto;
  border: #fff 1px solid;
  text-align: center;
}*/

.photo_list {
  width: 100%;
  margin: 20px auto;
  text-align: left;
  letter-spacing: -0.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.photo_list li {
  width: 19%;
  text-align: left;
  /*display: inline-block;*/
  margin: 0 1% 10px 0;
  letter-spacing: normal;
}

.photo_img {
  padding-top: 100%;
	object-fit: cover;
	overflow: hidden;
	position: relative;
  cursor: pointer;
}

.photo_img img {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
	font-family: 'object-fit:cover;';
}

@media only screen and (min-width:1280px){

.manyimg::after{
    z-index: -2;
    right: -23px;
    bottom: -23px;
    
}
.manyimg::before{
    z-index: -1;
    right: -13px;
    bottom: -13px;
}}
@media only screen and (max-width:999px){
 .tablescroll {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
}
@media only screen and (max-width:750px){
h1{font-size: 125%;}
  .project_tbl {
    margin-left: 0;
  }
.project_tbl th,
.project_tbl td {
  width: 100%;
  display: block;
  padding: 5px 10px 0;
  vertical-align: bottom;
  text-align: left;
}
.sys_wrapper .content.login h1{font-size: 163%!important;}
  
.cancelbtn{max-width: 45%;}
.menubox li{width: 48%;}
.menubox li p{font-size: 94%;}
.menubox li i{font-size: 250%;}

.menubox li:nth-child(3n+2):last-child {
    margin-left: 0;
    margin-right: auto;
}
 .menubox li:nth-child(n+1):nth-child(-n+4){margin-bottom: 40px;}
.menubox li:nth-child(n+5){margin-bottom: 0px;}
.menubox li i img{ margin: 18px 0 0;}
}

@media only screen and (max-width:550px){
.edittbl td{width:120px;}
.edittbl th{width: calc(100% - 150px);}
}
@media only screen and (max-width:500px){
    .topbtn li:nth-child(2){display: none;}
    .topbtn li 
    {width: 48%;
        margin: 0;
    }
    .okbtn,
    .againbtn{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
.manybox, .positionbox {width: 48%;}
    .edittbl td,
.edittbl th{
    width:100%;
    display: block;
    }
    .edittbl td .copybtn{
        max-width: 100%;
        margin: 5px 0 0;
    }
    .edittbl{
        border-spacing:0 30px;
        margin: 0;
    }
    .okbtn{margin: 0 0 10px;}
    
    h1{font-size: 100%;}
    .sys_wrapper .content.login h1{
    font-size: 125%!important;
    }
.com_wrapper .addtbl tr th,
.com_wrapper .addtbl tr td,
.addtbl tr th,
.addtbl tr td{
    width: 100%!important;
    display: block;
    font-size: 88%;
    max-width: 100%!important;
    padding: 10px!important;
    border-bottom: none;
    }
.addtbl{
    line-height: 20px;
    border: none;
} 
.cancelbtn{max-width: 100%;}
.menubox li{
    width: 100%;
    padding: 0px;
    text-align: left!important;
    }
.menubox li i,
.menubox li p{
        display: inline-block;
        line-height: 50px;
    }
.tem_title{line-height: 15px!important;}
.menubox li i {
    font-size: 125%;
    padding: 0px 15px 0px 0;
}
.menubox li p{font-size: 100%;}
    
 .menubox li:nth-child(n+1):nth-child(-n+5){margin-bottom: 20px;}
.menubox li i img{
    width: 25px;
    margin: 0;
    }
.menubox li a {height: 60px;}
a.gr span {
    padding: 0px 10px!important;
    height: 50px;
    line-height: 50px;
}
.status_bar {
  font-size: 75%;
}
.photo_list li {
  width: 24%;
  margin: 0 1% 10px 0;
}
}

.closeModal {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 150%;
    color: #555;
}
/*モーダルウィンドウ（終）*/
/*モーダルウィンドウ*/
.modalArea {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.modalBg {
  width: 100%;
  height: 100vh;
    background-color: rgba(50,50,50,0.5);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 96%;
  padding:20px 40px;
  background: #fff;
border-radius: 5px;
overflow-y: auto;
max-width: 1000px;
    /*height: 90vh;*/
  margin: auto;
	justify-content: center;
  align-items: center;
	text-align: center;

}

.modalContents {
  height: 90vh;
  overflow-y: auto;
}

/*====slickレイアウト設定====*/

.sliderArea{
    max-width: 100%;
    margin: 0 auto;
    padding:10px 20px;
}

.slick-slide{
    margin: 0 5px;
    
}

.slider_thumb .slick-slide {
  width: 100%;
  height: 500px;
  background: #f7f7f7;
  border: #eee 1px solid;
}

.slider_thumb .slick-slide img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.thumb {
  margin: 10px 0 0;
}

.thumb .slick-slide {
  height: 137px;
	object-fit: cover;
	overflow: hidden;
	position: relative;
  cursor: pointer;
}

.thumb .slick-slide img {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
	font-family: 'object-fit:cover;';
}

/* arrow */
.slick-prev,.slick-next{z-index:1;}
.slick-prev::before,.slick-next::before{
    color: #000;
}
.slick-next::before,
.slick-prev::before {font-size: 200%;}
.slick-next::before {
    font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
}
.slick-prev::before {
    font-family: "Font Awesome 5 Free";
  content: '\f053';
  font-weight: 900;
}

@media only screen and (max-width:750px){
  .modalWrapper{
  padding:20px 20px;
   /* height: 70vh;*/
}
  
  .sliderArea{
    padding:0;
}
  
.slider_thumb .slick-slide {
  height: 350px;
}
  
  .thumb .slick-slide {
  height: 84px;
}
  
.slick-next::before {
  font-size: 88%;
}
.slick-prev::before {
  font-size: 88%;
}
  
  .slick-prev {
    left: -15px;
  }
  
  .slick-next {
    right: -20px;
  }

}

/* lightbox start */
#spotlight {
  
background: url("../img/bg_gallery.png"), rgba(0, 0, 0, 0.95);
  animation: bgslide 100s linear infinite;
  opacity: 0.8;
}

.spl-header {
  background: rgba(0, 74, 102, 0.5);
}

.spl-pane>* {
  max-width: 90%;
  max-height: 90%;
}
/* lightbox end */


/*-----------------------------------------------------------------
	ポップアップ
-----------------------------------------------------------------*/

.popup {
  max-width: 500px;
  /*background: rgba(255,255,255,0.9);*/
  background: rgba(107, 161,168,0.9);
  border: #fff 4px solid;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px 15px 15px;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10000;
  animation: zoomIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  display: none;
}

/*.popup::after {
  position: absolute;
  top: 18px;
  right: 10px;
  font-family: "Font Awesome 5 Free";
  content: '\f057';
  font-size: 113%;
  font-weight: 900;
    margin: 0 5px 0 0;
}*/
 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*-----------------------------------------------------------------
	オーバーレイ
-----------------------------------------------------------------*/

.over_wrap {
	min-width: 100%;
	min-height: 100%;
	background-color:rgba(0,0,0,0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	margin: 0 auto;
	display: none;
	justify-content: center;
  align-items: center;
	text-align: center;
}

.over_box {
	width: 96%;
	max-width: 400px;
	height: 200px;
  background: rgba(107, 161,168,1);
	/*background: #fff;*/
	border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	color: #222;
	padding: 10px 10px 10px;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	vertical-align: middle;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	padding: 50px 20px 30px;
}

.over_title {
	font-size: 115%;
  font-weight: bold;
  color: #fff;
	margin: 0 0 30px;
}

.half_list {
	width: 100%;
}

.half_list li {
  width: 40%;
	display: inline-block;
	margin: 0 2%;
	vertical-align: top;
}

.bigbutton {
  width: 100%;
  max-width: 150px;
  background: #eee;
  border: #eee 2px solid;
  border-radius: 5px;
  color: #222;
  padding: 10px 10px;
  font-weight: bold;
}

.save_btn {
  border: #004A66 2px solid;
  background: #004A66;
  color: #fff;
}


/*-----------------------------------------------------------------
	エラーメッセージ
-----------------------------------------------------------------*/

.error_m {
  background: rgba(0,0,0,0.3);
  border-radius: 5px;
  color: #ff9797;
  font-size: 88%;
  font-weight: normal;
  padding: 10px;
  margin: 10px 0;
  text-align: left;
  display: none;
  position: relative;
  z-index: 1;
}

.error_m:before {
  font-family: "Font Awesome 5 Free";
  content: '\f06a';
  font-weight: 900;
    margin: 0 5px 0 0;
}

#newbtn {
  margin: 15px 0 0;
}

#company_login_pass,
#set_password,
#set_password_verification,
#reset_password_verification,
#password_submitbtn {
  margin: 15px 0 0;
}