@charset "utf-8";

/*========================================================================================================================


  ◇◆◇ お知らせ ◇◆◇
  
  
========================================================================================================================*/

/*-----------------------------------------------------------------------------------
  ページビジュアル
-----------------------------------------------------------------------------------*/

.visual {
    background-image: url(../../images/info/visual.jpg);
}

#info .inner {
    padding: 0;
}


/*----------------------------------------------------------------------------------------------------

  一覧
  
----------------------------------------------------------------------------------------------------*/

.infoList-warp {
  max-width:1100px;
  margin:50px auto;
  text-align:center;
    box-sizing: border-box;
}

#infoList {
    width: calc(100% + 30px);
  list-style:none;
  text-align:left;
}

#infoList li {
    float: left;
    width: calc(50% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
  line-height:1.4;
}

#infoList li:after {
  content:"";
  display:block;
  height:0;
  clear:both;
}

#infoList a { text-decoration:none; }

#infoList li .thum {
    float: left;
    width: 280px;
    height: 173px;
    margin-right: 1em;
    margin-bottom: 1em;
    overflow: hidden;
    border-radius: 8px;
}

#infoList li .thum_img {
    width: 280px;
    height: 173px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e6e6e6;
    transition: 0.3s;
}

#infoList li .thum_img:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#infoList li .date {
    display: block;
    color: #666;
    margin-bottom: 0.5em;
}

@media screen and (max-width:640px) {
    .infoList-warp {
        width:520px;
    }
    #infoList li .thum {
        width: 255px;
        height: 158px;
    }
}


/*----------------------------------------------------------------------------------------------------

  詳細
  
----------------------------------------------------------------------------------------------------*/

#infoDetail {
  max-width:1100px;
	margin: 50px auto;
}

.infoDetail-head {
  /* border-top:2px solid #0d579a; */
  border-bottom:1px solid #dcdcdc;
  padding:1.25em 0;
  box-sizing:border-box;
  line-height:1.5;
  margin-bottom:30px;
  text-align:left;
}

.infoDetail-head .date_cate {
    display: table;
    font-size: 87.5%;
    margin-bottom: 1em;
    color: #666;
}

.infoDetail-head .date {
    display: table-cell;
    padding-right: 1em;
}

.infoDetail-head .cate {
    display: table-cell;
    color: #666;
    border: 1px solid #666;
    padding: 0px 0.75em;
}

.infoDetail-head h3 {
  color: #4d3930;
  /* font-family:"Noto Sans Japanese"; */
  font-style:normal;
  font-weight:400;
  font-size:160%;
  padding-top:0.2em;
  padding-top:0.15rem;
}

#infoDetail .glog {
    padding-bottom: 30px;
    border-bottom: 1px dotted #ccc;
}

#infoDetail .glog:last-of-type {
    border-bottom: 0;
}

#infoDetail .glog-img_cp { font-size: 87.5%; color:#666;}

#infoDetail .back-btn { text-align:center; line-height:0; padding-top:10px; }

@media screen and (-webkit-min-device-pixel-ratio:0) {
  .infoDetail-head h3 {
    font-weight:600;
  }
}

@media screen and (max-width:640px) {
  .infoDetail-head { margin-bottom:2rem; }
  .infoDetail-head h3 { font-size:125%; }
  #infoDetail .back-btn { text-align:center; padding-top:0.5rem; }
}


