*{color: rgb(100,100,100);
    font-size:15.5px;
    outline:none;
    font-family:"メイリオ",'ヒラギノ角ゴ ProN W3',Meiryo,sans-serif,Helvetica Neue,Helvetica,Hiragino Sans,Hiragino Kaku Gothic ProN;
}
.files_link{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.files_link > *:first-child{
  margin: 5px 0;
  background: gray;
  color: white;
  width: calc(100% - 10px);
}
.files_link > * {
  padding-left: 15px;
  width: calc(50% - 20px);
  background: whitesmoke;
  margin: 1px 2px;
}
.files_link > * > a{
  color: blue;
  text-decoration-line: none;
  font-size: 0.8em;
}
.files_link > * > a:hover{
  background: skyblue;
  cursor: pointer;
}
.main{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: aliceblue;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.main_main{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: aliceblue;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  overflow-y: scroll;
}
.set_row{
  width: 100%;
  max-width: 800px;
  height: auto;
  padding: 30px 0;
}
.set{
  position: relative;
  clear: left;
  width: calc(100% - 5px);
  border: solid 1px gray;
  height: auto;
  margin-top: -1px;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.status_t > div:first-child{color: red;}
.status_t > div:last-child{color: rgb(200, 200, 200);}

.set >div{
  float: left;
  width: calc((100% - 70px) / 3* 1);
  padding-left: 10px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-right: solid 1px gray;
}
.set >div:first-child{
  width: 70px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-right: solid 1px gray;
  height: 100%;
  padding: 0;
  font-size: 0.9em;
}
.set >div:last-child{
  width: calc((100% - 70px) / 3* 2);
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  height: 100%;
  font-size: 0.9em;
  border-right: solid 0px gray;
  padding-left: 7px;
}
#loginform{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#loginform > * {
  margin: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.iconitem{
  background-image: url(../imgs/artbuilding.ico);
  width: 70px !important;
  height: 70px !important;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
#loginform >input{
  border: solid 1px #80808096;
  height: 30px;
  border-radius: 30px;
  padding: 0 10px;
  width: calc(100% - 20px);
  text-align: center;
}
#loginform >input:hover{
  box-shadow: 0 0 10px gray;
}
#loginform >input[type="submit"]{
  width: 100%;
  margin-top: 30px;
  height: 40px;
  color: white;
  background: rgb(0, 153, 255);
  border: none;
  cursor: pointer;
}

#loginform > div.text{
    margin-bottom: 48px;
    font-size: 1.2em;
}
.title{
  font-size: 24pt;
  font-weight: bold;
  border-bottom: solid 3px;
  padding: 0 10px 0 5px;
}
.set:hover{
  background: rgba(105, 90, 205, 0.425);
  cursor:pointer;
}
.set:hover > div,.set:hover > div > .address{color:white;}
.address{pointer-events: none;}
.set:hover > div > .address{pointer-events: all;}
.address:hover{color:blue !important;}

.set_details{
  width: calc(100% - 36px);
  padding: 12px;
  background: white;
  margin: 6px;
  position: relative;
}
.set_details_title{
  font-size: 16pt;
  border-bottom: solid 1px;
  margin-bottom: 11px;
}
.texts{
  border: solid 1px gray;
  padding: 10px;
}

.set_details_btn{
  display: none;
  pointer-events: none;

  position: absolute;
  right: 13px;
  top: 7px;
  padding: 3px 12px;
  border: solid 1px #b1b1b1;
  background: #7bd9ff;
  color: white;
  border-radius: 3px;
}
.set_details_btn:hover{  background: #5cd1ff;}
.iframe_set{
  position: absolute;
  width: 60%;
  height: 60%;
  border: solid 2px;
  background: white;
}
.iframe_set > .header{
  width: 100%;
  height: 30px;
  clear: left;
}
.iframe_set > .main{
  top: 30px;
  width: 100%;
  border: none;
  height: calc(100% - 30px);
  background: ghostwhite;
}

/* スマートフォン用のスタイル */
@media only screen and (max-width: 600px) {
  .files_link > * > a{
      color: blue;
      text-decoration-line: none;
      font-size: 0.8em;
      height: 100%;
      width: calc(100% - 80px);
      word-wrap: break-word;
      overflow: hidden;
      display: block;
  }
}