/* CSS Document */
/** メイン **/
.wrapperFull {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 40px;
	/*  background-color: #000;*/
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;    
}
@media screen and (max-width: 599px){
.wrapperFull {
	padding: 10px;
}
}

.wrapperFull h2 {
    text-align: center;
}


.tweets .items {
    margin: 0;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}
.wrapperFull .tweets .items {
    padding: 0 20px;
}
@media screen and (max-width: 599px){
.wrapperFull .tweets .items {
    padding: 0px;
}
}



.wrapperFull .tweets .items .item {
    width: 20%;
    padding: 45px 10px;
}

@media screen and (max-width: 720px){
.wrapperFull .tweets .items .item,
.tweets .items .item {
    width: 50%;
}
}

@media screen and (max-width: 599px){
.wrapperFull .tweets .items .item,
.tweets .items .item {
    width: 100%;
}
}

.tweets .items .item .inner {
    position: relative;
    cursor: pointer;
	color: #fff;
    background-color: rgba(214,142,12,1.00);
	padding: 5px;
	background-image: -webkit-linear-gradient(272deg,rgba(255,230,57,1.00) 0%,rgba(255,255,93,1.00) 25.00%,rgba(214,142,12,1.00) 100%);
	background-image: -moz-linear-gradient(272deg,rgba(255,230,57,1.00) 0%,rgba(255,255,93,1.00) 25.00%,rgba(214,142,12,1.00) 100%);
	background-image: -o-linear-gradient(272deg,rgba(255,230,57,1.00) 0%,rgba(255,255,93,1.00) 25.00%,rgba(214,142,12,1.00) 100%);
	background-image: linear-gradient(182deg,rgba(255,230,57,1.00) 0%,rgba(255,255,93,1.00) 25.00%,rgba(214,142,12,1.00) 100%);
}
.tweets .items .item .inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 25px;
    background-image: url('../grandprix/images/item_waku.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: -24px;
    left: 0;
}
.tweets .items .item .inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 25px;
    background-image: url('../grandprix/images/item_waku_bottom.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    bottom: -24px;
    left: 0;
}



.tweets .items .item .name {
    text-align: center;
    padding: 5px 0px 0px;
}

.tweets .items .item .thumb {
    margin: 0;
    padding: 0;
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}
.tweets .items .item .thumb::before {
    display: block;
    content: "";
    margin: 0;
    padding-top: 174%;
}

.tweets .items .item .thumb img {
    max-width: 100%;
    height: auto;
    vertical-align:top;
    opacity: 0;
}
.tweets .items .item .thumb .enlargement {
	pointer-events: none;
	content: '';
	width: 350px;
	height: auto;
	position: absolute;
    transition: 0.3s;	
	z-index: 100;
	top: 50%;
	left: 50%;
	opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-box-shadow: 0px 8px 24px rgba(0,0,0,0.50);
	box-shadow: 0px 8px 24px rgba(0,0,0,0.50);
	border-radius: 8px;
    border: 2px solid #ffff66;
    transition: 0.0s;

}
.wrapperFull .tweets .items .item .thumb .enlargement {
	width: 420px;
}

@media screen and (max-width: 639px) {
.tweets .item .thumb .enlargement {
    display: none;
}
}

.tweets .item .inner:hover .thumb .enlargement {
	content: '';
	opacity: 1;
	transition: 0.3s;
}

.galleryTitle {
    display: flex;
    justify-content: center;
}
.galleryTitle::before,
.galleryTitle::after {
    content: "";
    display: block;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.galleryTitle::before {
    background-image: url("../grandprix/images/waku-l.png");
}
.galleryTitle::after {
    background-image: url("../grandprix/images/waku-r.png");
}



.galleryTitle h2 {
    width: 32%;
}
@media screen and (max-width: 720px){
.galleryTitle h2 {
    width: 100%;
}
.galleryTitle::before,
.galleryTitle::after {
    content: none;
}
}

.galleryTitle h2 img {
    max-width: 100%;
    height: auto;
}


.page-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.page-nav > div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: 700;
    background-color: #000;
    color: #fff;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid #444;
    text-align: center;
}
.page-nav > div.current {
    border-color: #ccc;
    background-color: #fff;
    color: #333;
}



