body{
	font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
	text-align: center;
	color: #512D25;
	-webkit-text-size-adjust: 100%;
	background: #FBF5EA url(/img/sky.jpg) center 0 repeat-x;
}
h1{
	margin: 0.75em auto 0.15em;
	font-size: 1.5rem;
}
h2{
	margin: 1.35em auto 0.15em;
	font-size: 1.35rem;
	font-weight: normal;
}
h3{
	margin: 1.25em auto 0.15em;
	font-size: 1.25rem;
	font-weight: normal;
}
h4{
	margin: 0.75rem auto 0.15em;
	font-size: 1.15rem;
	font-weight: normal;
}
a{
	color: #512D25;
}
img{
	max-width: 100%;
	height: auto;
}
.circle{
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.bn-workshop{
	margin-top: 30px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.linestamp{
	margin-top: 30px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

/*------------ CONTAINER ------------*/
.container{
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 1200px){
.container{
	width: 1140px;
}
}


/*------------ HEADER ------------*/
#header{
	height: 110px;
	text-align: center;
}
#logo{
	padding: 10px;
}
@media(max-width: 479.98px){
#logo{
	padding: 10px 65px 10px 10px;
}
}


/*------------ HAMBURGER ------------*/
@media(min-width: 1200px){
.openbtn{
	display: none;
}
}
.openbtn{
	position: fixed;
	z-index: 9999;
	top: 15px;
	right: 15px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background-color: #F7EEDE;
	border-radius: 6px;
}
.openbtn span{
	display: inline-block;
	transition: all .2s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #D83705;
	width: 45%;
 }
.openbtn span:nth-of-type(1){
	top: 15px; 
}
.openbtn span:nth-of-type(2){
	top: 23px;
}
.openbtn span:nth-of-type(3){
	top: 31px;
}
.openbtn.active span:nth-of-type(1){
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}
.openbtn.active span:nth-of-type(2){
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}


/*------------ NAVIGATION ------------*/
#gnav{
	padding: 8px 0 5px;
	z-index: 999;
	background-color: #F7EEDE;
}
@media(max-width: 1199.98px){
#gnav{
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	transition: all 0.3s;
}
#gnav ul{
	display: block;
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#gnav ul li{
	margin: 8px 0;
}
}
@media(min-width: 1200px){
#gnav.fixed{
	position: fixed;
	top: 0;
	left: 0;
}
}
#gnav.panelactive{
	position: fixed;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
nav{
	width: 100%;
}
nav ul{
	display: flex;
	list-style: none;
}
nav ul li{
	padding: 0 7px;
	text-align: center;
}
nav ul li a{
	position: relative;
}
nav ul li a::after{
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	bottom: 0;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
}
nav.gnav ul li a::after{
	background-color: #D83705;
}
nav.fnav ul li a::after{
	background-color: #FFF;
}
nav ul li a:hover::after{
	transform: scale(1, 1);
}
@media(max-width: 1199.98px){
nav.fnav{
	display: none;
}
}


/*------------ TOP IMAGE ------------*/
#topimg{
	margin-top: 10px;
}


/*------------ BREADCRUMBS ------------*/
#pknav{
	padding: 15px 0;
	text-align: left;
	font-size: 0.8rem;
}


/*------------ CONTENTS ------------*/
#contents{
	min-height: 600px;
}
#contents a:hover img{
	transform: scale(1.05,1.05);
	transition: all 0.3s;
}


/*------------ FOOTER ------------*/
footer{
	min-height: 250px;
	margin-top: 50px;
	padding: 20px 0;
	color: #FFF;
	background-color: #E6AD70;
}
@media(max-width: 575.98px){
footer{
	min-height: 350px;
}
}
footer a{
	color: #FFF;
}
#sns{
	padding: 15px;
	font-size: 1.6rem;
}
#policy{
	list-style: none;
	margin: 10px auto 0;
	font-size: 80%;
	line-height: 1.75em;
}
#policy li a{
	text-decoration: none;
}
#copy{
	margin-top: 20px;
	font-size: 80%;
	line-height: 2em;
}


/*------------ PAGE TOP ------------*/
#p-top{
	position: fixed;
	z-index: 999;
	right: 15px;
	bottom: 15px;
	opacity: 0;
	transition: all 0.2s;
	transform: translateY(100px);
}
#p-top.UpMove{
	animation: UpAnime 0.3s forwards;
}
@keyframes UpAnime{
	from{
		opacity: 0;
	transform: translateY(100px);
	}
	to{
		opacity: 1;
	transform: translateY(0);
	}
}
#p-top.DownMove{
	animation: DownAnime 0.3s forwards;
}
@keyframes DownAnime{
	from{
		opacity: 1;
	transform: translateY(0);
	}
	to{
		opacity: 0;
	transform: translateY(100px);
	}
}