
<style>
	*{
		margin:0;
		padding:0;
	}

a, p, table, td, th, h6, ul, li, img {
	margin:0;
	padding:0;
}


body {
	margin:0 auto;	
	background-color:#f5f5f5;
 font-family:'Noto Sans JP', sans-serif;
}

h1,h2,h3{
	font-family:'Anton';
	color:#25a444;
	margin:0;
	padding:0;
}

	.wrapper {
	width:80vw;
	margin:0 auto;
		max-width:1024px;
}
	.wrapper2 {
	width:80vw;
	margin:0 auto;
		max-width:1024px;
	position:relative;
}

/*ヘッダー部分*/
header{
		background:white;
		z-index:10;
		height:100px;
		display:flex;
		overflow:hidden;
		justify-content:space-between;
		position:relative;
		transition:all 1s;
	
    box-shadow: 0px 0px 15px -5px #777777;
	}

	header h1 {
	margin-left:2rem;
	line-height:100px;
	
}

	header .logoPic{
	width: 380px;
    height: 100px;
    display: block;
    object-fit: contain;
}
#navbtn {
	transition:all 1s;
	width:45px;
	height:45px;
	background:white;
	margin:auto 0;
	position:absolute;
	top:20px;
	right:20px;
	display:none;
}


#navbtn span {
	width:35px;
	height:2px;
	background: #25a444;
	position:absolute;	
}
#navbtn span:nth-child(1){
	left:5px;
	top:11px;
	transition:all 0.2s;	
}
#navbtn span:nth-child(2) {
	left:5px;
	top:21px;

}

#navbtn span:nth-child(3) {
	left:5px;
	top:31px;
	transition:all 0.2s;
}

.open span:nth-child(1) {
	transform:translateY(10px) rotate(45deg);
}
.open span:nth-child(2) {
	opacity:0;
 	top:22.5px;
}
.open span:nth-child(3) {
	transform:translateY(-10px) rotate(-45deg);
}



	nav{
	width:65vw;

	}
	nav ul{
		display:flex;
		list-style:none;
		justify-content:space-between;
				align-items:center;
		margin-right:1rem;
	}
	nav ul li{
		line-height:100px;
	}
	nav ul li a{
		font-size:0.9rem;
		color:green;
		text-decoration:none;
		
	}

#navfull {
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:-100%;
	background-color:rgba(37,164,68, 0.98);
	transition:1s;
	z-index:999;
	display:flex;
	justify-content:center;
	align-items:center;
}

#navfull h1 {
	font-size:2rem;
	padding:1rem 0;
	margin:0;
	color:white;
}

#navfull ul{
	list-style:none;
	height:80%;
	width:80%;
	margin:auto 0;
	display:flex;
	flex-direction:column;	

}
#navfull ul li {
	width:100%;
	border-width:80%;
	padding-bottom:0.5rem;
}
.mainmenu {
	font-size:1.5rem;
}
.submenu {
	font-size:1rem;
	margin-left:1rem;
}

#navfull ul li a {
	text-decoration:none;
	color:white;
}
#navfullbtn {
	transition:all 1s;
	width:45px;
	height:45px;
	margin:auto 0;
	position:absolute;
	top:20px;
	right:20px;
}
#navfullbtn span {
	position:absolute;
	width:35px;
	height:2px;
	background:white;		
}
#navfullbtn span:nth-child(1){
	left:5px;
	top:11px;
	transition:all 0.2s;	
		transform:translateY(10px) rotate(45deg);
}
#navfullbtn span:nth-child(2) {
	left:5px;
	top:21px;
		opacity:0;
 	top:22.5px;

}

#navfullbtn span:nth-child(3) {
	left:5px;
	top:31px;
	transition:all 0.2s;
		transform:translateY(-10px) rotate(-45deg);
}

.closenav {
		overflow:hidden;
	display:none;

}
.opennav {
	overflow:scroll;
	transform:translateY(100%);
	transition:all 1s;
	display:block;
  -ms-overflow-style: none;    
   scrollbar-width: none;       
}
.opennav::-webkit-scrollbar {  
        display:none;  
}
/*ここからトップタイトル*/
#toptitle {
	height:400px;
	background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../images/gallery.jpg");
	background-position: 5% 10%;
	background-size:cover;
	background-position:center;
}

.toptitlebig {	
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
}
#toptitle h1 {
	text-align:center;
	font-size:7rem;
	color:white;
}
#toptitle p {
	text-align:center;
	color:white;
	font-size:1.5rem;
}

/* ここからギャラリーリストコンテンツ*/

.bg {
	background:white;
}
#gallery {
	padding-bottom:100px;
}


.galleryContents{
		width:100%;
		padding-top:30px;
		margin:0 auto;
		overflow:hidden;
}


.gallery-label ul {
 animation: loop-slide 25s infinite linear 1s both;
	list-style:none;
	display:flex;
	padding:15p 0;
		width:100vw;
	height:15vh;
	min-height:100px;
	background:black;
	width:100%;
	position:absolute;
}
.gallery-label li {
	display:flex;
	width:10%;
	min-height:100px;
}

.gallery-label img {
	display:block;
	margin:auto 0;
	object-fit:cover;
	width:100%;
	height:80%;
}



.label2 {
	left:100%;
}

.slideshow {
	width:100%;
  display: flex;
 position:relative;
	overflow:hidden;
	height:15vh;
	min-height:100px;
	
	
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
} 


.gallery-list {
	padding:50px 0;
}
.gallery-list ul {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	list-style:none;
	justify-content:center;
}

.gallery-list li {
	position:relative;
	width:33%;
	height:250px;
	max-width:330px;

}

.gallery-list img {

	display:block;
	margin:0 auto;
	padding:10px;
	object-fit:contain;
	width:80%;
	height:80%;
}

.gallery-list p {
	cursor:pointer;
	color:white;
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0 calc(10% - 11px);
	background:rgba(0,0,0,0.5);
	width:100%;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	word-break:break-all;
	overflow:hidden;
	opacity:0;
	transition:all 0.3s;
}


.gallery-list p:hover {
	opacity:1;
	transition:0.3;
}


.control ul{
	margin:0 auto;
	display:flex;
	justify-content:center;
	list-style:none;
	padding:20px 0; 
}

.control ul li {
	margin:0 1rem;
	font-size:1.5rem;
}

.control ul li a {
	text-decoration:none;
	color:green;
	font-weight:bold;
}

.hide {
	display:none;
}
.arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
		cursor:pointer;
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.prev, .next{
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    border: 1px solid green;
    -webkit-border-radius: 50%;
    border-radius: 50%;
		background:green;
}

.prev::after{
    left: 10px;
    width: 11px;
    height: 11px;
		top:0;
    border-top: 3px solid white;
    border-right: 3px solid white;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);

}
.next::after{
    left:5px;
    width: 11px;
    height: 11px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.current {
	text-align:center;
	padding:1rem 0;
}	

/*全画面表示の箱*/
.click {
	display:flex;
	background:rgba(0,0,0,0.5);
	position:relative;
	top:0;
	left:0;
	z-index:1000;
	width:100%;
	height:100vh;	
	display:none;
}
.open-photo {
	display:block;
	position:fixed;
}

.photo-info {
	position:absolute;
	transform:translate(-50%, -50%);
	top:50%;
	left:50%;
	width:60vw;
	height:40vw;
	min-width:200px;
	min-height:140px;
	max-width:600px;
	max-height:400px;
}
.photo-info img  {
	display:block;
	margin:0 auto;
	width:80%;
	height:80%;
	object-fit:contain;
}

.photo-info p {
	color:white;
	font-size:15px;
	text-align:center;
}

.close-photo {
	position:absolute;
	top:30px;
	right:30px;
	cursor:pointer;
	width:45px;
	height:45px;
	}

.close-photo span:first-child {
	background:white;
	width:35px;
	height:2px;
	position:absolute;
	top:22.5px;
	left:5px;
	transform:rotate(45deg);
	}
.close-photo span:nth-child(2) {
	background:white;
	width:35px;
	height:2px;
	position:absolute;
	top:22.5px;
	left:5px;
	transform:rotate(135deg);
	
}

/* ここからピックアップ*//
#pickup　{
		padding-bottom:200px;
}

.titlePickup{
		font-size:2.5rem;
		font-weight:bold;
		color:#25a444;
		border-bottom:3px solid #25a444;
		display:flex;
		margin-bottom:50px;
}


	.titlePickup_text {
		margin-left:auto;
}

	.pickup-title {
	margin-left:auto;
}

#pickup ul{
		padding-top:2rem;
		padding-bottom:200px;
		display:flex;
		list-style:none;
		margin:0 auto;
		height:250px;	
}


#pickup ul li a {
	color:white;
	height:250px;
	text-align:center;
	text-decoration:none;
	background:linear-gradient(rgba(0,0,0,0),rgba(0,100,0,0.8));
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;


}
	.pickupList1{
		width:33.3%;
		background-image:url("../../images/apply.jpg");
				background-size:cover;
	  background-position: center center;
	
	}
	.pickupList2{
		width:33.3%;
		background-image:url("../../images/history.jpg");
				background-size:cover;
	  background-position: center center;
	}
	.pickupList3{
		width:33.4%;
		background-image:url("../../images/about.jpg");
				background-size:cover;
	  background-position: center center;
	}
.pickup_subtitle {
	font-size:2rem;
	font-weight:bold;

}

	#footerSub{
		background-image:url("../../images/footersub.jpg");
		background-repeat:no-repeat;
		background-size:cover;
		height:400px;
		display:flex;

	}
	.footerSubAbout, .footerSubContact{
	width:100%;
	margin-top:130px;

	
	}
	.about1{
		color:white;
		font-size:2rem;
		margin-bottom:20px;
		text-align:center;
	}
	.about2{
		color:white;
		font-size:0.8rem;
		text-align:center;
	}
	.about2 a{
		color:white;
	}
	.contact1{
		color:white;
		font-size:2rem;
		margin-bottom:10px;
		text-align:center;
	}
	.contact2{
		color:white;
		font-size:0.8rem;
		text-align:center;
	}
	.contact2 a {
		color:white;
	}
	.contact3{
		color:white;
		font-size:0.8rem;
		text-align:center;
		margin-bottom:10px;
	}


.to-contact {
 text-decoration: none;
  background-image: linear-gradient(green 0%, limegreen 100%);
	padding:0.5rem 0.5rem;
	margin-top:1.2rem;
	color:white;
	text-decoration:none;
	font-size:1.2rem;
}
.to-contact-button {

	text-align:center;
	padding-top:1rem;
}


.footer-contact {
	width:80%;
	margin:0 auto;
	display:flex

}
	footer{
		background:#25a444;
		width:100%;
		color:white;
	}

	footer h6{
		text-align:center;

		padding:2rem 0;
		font-size:0.8rem;
	}

.footer-table {
	padding-top:15px;
	width:65%;
	margin:0 auto;
}

.footer-table table {
	width:100%;
}


	.footer-table a {
	color:white;
	line-height:1rem;
	text-decoration:none;
}

.footer-table tr{
	font-size:0.8rem;
	padding-top:10px;
	vertical-align:top;
}

.footer-table td{
	padding:0.5rem;
}


.footer-h {
	font-weight:bold;
	font-size:0.8rem;
	
}

.section-title {
	font-size:2.5rem;
	font-weight:bold

}



.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #25a444;
  text-decoration: none;
}
.arrow_s:after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #25a444;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.arrow_s2 {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: white;
  text-decoration: none;
}
.arrow_s2:before{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent white;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}


/*ここからレスポンシブ*/

@media (max-width:1024px){


	.gallery-label li:nth-child(6),	
	.gallery-label li:nth-child(7),
	.gallery-label li:nth-child(8),
	.gallery-label li:nth-child(9),
	.gallery-label li:nth-child(10) {
		display:none;
	}
 .gallery-label li {
	width:20%;
	}

.gallery-list li {
	min-width:240px;
	height:180px;
}

.photo-info img {
	width:90%;
	height:90%;
}

/*ローカルのコンテンツ*/


	.local-menu li {
	max-width:450px;
	max-height:380px;
	min-width:250px;
	min-height:200px;
}
	.local-menu li h3 {
	line-height:1.8rem;
	font-size:1.8rem;
}
	.local-menu li h4 {
	font-size:1rem;
}
	.local-menu li p {
	font-size:12px;
}
	.local-menu li a {
	font-size:16px;
	padding:0.5rem 1rem;
	margin-top:1rem;
}

		
/*共通項目*/
	.fixed {
	position:fixed;
	width:100%;
	}
	nav ul {
	display:none;
	}
	#navbtn {
	display:block;
	}
	#tabs {
		width:100%;
	}	
	.tab_item {
	width:50%;
	}
	.contact1, .about1 {
	font-size:1.2rem;
	font-weight:bold;

	} 
	.footer-table {
		width:95%;
	}


}	
@media (max-width:600px){
	
	

	.gallery-label ul {
	min-height:80px;
	height:10vh;

	}
	.gallery-label li:nth-child(5) {
	display:none;
	}
		
	.gallery-label li {
	width:25%;
	min-height:80px;
	}
	.slide-show {
	height:10vh;
	min-height:80px;
	}
	.gallery-list {
	padding:15px 0;
	}

	
 .control ul li {
	font-size:16px;
	margin:0 10px;
	}

.prev, .next {
	width:25px;
	height:25px;
}
.prev::after {
	left:8px;
	width:5px;
	height:5px;
}
.next::after {
	left:6px;
	width:5px;
	height:5px;
}

/*共通トップのコンテンツ*/

	.bg {
	margin-bottom:30px;
}
	.titleGallery, .titleRecord {
	margin-bottom:30px;
	font-size:1rem;
	}
	#local-top {
	padding-bottom:30px;

}

	#toptitle h1{
	font-size:2.5rem;
	}
	#toptitle p {
	font-size:1.5rem;
}
/*メインコンテンツ*/

	.wrapper {
	width:100%;	
	}

	.gallery-list li {
		width:50%;
		height:140px;
		min-width:140px;
	}
	


/*ローカルのコンテンツ*/
.local-menu ul {
	flex-direction:column;
	align-items:center;
}

.local-menu ul li {
	width:100%;
}

.local-menu ul li a {
	padding:0.2rem 0.5rem;
	border-radius:0.5rem;
}

	.titleLocal-top {
	font-size:1rem;

	}
	#local ul {
	width:100%;
	}
	#local ul li {
	width:100%;
	height:120px;
	}

	.local-button {
	font-size:1.2rem;
	font-weight:bold;
	}
	#local ul li a {
		font-size:12px;
		height:120%;
	}

	/*共通項目*/

		header {
	align-items:center;
		height:75px;
	}
	header h1 {	
	margin-left:1rem;	
	width:65%;
	height:100%;
	}
	nav {
	width:35%;
	}
	header .logoPic {
	width:100%;
	height:100%;
	object-fit:contain;
	display:block;
	}
	#navfull h1{
	font-size:22px;
	line-height:23px;
	}
	.mainmenu {
	font-size:1rem;
	}
	#pickup ul {
	flex-direction:column;
	height:auto;
	padding-bottom:80px;
	
	}
	#pickup ul li {
	width:100%;
	}
	#pickup ul li a {
	font-size:1rem;
	height:150px;
	}	
	.titlePickup {
	font-size:1rem;
	margin-bottom:0;
 }

 .pickup_subtitle {
	font-size:1.5rem;
	font-weight:bold;
	
	}
	.footer-contact {
		flex-direction:column;
		
	}
	.footerSubAbout, .footerSubContact {
		word-break:break-all;
		margin-top:0;
		height:50%;
		display:flex;
		flex-direction:column;
		justify-content:center;		
	}
	.footerSubContact {
		padding-bottom:20px;
	}
	.footer-table {
	display:none;
	}
}



</style>
