@charset "UTF-8";
/* CSS Document */



/*notices-list*/
.notices-list main .list .box {
  padding: 50px;
}
.notices-list main .list .box section {
  font-size: 2.6rem;
  padding-bottom: .6em;
  border-bottom: dashed 1px #000000;
  display: flex;
}
.notices-list main .list .box section:not(:last-of-type) {
  margin-bottom: .6em;
}
.notices-list main .list .box section time {
  width: calc(240px - 1em);
  padding-left: 2em;
  font-weight: 500;
  display: block;
}
.notices-list main .list .box section p {
  width: calc(100% - (240px - 1em));
  padding-right: 1em;
  letter-spacing: .1em;
}



/*notices-detail*/
.notices-detail main .detail .box {
  padding: 50px;
}
.notices-detail main .detail .title_time {
  display: flex;
  margin-bottom: 25px;
}
.notices-detail main .detail .title_time > h3 {
  order: 2;
  width: calc((100% - 210px));
  font-size: 3.9rem;
  letter-spacing: .1em;
}
.notices-detail main .detail .title_time > time {
  order: 1;
  display: block;
  width: 210px;
  font-size: 2.6rem;
  font-weight: 500;
  padding-left: .5em;
  padding-top: .5em;
}



@media screen and (max-width: 1040px) { 
  .notices-detail main .detail .title_time {
    display: flex;
    flex-direction: column;
  }
  .notices-detail main .detail .title_time > h3 {
    width: 100%;
  }
  .notices-detail main .detail .title_time > time {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
}



@media screen and (max-width: 767px) {  
  /*notices-list*/
  .notices-list main .list .box {
    padding: 5vw;
  }
  .notices-list main .list .box section {
    font-size: 1.3rem;
    flex-direction: column;
  }
  .notices-list main .list .box section time {
    width: 100%;
    padding-left: 0;
  }
  .notices-list main .list .box section p {
    width: 100%;
    padding-right: 0;
  }



  /*notices-detail*/
  .notices-detail main .detail .box {
    padding: 5vw;
  }
  .notices-detail main .detail .title_time {
    display: flex;
    flex-direction: column;
    margin-bottom: 5vw;
  }
  .notices-detail main .detail .title_time > h3 {
    order: 2;
    width: 100%;
    font-size: 2.0rem;
  }
  .notices-detail main .detail .title_time > time {
    order: 1;
    width: 100%;
    font-size: 1.3rem;
  }
    
}



