@charset "utf-8";


/*----------------------------------------------------
news
----------------------------------------------------*/

.news {
  padding: 0 0 0px;
}

.news .head {
  margin: 0 6.25%;
}
.news .head ul {
  overflow: hidden;
  text-align: center;
  border-right: solid 1px #eeeeee;
}
.news .head li {
  float: left;
  width: 33.3333%;
  padding-left: 1px;
  box-sizing: border-box;
  border-left: solid 1px #eeeeee;
}
.news .head li a {
  display: block;
  padding: 1.5em 0 0;
  font-size: 1.2em;
  line-height: 1.3;
  height: 2.8em;
}
.news .head li.current a {
  color: #8b1c48;
  position: relative;
}
.news .head li.current a::after {
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  content: '';
  margin: auto;
  vertical-align: middle;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-top: 4px solid #8c1e49;
}
.news .head li a:hover {
  text-decoration: none;
}

@media screen and (min-width: 641px) , print{
  .news {
    padding: 0 0 0px;
  }
  .news .head {
    margin: 30px 2% 0;
  }
  .news .head li.blog a {
    padding: 0.5em 0 1em;
  }
  .news .head li a {
    font-size: 1.4em;
  }
  .news .head li a:hover {
    color: #8b1c48;
    position: relative;
  }
  .news .head li a:hover::after {
    position: absolute;
    bottom: 4px;
    right: 0;
    left: 0;
    content: '';
    margin: auto;
    vertical-align: middle;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-top: 4px solid #8c1e49;
  }
}
@media screen and (min-width: 1061px) {
  .news .head {
    margin: 30px 0 0;
    border-bottom: solid 1px #eeeeee;
  }
  .news .head ul {
    margin: 0 auto;
    width: 800px;
  }
}

/* body */

.news .body ul {
  margin-top: 20px;
}
.news .body li a {
  display: block;
  padding: 10px 0;
  border-bottom: solid 2px #eeeeee;
}
.news .body li a:hover {
  text-decoration: none;
}
.news .body li a .date {
  font-size: 1.4em;
  line-height: 1;
  text-align:left;
}
.news .body li a .date span {
  display: inline-block;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: bold;
  margin-left: 1em;
  padding: 0.3em 1.4em;
  border-radius: 2px;
}
.news .body li.event a .date span {
  background: #1c658b;
}
.news .body li.info a .date span {
  background: #828b1c;
}
.news .body li.blog a .date span {
  background: #1c8b63;
}
.news .body li a .text {
  margin-top: 2px;
  font-size: 1.4em;
  line-height: 1.5;
}
@media screen and (min-width: 641px) , print{
  .news .body li a {
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .news .body li a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 841px) {
  .news .body li a {
    position: relative;
  }
  .news .body li a .date {
    position: absolute;
    top: 14px;
    left: 0;
  }
  .news .body li a .text {
	margin-bottom:0;
  }
}

/* button */

.news .button {
  margin-top: 30px;
  text-align: center;
}
.news .button a {
  display: inline-block;
  color: #8b1c48;
  font-size: 1.4em;
  line-height: 1;
  padding: 0.8em 3em;
  border: solid 1px #8b1c48;
  position: relative;
}
.news .button a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  content: '';
  margin: auto;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  border-top: 1px solid #8b1c48;
  border-right: 1px solid #8b1c48;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news .button a:hover {
  text-decoration: none;
}
@media screen and (min-width: 641px) , print{
  .news .button {
    margin-top: 40px;
    text-align: right;
  }
  .news .button a {
    font-size: 1.2em;
  }
  .news .button a:hover {
    color: #ffffff;
    background: #8b1c48;
  }
  .news .button a:hover::after {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
  }
}