﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	color: #333;
	font-family: YuMincho, "Yu Mincho","MS PMincho","ＭＳ Ｐ明朝", "Hiragino Mincho ProN","ヒラギノ明朝 ProN","serif";
}

h1, h2, h3, h4, h5, h6 {
	text-align: center;
}

h2 {
	margin: 0 0 40px;
	font-size: 2em;
}

h3 {
	margin: 0 0 20px;
	font-size: 1.5em;
}

ul {
	list-style: none;
}

a {
	display: block;
	transition: opacity 0.3s;
}

.sp {
	display: none;
	@media screen and (max-width: 760px) { 
		display: inline-block;
	}
}


header {
	width: 100%;
	height: 100vh;
	margin: 0 0 100px;
	color: #fff;
	text-shadow: 0 0 5px #333, 0 0 5px #333;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: image_anime 9s ease infinite;
	@media screen and (max-width: 760px) {
		height: 50vh;
	}
}
@keyframes image_anime {
  0% {
    background-image: url(../img/hero.jpg);
  }
  30% {
    background-image: url(../img/hero2.jpg);
  }
  60% {
    background-image: url(../img/hero3.jpg);
  }
  100% {
    background-image: url(../img/hero.jpg);
  }
}
header nav.globalNavi {
	height: 60px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(66, 66, 66, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	@media screen and (max-width: 760px) {
		flex-wrap: wrap;
	}
}
header nav h1{
	padding: 10px;
	width: 130px;
	height: 60px;
}
header nav h1 img {
	width: 100%;
	height: auto;
}
header nav #menuBtnCheck {
	@media screen and (max-width: 760px) {
		display: none;
	}
}

header nav .menuBtn {
	@media screen and (max-width: 760px) {
		font-size: 0;
		display: block;
		position: fixed;
		display: flex;		
		justify-content: center;
		align-items: center;
		z-index: 99999;
		width: 60px;
		height: 60px;
		top: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.3);
	}
}
header nav .menuBtn span,
header nav .menuBtn span:before,
header nav .menuBtn span:after {
	content: "";
	width: 35px;
	height: 3px;
	border-radius: 3px;
	background-color: #fff;
	display: block;
	position: absolute;
	transition: all 0.5s;
}
header nav .menuBtn span:before {
	bottom: 10px;
}
header nav .menuBtn span:after {
	top: 10px;
}

header nav #menuBtnCheck:checked ~ .menuBtn span {
	background-color: rgba(255, 255, 255, 0)
}
header nav #menuBtnCheck:checked ~ .menuBtn span:before {
	bottom: 0;
	transform: rotate(45deg);
}
header nav #menuBtnCheck:checked ~ .menuBtn span:after {
	top: 0;
	transform: rotate(-45deg);
}


header nav ul{
	width: 700px;
	margin: 0 15px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	@media screen and (max-width: 760px) {
		width: 70%;
		max-width: 200px;
		position: fixed;
		background: rgba(0, 0, 0, 0.8);
		top: 0;
		left: 100%;
		display: block;
		z-index: 10000;
		margin: 0;
		padding: 80px 10px 0;
		transition: all 0.5s;
	}
}

header nav #menuBtnCheck:checked ~ ul {
	@media screen and (max-width: 760px) {
		left: calc(100% - 200px);
	}
}
header nav ul li {
	display: inline-block;
	font-size: 18px;
	@media screen and (max-width: 760px) {
		display: block;
		text-align: center;
		border-top: 1px solid #fff;
		padding: 10px 0;
		font-size: 16px;
	}
}
header nav ul li:first-of-type {
	@media screen and (max-width: 760px) {
		border-top: 0;
	}
}
header nav ul li a {
    background-image: linear-gradient(#fff, #fff);
    background-size: 0 1px;
    background-position: bottom right;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
	@media screen and (max-width: 760px) {
		text-align: center;
	}
}
header nav ul li a.active {
	color: #f99;
    background-size: 100% 1px;
	@media screen and (max-width: 760px) {
	    background-size: 0 1px;
	}

}
header address {
	text-align: right;
	padding: 70px 10px 0 0;
	font-size: 1em;
	position: relative;
	z-index: 999;
}
header address em {
	font-size: 1.5em;
}
header .kv{
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

main {
	max-width: 960px;
    padding: 110px 0 0;
    margin: -60px auto 0;
	@media screen and (max-width: 760px) {
		width: 90%;
	}
}
section {
    padding: 60px 0 0;
    margin: -60px 0 150px;
}
section h2 {
	text-align: center;
}
section p, section dl {
	font-family: "Klee One", YuMincho, "Yu Mincho","MS PMincho","ＭＳ Ｐ明朝", "Hiragino Mincho ProN","ヒラギノ明朝 ProN","serif";
}
section.event {
	width: 100%;
	padding: 100px 30px 0;
    border: #333 1px solid;
    margin: 0 0 150px;
	position: relative;
	@media screen and (max-width: 760px) {
		padding: 100px 20px 0;
	}
}
section.event .eventEyecatch {
	width: 150px;
    height: 150px;
    margin: -150px 0 0 auto;
	@media screen and (max-width: 760px) {
		width: 100px;
		height: 100px;
	}
}
section.event ul{
	margin: 60px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.event ul li {
	width: calc((100% - 60px) / 3);
	display: inline-block;
	margin: 0 30px 30px 0;
	@media screen and (max-width: 760px) {
        width: calc((100% - 20px) / 2);
        margin: 0 20px 30px 0;
	}
}
section.event ul li:nth-child(3n) {
	margin: 0 0 30px;
	@media screen and (max-width: 760px) {
		margin: 0 20px 30px 0;
	}
}

section.event ul li:nth-child(2n) {
	@media screen and (max-width: 760px) {
		margin: 0 0 30px;
	}
}
section.purpose {

}
section.purpose .perposeWrapper {
	margin: 0 0 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.purpose .perposeWrapper:not(.wrap_right){
	flex-direction: row-reverse;
}
section.purpose .perposeInner{
	width: 50%;
	padding: 0 30px;
	@media screen and (max-width: 760px) {
		width: 100%;
		padding: 0 0 10px;
	}
}
section.purpose .perposeInner h3 {
	margin: 20px 0;
	@media screen and (max-width: 760px) {
		margin: 0 0 20px;
	}
}
section.purpose .perposeImg {
	width: 50%;
	@media screen and (max-width: 760px) {
		width: 100%;
	}
}

section.access {
	font-size: 16px;

}

section.access h3 {
	margin: 0 0 20px
}
section.access dl {
	max-width: 26em;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.access dl dt {
	width: 8em;
	text-align: right;
	@media screen and (max-width: 760px) {
		width: 100%;
		text-align: center;
	}
}
section.access dl dd {
	width: 17em;
	text-align: left;
	@media screen and (max-width: 760px) {
		width: 100%;
		text-align: center;
		margin: 0 0 20px;
	}
}
section.access dl + div {
	margin: 50px auto 100px;
	text-align: center;
	@media screen and (max-width: 760px) {
		margin: 30px auto 100px;
	}
}
section.access dl + div img {
	max-width: 500px;
}
section.access p a{
	font-size: 1.5em;
	font-family: YuMincho, "Yu Mincho","MS PMincho","ＭＳ Ｐ明朝", "Hiragino Mincho ProN","ヒラギノ明朝 ProN","serif";
	border: 1px solid #333;
	padding: 5px 10px;
	text-align: center;
	margin: 0 auto;
	width: 250px;
	box-sizing: border-box;
	transition: all 0.5s;
}
section.access p a:after {
	content: "→";
	display: inline-block;
	right: 0;
	position: relative;
	transition: all 0.4s;
}
section.access p a:hover {
	background: #555353;
	color: #fff;
	opacity: 1;
}
section.access p a:hover:after {
	right: -10px;
}

footer {
	padding: 40px 0 10px;
	background-color: #555353;
	text-align: center;
	color: #fff;
	position: relative;
}
footer nav ul{
	display: flex;
	justify-content: space-evenly;
	@media screen and (max-width: 760px) {
		flex-wrap: wrap;
	}
}
footer nav .primaryLinks {
	max-width: 960px;
	font-size: 1.5em;
	margin: 0 auto 40px;
}
footer nav .secondLinks {
	max-width: 960px;
	font-size: 1.2em;
	margin: 0 auto 50px;
}
@media screen and (max-width: 760px) {
	footer nav .primaryLinks li,
	footer nav .secondLinks li {
		width: 100%;
	}
}
footer nav .socialLinks {
	margin: 0 auto 50px;
	max-width: 320px;
}
footer nav .socialLinks	img {
	width; 50px;
}
footer address {
	font-size: 1.2em;
	margin-bottom: 50px;
}
footer address em {
	font-size: 1.5em;
}
footer p {
	margin: 0;
}
footer .totop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	opacity: 0;
	transition: opacity 0.3s;
}
footer .totop.active {
	opacity: 1;
}
footer .totop a img {
	filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.3));
}
