@charset "UTF-8";
/* CSS Document */
#activityreport {
	background: #f0f0f0;
	padding-top: 60px;
	padding-bottom: 60px;
}
#activityreportNav ul {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#activityreportNav ul a {
	width: 25%;
	font-size: 12px;
	border-bottom: 2px solid #B7B7B7;
	padding-bottom: 10px;
	position: relative;
}


/*Instagram*/
#insta-ttl h3 {
	display: inline-block;
	font-weight: bold;
	font-size: 120%;
	margin-right: 24px;
}
#insta-ttl p {
	display: inline-block;
}
.news-instagram {
  max-width: 1170px;
  margin: 0 auto;
  font-size: 20px;
  padding: 0 10px 4em;
}
.news-instagram-block {
  padding-top: 15px;
}
#instagram-list {
  padding: 1px 0 0 1px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
#instagram-list .item {
  box-sizing: border-box;
  margin: -1px 0 0 -1px;
}
#instagram-list .item a {
  position: relative;
  display: block;
  padding-bottom: 100%;
  overflow: hidden;
  background: #fafafa;
}
#instagram-list .item a:hover img {
	opacity: 1;
}
#instagram-list .item a:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1.5em 0 0 -1.5em;
  z-index: 1;
  width: 3em;
  height: 3em;
  border: .4em solid #bababa;
  border-right-color: transparent;
  border-left-color: transparent;
  box-sizing: border-box;
  border-radius: 50%;
  animation: instaLoading 1s infinite linear;
}
@keyframes instaLoading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#instagram-list .item a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: transform .3s ease;
}
#instagram-more {
  margin: -4em 0 6em;
  font-weight: 700;
  cursor: pointer;
  color: #804c9e;
  text-decoration: underline;
  text-align: center;
  font-size: 20px;
}
@media print,screen and (min-width: 801px) {
  #instagram-list .item {
    width: 25%;
  }
  #instagram-list .item a:hover img{
    transform: scale(1.1);
  }
}
@media screen and (max-width: 800px) {
  .news-cat-title,
  #instagram-more,
  .news-instagram {
    font-size: 16px;
  }
  .news-cat-title .note {
    display: block;
    padding-left: 0;
    font-size: 13px;
  }
  #instagram-list .item {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
	#insta-ttl h3 {
		display: block;
		margin: 0 0 16px;
	}
	#instagram-more {
  		margin: -6em 0 6em;
	}
}
@media screen and (max-width: 480px) {
  .news-cat-title,
  #instagram-more,
  .news-instagram {
    font-size: 14px;
  }
  .news-cat-title .note {
    display: block;
    font-size: 12px;
  }
}


/*活動報告記事一覧*/
#activityreportList ul {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 50px;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#activityreportList ul li {
	width: 31.3%;
	background: #fff;
	margin-left: 3%;
	margin-bottom: 30px;
	display: flex;
}
#activityreportList ul li a {
	display: block;
	text-align: left;
	line-height: 1.6;
	width: 100%;
}
#activityreportList ul li a:hover {
	text-decoration: none;
}
#activityreportList ul li a .img {
	position: relative;
	padding: 52% 0 0;
}
#activityreportList ul li a .img p {
	overflow: hidden;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#activityreportList ul li a .img p img {
    display: block;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#activityreportList ul li.none {
	display: block;
	background: none;
	width: 100%;
	text-align: center;
	padding-top: 40px;
	font-size: 16px;
}
#activityreport strong.postCat {
	font-weight: normal;
	font-size: 16px;
	margin-left: -10px;
}
#activityreport .date {
	font-size: 12px;
	opacity: 0.8;
	line-height: 1.6;
}
/* PC hover */
@media screen and (min-width: 768px) {
  #activityreportList ul li a .img p img {
    transition: all .3s linear;
  }
  #activityreportList ul li a:hover .img p img {
    transform: scale(1.05) translate(-50%,-50%);
  }
}
#activityreportList ul li:nth-child(3n+1) {
	margin-left: 0;
}
#activityreportList ul li .text {
	padding: 10px;
}
#activityreportList ul li .text .foot {
	padding-top: 10px;
	font-size: 12px;
}
#activityreportList ul li .text .foot .cat {
	padding-left: 5px;
}
#activityreportList ul li .text .foot .cat span {
	padding: 0 5px;
	border-left: #666 solid 1px;
}
#activityreportList ul li .text .foot .cat span:first-child {
	border-left: none;
}
#activityreportList .paging {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 20px;
	padding: 0 10px;
	position: relative;
	box-sizing: border-box;
}
#activityreportList .paging .page-numbers {
	color: #1e2973;
	padding: 0 20px 0 26px;
	border-left: #1e2973 solid 1px;
	vertical-align: middle;
}
#activityreportList .paging .page-numbers:first-child,
#activityreportList .paging .prev + .page-numbers {
	border: none;
}
#activityreportList .paging a {
	color: #1e2973;
}
#activityreportList .paging .prev,
#activityreportList .paging .next {
	display: inline-block;
	width: 18px;
	height: 37px;
	border: none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 0;
}
#activityreportList .paging .prev {
	background: url(../img/common/arrow-left.svg) center no-repeat;
	left: 20px;
}
#activityreportList .paging .next {
	background: url(../img/common/arrow-right.svg) center no-repeat;
	right: 20px;
}


/* PC hover */
@media screen and (min-width: 768px) {
	#activityreportList .paging a:hover {
		color: #3e6eb3;
	}
	#activityreportList .paging .prev:hover {
		background: url(../img/common/arrow-left-hoverblue.svg) center no-repeat;
	}
	#activityreportList .paging .next:hover {
		background: url(../img/common/arrow-right-hoverblue.svg) center no-repeat;
	}
	
	
	#activityreportNav ul a:hover,
#activityreportNav ul a.current {
	text-decoration: none;
	border-color: #1e2973;
	color: #1e2973;
}
#activityreportNav ul a:hover::after,
#activityreportNav ul a.current::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	left: 0;
	bottom: -24px;
	margin: auto;
	border: solid 12px transparent;
	border-top-color: #1e2973;
}
}


/** tablet **/
@media screen and (max-width: 800px) {
	#activityreportList ul {
		padding: 0 20px;
		box-sizing: border-box;
	}

#activityreportNav ul a.current {
	text-decoration: none;
	border-color: #1e2973;
	color: #1e2973;
}

#activityreportNav ul a.current::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	left: 0;
	bottom: -24px;
	margin: auto;
	border: solid 12px transparent;
	border-top-color: #1e2973;
}
}


/** smartphone **/
@media screen and (max-width: 640px) {
	#activityreportList ul {
		padding: 0 15px;
	}
	#activityreportList ul li {
		width: 100%;
		margin-left: 0;
	}
	#activityreportList ul li a .img {
		padding: 0;
	}
	#activityreportList ul li a .img p {
		position: relative;
	}
	#activityreportList ul li a .img p img {
		position: relative;
		transform: none;
		left: 0;
	}
	#activityreportList .paging .page-numbers {
		display: none;
	}
	#activityreportList .paging .page-numbers.prev,
	#activityreportList .paging .page-numbers.next {
		display: inline-block;
	}
	

#activityreportNav ul a.current {
	text-decoration: none;
	border-color: #1e2973;
	color: #1e2973;
}
#activityreportNav ul a.current::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	left: 0;
	bottom: -24px;
	margin: auto;
	border: solid 12px transparent;
	border-top-color: #1e2973;
}
	
}