@font-face { 
  /* ① ここにfont-familyで指定したい名前を書く*/
  font-family: "HGRSKP"; 

  /* フォントが置かれているパスを書く */ 
  src: url("../font/HGRSKP.TTF") format("truetype") }

@charset "UTF-8";

body{
	margin:0px;
	padding:0px;
	text-align: center;
	text-decoration: none;
	background: url("../img/bg.gif") repeat-y top #ffffff;
}


img,div,a{
	line-height: 1;
	margin: 0px;
	padding: 0px;
	border:none;
	width: 100%;
	height: 100%;
	text-decoration:none;
}


#wrappar{
	max-width:510px;
	width:100%;
	margin:0 auto;
}

.title{
	width: 40%;
	position: fixed;
	left:5%;
        margin-top: 5%;
	height:auto;
	top:0;
	background-color:white;

}

.hr{
	font:200% "HGRSKP";

}

h1{
	font: 2.5em "HGRSKP";
	padding-top: 15%;
	color:rgba(34,28,28,0.8);
}

.trimg1{

}

.trimg2 {
display:none;
}

.tlimg2 {
display:none;
}


.text-box {
    position: fixed;
    width: 100%;
    z-index: 10;
    background-color: white;
    height:20%;
    top:0;
}

.top{
    max-height:28%;
    width:100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/backgraund.png);
    position: fixed;
    left: 0px;
    right: 0px;
    margin-top: 35%;
    z-index:-1;
}

h2{
	font: 2.0em "HGRSKP";
	padding-top: 25%;
	color: white;
}

.scrolldown4{
	display:none;
}

.hl img{
	height:50%;
	width:100%;
}


.senden{
}

.senden img{
	margin-top: 10%;
	height:50%;
	width:50%;
}

h1+p{
	font:1.0em "HGRSKP";
	margin-top: 3%;
	color:rgba(34,28,28,0.8);
	right:0;
	position:fixed;
}
.content,.content p
{
	margin-top: -3%;
	background-color: rgba(255,255,255,0.80);
        padding-top: 10%;
	color:rgba(34,28,28,0.8);
	font:1.0em "HGRSKP";
	border:none;

}

.send-r{

}

.t-img{
	font:1.0em "HGRSKP";
	text-align:left;
	line-height: 2em;
	color:rgba(34,28,28,0.8);
	margin: 5%;


}

.t-img-d {
display:none;

}

.t-img2{
    font: 1.0em "HGRSKP";
    line-height: 50px;
    padding-top: 5%;
    text-align: center;
}

.contents ul{

}

.contents li{

}

.contents p{

}

.contents li img{
	border-radius: 50%;
}

li img{
	border-radius: 50%;
	width: 60%;
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#999;
    /*動き*/
	transition: all 0.6s;
}

#g-nav p{
        padding-top: 10%;
	color:rgba(34,28,28,0.8);
	font:1.2em "HGRSKP";

}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}

ul+p{

}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left;
display: inline-block; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのための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: #666;
  	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%;
}

