@charset "utf-8";
/* ******common****** */
@font-face {
	font-family: 'logo_type';
	src: url('../font/logo_typeCondense.otf') format("truetype");
 }
 @font-face {
	font-family: 'uddigikyokashon_r';
	src: url('../font/uddigikyokashon_r.ttf') format("truetype");
 }
 @font-face {
	font-family: 'hgrkk';
	src: url('../font/HGRKK.TTC') format("truetype");
 }
 /* **common** */
 .pc{
	 display: block;
 }
 .sp{
	 display: none;
 }
 html{
	 font-size: 62.5%;
	 box-sizing: border-box;
	font-family: uddigikyokashon_r;
 }
 a{
	 text-decoration: none;
	 color: #333;
 }
 h3{
	font-size: 1.6rem;
	text-align: center;
	padding: 5px 0 10px;
}
.inner-90{ 
	width: 90vw;
	margin: 0 auto;
}
.inner-95{
	width: 95vw;
	margin: 0 auto;
}
.center{
	margin: 0 auto;
}

/* **pagetop** */
#page-top a{
	display: block;
	align-items:center;
	line-height: 60px;
	background-color:#ed8492;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	/*text-transform: uppercase; */
	text-decoration: none;
	font-size:2em;
    opacity: 0.8;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}
#page-top {/*リンクを右下に固定*/
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{/*　上に上がる動き　*/
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{/*　下に下がる動き　*/
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
/* *****main***** */
h2{
    width:95vw;
    font-size:3.5rem;
    margin: 20px;
    text-align: center;
    display: inline-block;
  background-image: -webkit-linear-gradient(left, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
  background-image: -o-linear-gradient(left, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
  background-image: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home_btn{
	display: inline-block;
	margin: 0 0 0 40px ;
	text-align: center;
	float: left;
}
.fa-angle-double-left{
	margin-right: 20px;
}
.fa-angle-double-right{
	margin-left: 20px;
}
.dendo_btn{
	display: inline-block;
	margin: 0 40px 40px 0;
	text-align: center;
	float: right;
}

.dendo_btn p,.home_btn p {
      background-image: -webkit-linear-gradient(left, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
      background-image: -o-linear-gradient(left, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
      background-image: linear-gradient(to right, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
    border-radius: 10px;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
} 
.dendo_btn p:hover,.home_btn p:hover{
	background-color: #ed8492;
	color: #fff;
}
.pic{
	border: 2px solid #ccc;
	margin:3px;
	
	
}
@media screen and (max-width: 900px) {
	.home_btn{
		display: inline-block;
		margin: 0 0 0 20px ;
		text-align: center;
		float: left;
	}
	.dendo_btn{
		display: inline-block;
		margin: 0 10px 10px 0;
		text-align: center;
		margin-bottom: 30px;
	}
	.dendo_btn p,.home_btn p  {
		border-radius: 10px;
		font-size: 1.8rem;
		font-weight: 500;
		padding: 10px 20px;
	} 
}
/* =======================
gallery
====================== */
main{
	clear: right;
}
main >p{
	font-size: 1.4rem;
	margin-left: 30px;
	margin-bottom: 10px;

}
.gallery{
	columns: 4;
	padding: 0 30px; 
	margin-bottom: 100px;
	}
	.gallery li{
	page-break-inside: avoid;
 	 break-inside: avoid;
	}
	

	.gallery img{
		width:100%;
		height:auto;
		/*vertical-align: bottom;*/
		outline: 1px solid gainsboro;
		outline-offset: -1px;
     	/*margin-left: 1px;*/
	}
	@media only screen and (max-width: 900px) {
		.gallery{
		columns:2;
		padding: 0 5px;
		margin-bottom: 20px;
		}	

		h3{
			font-size: 1.6rem;
		}
		main >p{
			font-size: 1.2rem;
			margin: 10px;
			
		}
	}
	

/* =============================
パタッと
====================================*/
.flipLeft{
	overflow: hidden;
	animation-name: flipLeft;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	perspective-origin: left center;
	opacity: 0;
	}
	
	@keyframes flipLeft{
	  from {
	   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	  opacity: 0;
	  }
	
	  to {
	  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	  opacity: 1;
	  }
	}
/* ============================= */
/* 殿堂入り作品 dendo.html
==================================*/
.dendo_title{
	text-align: center;
	margin: auto;
}
.dendo_title p{
	display: inline-block;
	text-align: center;
	color: #fffffb;
	background-image: -webkit-radial-gradient(circle, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1) 80%);
      background-image: -o-radial-gradient(circle, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1) 80%);
      background-image: radial-gradient(circle, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1) 80%);
	padding: 1rem 3rem;
	box-shadow: 0 0 0 5px #e0a408;
	border: 2px dashed #fffffb;
	font-size: 3.0rem;
	margin: 0 auto;
}
.dendo_group{
	margin-top: 60px;
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.dendo_content{
	width: 16vw;
	border: #ccc dotted 1px;
	padding: 20px;
	text-align: center;
	margin-bottom: 40px;

}
.dendo_content-wide{
	text-align: center;
	width: 22vw;
	/* padding: 20px; */
}
.dendo_content p:first-of-type{
	font-size: 1.8rem;
	text-align: center;
	padding-bottom: 20px;
}
.dendo_content p:nth-of-type(2){
	border-radius: 5px;
	background-color: #dfeaf0;
	padding: 10px;
	margin-top: 5px;
	font-size: 1.5rem;
    line-height: 2rem;
	text-align: left;
}
.dendo_content p:nth-of-type(3){
	margin-top: 10px;
    font-size: 1.6rem;
	text-align: center;
}
.dendo_content img{
	width: 16vw;
	margin-bottom: 20px;
}
.dendo_content-wide img{
	width: 22vw;
	margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
	

}
@media screen and (max-width: 768px) {
	.dendo_title{
		text-align: center;
		margin: auto;
	}
	.dendo_title p{
		font-size: 2.5rem;
	
	}
	.dendo_title {
		text-align: center;
	}
	.dendo_title img{
		width: 50vw;
	}
	.dendo_group{
		margin-top: 30px;
		margin-bottom: 30px;
		display: block;
	}
	.dendo_content{
		width: 80vw;
		border: #ccc dotted 1px;
		padding: 20px;
		margin-top: 30px;

	}
	
	.dendo_content img{
		width: 80vw;
		margin-bottom: 20px;
	}
	.dendo_content-wide img{
		width: 80vw;
		margin-bottom: 20px;
	}
}
.past-dendo>div{
	margin-bottom: 60px;

}
.past-dendo_ttl{
  display: inline-block;
  padding: 5px 26px;
  background: rgb(233, 233, 233);
  font-size: 1.5em;
  color: #333;
  line-height: 1.3;
  border-bottom: solid 2px #f5c0c7;
}

/* .past-dendo_ttl::before{
	position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index:-2
}
.past-dendo_ttl::after{
	position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px transparent;
  border-bottom: solid 79px white;
  z-index: -1;
} */
.dendo-person{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*justify-content: space-between;*/
	align-items: flex-start;
	text-align: center;
	font-size: 1.8rem;
    margin-left: -20px;
    margin-right: -20px;
}
.dendo-person li{
	width: calc(100% / 4.8);
    padding: 10px;
    margin:20px;
	border: #ccc 2px solid;
}

.dendo-person img{
	width: 100%;
}

/* ========================
slick
===========================*/
.slick{
	background-color: #efe8d9;
	padding: 30px;
	
}
.slick img{
	width: 18vw;
  	height: 15vw;
  	object-fit: cover;
	
}
.past-dendo{
	margin-bottom: 60px;
}
  
/* =================
****footer*** 
===============*/
footer{
	clear: right;
}
.footmenu {
	width:100%;
	padding:20px 0;
	overflow:hidden;
	background:#efede9;
}
.copyright {
	/* clear:both; */
	padding:20px 0;
	font-size:16px;
	text-align:center;
	color:#535353;
	background:#ffffff;
}
@media screen and (max-width: 500px){
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	h2 {
		font-size: 2.5rem;
		text-align: center;
		margin: 20px auto 20px;
		color: #fff;
		line-height: 1.5;
	}
    h3{
        font-size:1.8rem;
        margin-bottom:0.5rem;
    }
    
	.pic_group {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 20px 2vw;
		
	}
	.past-dendo_ttl{
		font-size: 1.8rem;
		text-align: center;
	}
	.dendo-person li{
		width: 38%;
		padding: 10px;
		margin: 10px;
	}
	.dendo-person{
        margin-left: -10px;
        margin-right: -10px;
	}
}