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

/*_________________ページネーション________________________*/
.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
}
 .prev, .next {
  width:37px;
  height: 37px;
  background: #edebff;
    border: solid 2px #d4d1ff;
  font-size: 11px;

  transition: all 0.15s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
	     border-radius: 25%;
	
}
.fa-chevron-left,.fa-chevron-right{
	color:#333333;
	display: block;
}
.page {
  width: 37px;
  height: 37px;

  font-size: 17px;

  transition: all 0.15s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
background: #edebff;
    border: solid 2px #d4d1ff;
    border-radius: 25%;
}
.page.navi-active {
 background: #d4d1ff;
  border: solid 2px #d4d1ff;
	
}

.first, .last {
  display: none;
}
.pagination > * + * {
  margin-left: 10px;
}
nav.pagination-container {
  padding: 20px 0 40px 0;
}
.prev:hover, .next:hover {
 background: #d4d1ff;
  border: solid 2px #d4d1ff;
	
}

/*_______________News中身__________________________*/

.news_wrappers {
  justify-content: space-between;
  padding: 25px 0px;
}
.blur:hover {
  opacity: 0.5;
 
}
.blur {

  transition: 0.4s;
}
.column {
  width: 470px;
}
.news_date {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
._date {
  font-size: 14px;
  font-weight: 700;
  padding-right: 10px;
}
._type01, ._type02, ._type03, ._type04, ._type05 {
  color: #fff;
  font-weight: 700;
  padding: 1px 2px;
  border-radius: 5px;
  font-size: 11px;
  margin-left: 4px;
	width: 65px;
    text-align: center;
}
._type01 {
 background-color: rgb(99 177 113);
}
._type02 {
 background-color: rgb(239 110 172);
}
._type03 {
  background-color: rgb(248 182 22);
}
._type04 {
  background-color: rgb(111 58 224);
}
._type05 {
  background-color: #ff7215;
}
.news_text {
  line-height: 1.8;
  padding-bottom: 13px;
}
.news_btnz:hover {
  color: #ff3399 !important;
  padding-bottom: 2px;
  border-bottom: 1px solid #ff3399;
  text-decoration: none;
  transition: .4s;
}
.schedule {
  background-color: #f1f1f5;
  padding: 12px 15px;

	  line-height: 1.7;
}
a {
  color: #333333 !important;
  text-decoration: none !important;
}
.news_outer {
  border-bottom: 2px dotted #dddddd;
}
.banner_pic img{
    width: 93%;
}

/*__________切り替え__________________________*/
.panel {
  display: none;
  
}
.panel.active {
  display: block;
}
.tab-area {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    padding: 15px 5px;
    gap: 6px;
    background-color: #f7f7f7;
	margin: 0 0 10px 0;
}
.tab {
padding: 2px 5px 2px 5px;
    text-align: center;
    list-style: none;
    cursor: pointer;
}

.tab:hover{
opacity: 0.7;
	transition: 0.5;
}
.tab.active {
    text-decoration: underline;
    color: #ff7215;
    font-weight: bold;
/*	border-bottom: 1px solid #d4d1ff;*/
	    opacity: 1;
}
