/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

body {
line-height:1;
	}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
display:block;
}

nav ul {
list-style:none;
}

blockquote, q {
quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}

a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

del {
text-decoration: line-through;
}

abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}

table {
border-collapse:collapse;
border-spacing:0;
}

/* change border colour to suit your needs 
*/
hr {
display:block;
height:1px;
border:0; 
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}

input, select {
vertical-align:middle;
}



* {
	margin: 0;
	padding: 0;
}

html,body {
	text-align: center;
}

body {
	-webkit-text-size-adjust: 100%;
	background-color: #FFFFFF;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
}

a,a:link,a:visited {
	overflow: hidden;
}

a:hover,a:active,a:focus {
	overflow: hidden;
}

a img,:link img,:visited img {
    border: none;
}

a:link{
	text-decoration: underline;
	color:#000000;
}

a:visited {
	text-decoration: underline;
	color:#000000;
}

a:hover{
	text-decoration:none;
	color: #BC0000;
	transition: color 0.3s ease 0s;
}

a:active {
	text-decoration: underline;
	color:#000000;
}

p,div,th,td {
	background-image: url(img/dummy.png);
}

img { 
    max-width: 100%; 
    height:auto;
	image-rendering: -webkit-optimize-contrast;
	-ms-interpolation-mode: bicubic;
	-webkit-backface-visibility: hidden;
}	

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.pc {
	display: block;	
}

@media screen and (max-width: 680px) {
.pc {
	display: none;
}
}

.sp {
	display: none;
}

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

/*-----------------------------------------------
	header
-----------------------------------------------*/

header {
	margin: 0 auto;
	z-index: 1000;
	position: relative;
}

/*-----------------------------------------------
	#g-nav
-----------------------------------------------*/

#g-nav {
	margin: 0 auto;
	padding: 0;
	max-width: 1140px;
}

#g-nav ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
	list-style: none;
}

#g-nav li {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 500;
	letter-spacing: 2px;
	flex: 1;
}
#g-nav li a:link{
	text-decoration:none;
	color:#000000;
	display: block;
	padding: 25px;
}
#g-nav li a:visited {
	text-decoration:none;
	color:#000000;
}
#g-nav li a:hover{
	text-decoration:none;
	color: #93A897;
	transition: color 0.3s ease 0s;
}
#g-nav li a:active {
	text-decoration:none;
	color:#000000;
}

@media screen and (max-width: 991px) {
	#g-nav {
	    position:fixed;
		z-index: -1;
		opacity: 0;
		top:0;
		width:100%;
    	height: 100vh;
		background:rgba(255,255,255,0.9);
		transition: all 0.3s;
	}
	#g-nav.panelactive{
		opacity: 1;
		z-index:999;
	}
	#g-nav.panelactive #g-nav-list{
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#g-nav ul {
		display: none;
		position: absolute;
		z-index: 999;
		top:50%;
		left:50%;
		transform: translate(-50%,-50%);
	}
	#g-nav.panelactive ul {
		display: block;
	}
	#g-nav li{
		list-style: none;
		font-size: 100%;
		text-align: center; 
	}
	#g-nav li a{
		text-decoration: none;
		padding:5px;
		display: block;
		text-transform: uppercase;
	}

/*========= ボタンのためのCSS ===============*/
	.openbtn{
		position:fixed;
		z-index: 9999;
		top:10px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height:50px;
	}
	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background-color: #789A86;
		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%;
	}
}

/* **************wrapper************* */

#wrapper {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}

/* **************#copy************* */

#copy {
	padding: 15px 0;
	margin: 0 auto;
	width: 100%;
	clear: both;
	background-color: #93A897;
	position: relative;
	z-index: 100;
	}

@media screen and (max-width: 680px) {
#copy {
	padding: 30px;
	box-sizing: border-box;
	position: relative;
}
}

#copy h2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 600;
	font-size: 144%;
	line-height:1.6em;
	text-align: left;
	background-image:url(image);
	max-height: 100%;
	word-break: break-all;
	letter-spacing: 3px;
	color: #FFFFFF;
}

@media screen and (max-width: 991px) {
	#copy h2 {
		font-size: 100%;
		line-height:1.6em;
		text-align: center;
	}
}

#copy h5{
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 88%;
	font-weight: normal;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align:center;
	color: #FFFFFF;
}

@media screen and (max-width: 991px) {
	#copy h5 {
		font-size: 88%;
		line-height:1.6em;
		text-align:center;
	}
}

#copy .copyarea {
	margin: 0 auto;
	padding: 0;
	max-width: 1140px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 680px) {
	#copy .copyarea {
		flex-flow: column wrap;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
}

/*#copy .copyarea article.logo {
	flex: 1;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}
@media screen and (max-width: 680px) {
	#copy .copyarea article.logo {
		width: 100%;
		margin: 0 auto 15px auto;
		padding: 0;
		text-align: center;
	}
}*/

#copy .copyarea article.data {
	flex: 3;
	margin: 0;
	padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	box-sizing: border-box;
}
@media screen and (max-width: 680px) {
	#copy .copyarea article.data {
		margin: 0 auto 15px auto;
		padding: 0 30px;
		text-align: center;
	}
}




/* **************#pagetop************* */

.effect-fade {
　opacity : 0;
　transform : translate(0, 45px);
　transition : all 300ms;
}

.effect-fade.effect-scroll {
　opacity : 1;
　transform : translate(0, 0);
}

.fade_off {
    opacity: 0;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -o-transition: all 3s;
    -ms-transition: all 3s;
    transition: all 3s;
}

.fade_on {
    opacity: 1;
}

