@charset "UTF-8";

body{
	margin: 0px;
}

.haikei{
	background-image: url("image/bg.png");
	width: 414px;
	height: 1850px;
	background-repeat: no-repeat;
}

.name{
	font-family: Osaka-mono, "MS Gothic", monospace;
	font-size: 55px;
	position: absolute;
	top: 100px;
	left: 70px;
	color: #2E1EE8;
}

.placename{
	position: absolute;
	font-size: 90px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	transform: rotate(90deg);
	color: #2E1EE8;
	font-weight: bold;
}

.studio{
	position: relative;
	top: -180px;
	left: 175px;
}

.pic1{
	position: relative;
	top:300px;
	left: 45px;
}


/*箱*/
.box1{
  margin: 0;
  width: 235px;
  height: 280px;
  background : #ffffff;
  position: absolute;
  top: 700px;
  border: solid;
	border-color: #2E1EE8;
}


.box2{
  margin: 0;
  width: 235px;
  height: 280px;
  background : #2E1EE8;
  position: absolute;
  left: 10px;
  top: 710px;
}


/*紹介*/
.syoukaibun{
	font-family: Osaka-mono, "MS Gothic", monospace;
	position: absolute;
	top: 750px;
	width: 210px;
	left: 15px;
	line-height: 30px;	
}

.yamada{
	position: absolute;
	top: 970px;
	left: 20px;
}

.buhler{
	position: absolute;
	top: 970px;
	left: 120px;
}


/*スライドショー*/
/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

.show{
	position: relative;
	top: 750px;
	right: 20px;
}


.student{
	position: fixed;
	top: 620px;
	left:340px;
}

.mark{
	position: absolute;
	top: 10px;
	left: 10px;
}

#title{
	font-family: "Osaka-mono", "MS Gothic", "monospace";
	color: rgba(31,0,255,1.00);
	font-size: 20px;
	position: relative;
	top: -60px;
	left: 40px;
}



/*ボタン1*/

/*--- 線から塗り（共通設定） ---*/

.btn05{
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    color:rgba(0,12,255,1.00);
    padding: 10px 20px;
    background:#eee;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .3s;
    transition-delay: .7s;/*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover{
	background:rgba(255,94,138,1.00);
	color: #fff;
}

/*線の設定*/
.btn05 span{
    display: block;
}

/*横線の設定*/
.btn05::before,
.btn05::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/   
    width: 0;
    height: 3px;
    background: rgba(255,94,138,1.00);
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/
    width:3px;
    height:0;
    background:rgba(255,94,138,1.00);
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after{
    width: 100%;
}
.btn05:hover span::before,
.btn05:hover span::after{
    height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*右下から右上へ伸びる横線*/
.bordercircle3::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*右下から右上へ伸びる縦線*/
.bordercircle3 span::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*左上から右上へ伸びる横線*/
.bordercircle3::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*左上から左下へ伸びる横線*/
.bordercircle3 span::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*ボタン2*/

/*--- 線から塗り（共通設定） ---*/

.btn04{
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    color:rgba(0,12,255,1.00);
    padding: 10px 20px;
    background:#eee;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .3s;
    transition-delay: .7s;/*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn04:hover{
	background:rgba(255,252,0,1.00);
	color: rgba(0,12,255,1.00);
}

/*線の設定*/
.btn04 span{
    display: block;
}

/*横線の設定*/
.btn04::before,
.btn04::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/   
    width: 0;
    height: 3px;
    background: rgba(255,252,0,1.00);
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*縦線の設定*/
.btn04 span::before,
.btn04 span::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/
    width:3px;
    height:0;
    background:rgba(255,252,0,1.00);
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn04:hover::before,
.btn04:hover::after{
    width: 100%;
}
.btn04:hover span::before,
.btn04:hover span::after{
    height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*右下から右上へ伸びる横線*/
.bordercircle2::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*右下から右上へ伸びる縦線*/
.bordercircle2 span::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*左上から右上へ伸びる横線*/
.bordercircle2::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*左上から左下へ伸びる横線*/
.bordercircle2 span::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}


/*ボタン*/
.return{
	position: absolute;
	top: 1550px;
	left: 145px;
	font-family: "Osaka-mono", "MS Gothic", "monospace";
	font-size: 15px;
}

.place1{
	position: absolute;
	top: 1450px;
	left: 25px;
}

.place2{
	position: absolute;
	top: 1450px;
	left: 210px;
}

.basyo{
	font-family: "Osaka-mono", "MS Gothic", "monospace";
	font-size: 23px;
}


/*========= ナビゲーションのための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;
}

/*アクティブクラスがついたら位置を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%);
}

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

#g-nav li{
	list-style: none;
    text-align: center; 
}

#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%;
}

.burger{
	position: absolute;
	left: 355px;
	top: 10px;
		
}