@charset "UTF-8";
/* CSS Document */

* {
	margin:0;
	padding:0;
}
img {
	border:0;
	width: 100%;
	height: auto;
	display: block;
}
p{
	margin-bottom: 1em;
}
ul li{
	list-style-type: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}
video{
	width: 100%;
}

body{
	font-family:'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	color: #C9CACA;
	/*background-color: #FFFFFF;*/
	font-size: 100%;
    font-weight: 600;
	line-height: 1.7;
	-webkit-text-size-adjust: 100%;
	margin: 0;
	font-feature-settings: "palt";
    letter-spacing: 0.5px;
}
.sp{
	display: none;
}
a:hover{
	opacity: 0.7;
}
video {
  /*// iPhone safariの枠線を消す*/
  filter: drop-shadow(0px 0px #000);

  /*// PCのChromeの枠線を消す*/
  outline: none;
  border: none;
}


header{
	width: 100%;
	position: fixed;
    top: 0;
	z-index: 9;
	background: rgb(97 97 97 / 0%);
}
.header-inner{
	margin: 0 auto;
    padding: 10px 20px;
	position: relative;
	display: flex;
    justify-content: space-between;
}
.header-inner h1{
	width: 80px;
	margin: auto 0;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:45%;
    height: 100vh;/*ナビの高さ*/
	background:#86cfde;
    /*動き*/
	transition: all 0.6s;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro','游ゴシック体','YuGothic','Yu Gothic Medium','游ゴシック Medium',sans-serif;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	right: 0;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    z-index: 999;
    padding: 10%;
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
	padding:10px;
	color: #fff;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;	
	display: inline-block;
	font-weight: lighter;
	font-size: 1.8rem;
	margin-right: 10px;
}

#g-nav .nav-title{
	font-size: 3rem;
	margin-bottom: 50px;;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:absolute;
    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: #fff;
  	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: 50%;
}

.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: 50%;
}

#g-nav .current,
#g-nav .current a{
	color: #0f659f;
}

.style-text{
	font-size: .75rem;
    padding-right: 1rem;
	margin: auto 0;
}
.contents{
	/*max-width: 1000px;
    margin: 0 auto;*/
}
footer{
    background: #616161;
	text-align: center;
	padding: 30px 0 30px;
}
footer .footer-logo{
	width: auto;
	margin: 0 auto;
}
footer .copyright{
	margin-top: 30px;
}

/*========= PAGE TOPのボタンためのCSS ===============*/
/*リンクの形状*/
#go-pagetop a{
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#go-pagetop {
	position: fixed;
	right: 10px;
	z-index: 5;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
	width: 60px;
    height: 60px;
}

/*　上に上がる動き　*/

#go-pagetop.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#go-pagetop.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



/*　*/
/*スマホレイアウト*/
@media screen and (max-width:768px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	.header-inner{
		
	}
	.header-inner h1{
		width: 60px;
	}
	#g-nav{
		width: 100%;
	}
	#g-nav .nav-title{
		font-size: 2rem;
	}
	#g-nav li a{
		display: block;
		font-size: 1.1rem;
	}
	header .openbtn{
		top: 2px;
	}
	footer{
		padding: 3vw 10% 3vw;
	}
	footer .footer-logo{
		width: auto;
	}
	#go-pagetop{
		width: 40px;
    	height: 40px;
	}
	.style-text {
    display: none;
	}
	.style .choice {
    font-size: 60%;
	}
}


/*========= タブレット縦===============*/
@media only screen and (min-width: 769px) and (max-width: 1099px) {
	#g-nav{
		width: 60%;
	}
	/*.contents{
		max-width: 700px;
	}*/
}