@charset "utf-8";

html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }

.fsb{
	font-weight: bold;
	padding-left: 2px;
}
.pt50{
	padding-top: 50px;
}
.mb50{
	margin-bottom: 50px;
}
.mb10{
	margin-bottom: 10px;
}
.mb20{
	margin-bottom: 20px;
}
.mb30{
	margin-bottom: 30px;
}
.mb120{
	margin-bottom: 120px;
}
.mb80{
	margin-bottom: 80px;
}
.ml20{
	margin-left: 20px;
}
.mt15{
	padding-top: 15px;
}
.pb{
	padding-bottom: 20px;
}
.fb{
	color: #232323;
}
.fr{
	color: #DF1C1C;
}
h2{
	font-size: 3em;
}
h3{
	font-size:2em;
}
p{
	font-size: 1.6em
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
.tal{
	font-size: 2em;
	text-shadow: 0 2px 1px #232323; 
}
h1{
	font-size: 3em;
}
.fs{
	font-size: 2em;
}

#loader{
    width: 200px;
    height: 115px;
    display: none;
    position: fixed;
    _position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
    z-index: 9999;
}
#fade{
    width: 100%;
    height: 100%;
    display: none;
    background-color: #4971C1;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9998;
}

.fadein{
	opacity: 0.1;
	transform: translate(0,50px);
	transition: all 1s;
}
.fadein.scrollin{
	opacity: 1;
	transform: translate(0,0);
}

body{
	color: #fff;
	font-family: kan415typos-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
body#contact{
	background-color: #fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
p{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
#main{
	color: #000;
}
#404{
	width: 100%;
	height: 100vh;
	color: #232323;
}
#wrap{
	width: 100%;
	overflow: hidden;
}
header{
	width: 100%;
	height: 50px;
	background-color: #4971C1;
	position: fixed;
	z-index: 1000;
}
.is-fixed  {
  position:  fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: rgba(255,255,255,0.9);
  -webkit-transition: all .4s ease 0s,background .6s ease .2s;
  transition: all .4s ease 0s,background .6s ease .2s;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  height: 50px;
  color:#232323;
}

#nav-drawer {
	width:100%;
	height: 50px;
	background-color: #4971C1;
    position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding-top: 15px;
  padding-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 4px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content{
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 50%;/*最大幅（調整してください）*/
  height: 100%;
  background: #4971C1;/*背景色*/
  color: #fff;
  font-size: 2em;
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

#nav-content a{
	display: block;
	width: 100%;
	padding: 20px 0;
}
#nav-content a:hover{
	background-color: #7D81F9;
}
#nav-content li{
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#gnav{
	display: none;
}

#gnav ul{
	overflow: hidden;
}
#gnav ul li{
	width: 15%;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 1.6em;
	float: left;
}
#gnav ul li a{
	display: block;
	width: 100%;
}

#gnav ul li a:hover{
	background-color: #7D81F9;
}

.pob{
	position: absolute;
	bottom: 0;
}
#tel{
	width: 50%;
	height: 50px;
	background-color: #000000;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	font-size: 10px;
	overflow: hidden;
}

#tel p a{
	display: block;
	width: 100%;
	padding: 12px 0 28px;
}

#mainimage{
    height: 70vh;
	background-size: cover;
	background-position: center;
    background-image: url("./images/mainimage01.jpg");
	overflow: hidden;
}

.contents{
	height: 40vh;
	background-color: #E1AA20;
	position: relative;
}
#second-contents{
	height: 900px;
	background-color: rgba(165,185,224,100);
	position: relative;
	display: none;
}
#second-contents:before{
	content: "";
	display: block;
    border-top: 100px solid transparent;
    border-left: 100vw solid rgba(165,185,224,100);
	position: absolute;
    top: -100px;
}
.contents:after{
	content: "";
	display: block;
    border-top: 100px solid transparent;
    border-left: 100vw solid #E1AA20;
	position: absolute;
	top: -100px;
}
.bgm{
	background-color: #4971C1;
	height: 600px;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.bgm:before{
	content: "";
	display: block;
    border-top: 100px solid transparent;
    border-left: 100vw solid #4971C1;
	position: absolute;
    top: -100px;
}
.bgm:after{
	content: "";
	display: block;
    border-bottom: 100px solid transparent;
    border-right: 100vw solid #4971C1;
	position: absolute;
	bottom: -100px;
}
.bgm3{
	background-color: rgba(225,170,32,0.7);
	height: 900px;
	position: relative;
}
.bgm3:before{
	content: "";
	display: block;
    border-top: 100px solid transparent;
    border-left: 100vw solid rgba(225,170,32,0.7);
	position: absolute;
    top: -100px;
}
.bgm3:after{
	content: "";
	display: block;
    border-bottom: 100px solid transparent;
    border-right: 100vw solid rgba(225,170,32,0.7);
	position: absolute;
	bottom: -100px;
}
#bgm-02{
	height: 1450px;
	background-color: rgba(73,113,193,0.7);
}

#c02{
	height: 500px;
	background-color: #E1AA20;
	position: relative;
}
#c02:before{
	content: "";
	display: block;
    border-top: 100px solid transparent;
    border-left: 100vw solid #E1AA20;
	position: absolute;
    top: -100px;
}
#c02:after{
	content: "";
	display: block;
    border-bottom: 100px solid transparent;
    border-right: 100vw solid #E1AA20;
	position: absolute;
	bottom: -100px;
}

#c03{
	height: 500px;
	background-color: #F0D48F;
	position: relative;
}
#c03:before{
	content: "";
	display: block;
    border-top: 100px solid transparent;
    border-left: 100vw solid #F0D48F;
	position: absolute;
    top: -100px;
}
#c03:after{
	content: "";
	display: block;
    border-bottom: 100px solid transparent;
    border-right: 100vw solid #F0D48F;
	position: absolute;
	bottom: -100px;
}
#c04{
	height: 20vh;
	background-color: #fff;
}
footer{
	height: auto;
	background-color: #4971C1;
	text-align: center;
}
#footer-02{
	height: 100px;
	line-height: 50px;
	background-color: rgba(225,170,32,0.7);
	display: none;
}
#logo{
	max-width: 200px;
	height: auto;
	position: absolute;
	top: 40vh;
	right: 20px;
	z-index: 5;
}
#cacthf{
	max-width: 120px;
	position: absolute;
	font-size: 2em;
	top: 40vh;
	left: 20px;
	z-index: 5;
}
section.contents h2{
	width: 90%;
	margin: 0 auto;
	border-bottom: 3px solid #fff;
	transform: rotate(14deg);
}
section.contents p{
	width: 90%;
	margin: 0 auto;
	font-size: 2.4em;
	transform: rotate(14deg);
}
#maincatch{
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 5;
}
#topbtn{
	position: fixed;
	right: 10px;
	z-index: 100;
}

#topbtn a:hover{
	opacity: 0.7;
}

div.inner{
	z-index: 3;
	text-align: center;
	margin: 0 auto;
	min-width: 320px;
	max-width: 1024px;
	position: relative;
}

section.bgm p#backimg img{
	position: absolute;
	top: -100px;
	bottom: 0;
	left: 0;
	right: 0;
	margin:auto;
}
#c03 div.flbox{
	justify-content: space-around;
}
p.viewbtn{
	width: 296px;
	height: 46px;
	line-height: 46px;
	padding-bottom: 10px;
	margin: 20px auto 0;
	background-color: #000;
	font-size: 3em;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #707070;
	border-left: 2px solid #fff;
	border-right: 2px solid #707070;
}
figure p a:hover{
	opacity: 0.8;
}
#c02 p,#c03 p{
	font-size: 3em;
}
#c02,#c03,#c04{
	margin-bottom: 80px;
}
#c02 img{
	max-width: 130px;
	height: auto;
}

.flbox{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.box{
	width: 35%;
	margin: 0 auto 20px;
	z-index: 10;
}
#bgm-02 div.flbox{
	justify-content: center;
	margin-bottom: 80px;
}
.box1{
	width: 512px;
	position: relative;
	display: none;
}

div.box1 div.caption{
	width: 400px;
	height: 50px;
	line-height: 50px;
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: 0 auto;
	z-index: 10;
}

.box3{
	z-index: 10;
}
#footer-02 div.flbox2{
	width: 1024px;
	margin: 0 auto;
	display: flex;
    justify-content: center;
    align-items: center;
}
.box5{
	width: 341.3px;
	position: relative;
}
div.line{
	position: absolute;
	top: 49px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 20px;
	height: 2px;
	background-color: #fff;
}
.box5 a{
	width: 100%;
	display: block;
	transition: 1s;
	position: relative;
    background:linear-gradient( #EDC563, #EDC563 50px,#CC9816 250px,#7B6735);
    background-size:200px 300px;
}
.box5 a:hover{
  background-position:0 100%;
}
#c04 div.inner{
	padding-top: 50px;
}
footer ul{
	max-width: 1024px;
	line-height: 50px;
	margin: 0 auto;
}
footer li{
	width: 100%;
	font-size: 1.6em;
}
footer li a{
	display: block;
	width: 100%;
	background-color: #4971C1;
	transition: 0.5s
}
footer li a:hover{
	background-color: #7D81F9;
}
.icon-facebook,.icon-instagram,.icon-twitter{
	width: 100px;
	height: 100px;
	font-size: 1.6em;
	border-radius: 50%;
	padding: 5px;
	border: 2px solid #fff;
}
footer div.flbox{
	justify-content: center;
}
.box2{
	margin-left: 20px;
}
.box2:first-child{
	margin-left: 0;
}
.viewbtn a{
	display: block;
}
.viewbtn:active{
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}
.scrbox{
	position: relative;
	z-index: 10;
}

#second-inner{
	overflow: hidden;
	min-width: 768px;
	max-width: 1024px;
	margin: 0 auto;
}
.balloon2 {
  position: relative;
  display: inline-block;
  margin: 50px 0 100px 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 50%;
  font-size: 1.2em;
  color: #555;
  background: #FFF;
  border-radius: 10px;
  border: solid 3px #555;
  box-sizing: border-box;
}
.fl{
	float: left;
}
.flr{
	float: right;
}

#fs-balloon:before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: -24px;
  margin-left: -15px;
  border: 12px solid transparent;
  border-left: 12px solid #FFF;
  z-index: 2;
}

#fs-balloon:after {
  content: "";
  position: absolute;
  bottom: 28px;
  right: -30px;
  margin-left: -17px;
  border: 14px solid transparent;
  border-left: 14px solid #555;
  z-index: 1;
}

#sd-balloon:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -9px;
  margin-left: -15px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}

#sd-balloon:after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: -14px;
  margin-left: -17px;
  border: 14px solid transparent;
  border-right: 14px solid #555;
  z-index: 1;
}

@font-face{
	font-family: 'fuimin';
	src: url("fonts/HuiFont109.woff")
}

.balloon2 p {
  margin: 0;
  padding: 0;
  font-family: 'fuimin';
  src: url('/fonts/HuiFont109.woff') format('woff');
}
.user{
	margin: 50px 50px 10px 50px;
}

.user2{
	margin-top: -20px;
}
.mbb{
	border-bottom: 1px dotted #333333;
}

.user-img{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #fff;
}

#maru{
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #232323;
	position: absolute;
	top: 0;
	left: 0;
	animation: maru 2.5s ease 0s infinite normal;
}

@keyframes maru{
	0%{
		transform: translate3d(-50%,0,0);
	}
	60%{
		transform: translate3d(-50%,89px,0);
	}
	100%{
		transform: translate3d(-50%,89px,0);
	}
}
.arrowWrap{
  position: absolute;
  left: 20px;
  top: 10px;
  width: 12px;
  height: 100px;
	  overflow: hidden;
}
.arrow{
  width: 1px;
  height: 100px;
  margin: 0 auto 0;
  background-color: #232323;
  position: relative;

}

.arrow:before{
  content: '';
  width: 1px;
  height: 100px;
  margin: 0 auto 0;
  background-color: #E9E9E9;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow{
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
	}
}

#contactform{
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.6em;

}
#main dl{
	overflow: hidden;
	height: auto;
	border: 1px #232323 solid;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
#main dl:not(:first-child){
	border-top: none;	
}

#main dt{
	width: 180px;
	background-color: rgba(165,185,224,100);
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}
#main dd{
	width: 400px;
	padding-left: 10px;
}
input#name,input#name2,input#addres,input#email,input#addres2,
input#addres3,input#addres4,input#telphone,input#exquse{
	width: 90%;
}

input{
	vertical-align: middle;
}
textarea {
    resize: none;
	max-width: 400px;
	width: 90%;
}
#btn{
	font-size: 0.7em;
	padding-top: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.addres{
	display: none;
}

.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 760px;
  height: auto;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 33.33%;
  height: 50px;
  border-bottom: 3px solid rgba(73,113,193,0.7);
  background-color: #ccc;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #232323;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.4s ease;
  cursor: pointer;
}
.tab_item:hover{
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #4971C1;
  color: #fff;
  position: relative;
}
.graph-coments{
	width: 250px;
	height: auto;
	float: left;
}
.graph-coments2{
	width: 100%;
	height: auto;
	clear: both;
}

.tab_content_description{
		color: #232323;
		text-align: left;
}
span.bold{
	font-weight: bold;
}

span.color1{
	color: #8BA7D5;
}
span.color2{
	color: #B492CC;
}
span.color3{
	color: #DF81A2;
}
span.color4{
	color: #F6D580;
}
span.color5{
	color: #81D674;
}
span.color6{
	color: #CCCCCC;
}
.graph-field{
	float: left;
}
.tab_content_description{
	overflow: hidden;
}

.ok-img{
	width: 280px;
	height: auto;
}
.graph {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: conic-gradient(
    #8BA7D5 0,
    #8BA7D5 2%,
    #B492CC 2%,
    #B492CC 21%,
	#DF81A2 21%,
	#DF81A2	62%,
	#F6D580 62%,
    #F6D580 92%,
	#81D674 92%,
	#81D674 98%,
	#CCCCCC 98%,
	#CCCCCC 100%
  );
}
.graph-coments2 p a:hover{
	color: blue;
}
#qanda{
	min-width: 300px;
	max-width: 1024px;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;

}
#qanda p{
	font-size: 2em;
}
.qarea{
	width: 100%;
	background-color: #fff;
	border-radius: 20px;
	line-height: 50px;
	height: 50px;
	margin-bottom: 20px;
}
.aarea{
	width: 100%;
	background-color: #fff;
	border-radius: 10px;
	line-height: 30px;
}

.qarea h3,.aarea p{
	margin-left: 10px;
}

section#error-page{
	width: 100%;
	height: auto;
	padding-left: 20px;
	padding-right: 20px;
}
section#error-page h2{
	font-size: 2em;
}
section#error-page p img{
	min-width: 280px;
	max-width: 100%;
	height: auto;
}
#error-to-top{
	width: 200px;
	height: 47px;
	margin: 0 auto;
	line-height: 50px;
	color: #fff;
	background-color: #4971C1;
	border-radius: 20px;
	border-top: 1px solid #fff;
	border-bottom: 2px solid #cccccc;
}
#error-to-top p a{
	display: block;
}
#error-to-top:active{
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}


@media screen and (max-width:360px){
	#logo{
	max-width: 180px;
}
#cacthf{
	max-width: 100px;
}
	.bgm3{
		height: 1080px;
	}
	#bgm-02{
		height: 1650px;
	}
	.graph-field{
		display: block;
	}
	#main dt{
	width: 140px;
}
}

@media screen and (max-width:767px){
	.tabs{
		width: 95vw;
	}
	.tab_item{
		width: 95vw;
	}	
	#all_content{
		clear: both;
	}
	jl-price{
		width: 100%;
		height: auto;
	}
	.ok-img{
		display: none;
	}
	all_content{
		overflow: hidden;
	}

}

@media screen and (min-width:480px){
	section.contents h2,section.contents p{
	transform: rotate(10deg);
	}
	footer ul{
		overflow: hidden;
	}
	footer li{
		width: 33.33%;
		float: left;
	}
}

@media screen and (min-width:640px){
	#mainimage{
		height: 80vh;
	}
	.contents{
		height: 40vh;
		margin-top: -50px;
	}
	#c02{
		height: 80vh;
	}
	#c03{
		height: 50vh;
	}
	h2,#c02 p,#c03 p{
		font-size: 4em;
	}
section.contents h2{
	font-size: 4em;
	transform: rotate(7deg);
}
section.contents p{
	font-size: 3em;
	transform: rotate(7deg);
}
	#footer ul{
		min-width: 33.33%;
		max-width: 360px;
	}
		.addres{
		display: block;
	}
}

@media screen and (min-width:768px){
	.contents{
		height: 400px;
		margin-bottom: -50px;
	}
	.bgm{
		height: 100vh;
	}
	#c02{
		height: 700px;
	}
	#c02 img{
		max-width: 150px;
		height: auto;
	}
	#c02 div.flbox div.box{
		width: 20%;
	}
	#c02 div.box:nth-child(2){
		padding-top: 75px;
	}
	#c02 div.box:nth-child(3){
		padding-top: 150px;
	}
	#c02 div.box:nth-child(4){
		padding-top: 225px;
	}
	#c03{
		height: 350px;
	}
#logo{
	max-width: 350px;
}
#cacthf{
	max-width: 270px;
	font-size: 3em;
}
	#cacthf .fb{

		color: #fff;
	}
section.contents h2{
		font-size: 5em;
	transform: rotate(5deg);
}
section.contents p{
	font-size: 4em;
	transform: rotate(5deg);
}
		#second-contents{
		display: block;
		padding-top: 100px;
	}
	.bgm3{
		height: 750px;
	}
}
@media screen and (min-width:1024px){
	#c02{
		height: 700px;
	}
		.bgm{
		height: 840px;
	}
	#c02 img{
		max-width: 200px;
		height: auto;
	}
	#tel{
		width: 25%;
	}
		#second-contents{
		display: block;
		padding-top: 100px;
	}
	.box1{
		display: block;
	}
	.tabs{
		width: 990px;
	}
	.tab_item{
		width: 330px;
	}
	#jl-price{
	width: 600px;
}
	#footer-02{
		display: block;
	}
		#nav-drawer{
		display: none;
	}
	#gnav{
		display: block;
	}
	.user2{
	margin-top: 0;
}
}
@media screen and (min-width:1920px){
	section.contents h2,section.contents p{
	transform: rotate(3deg);
	}
}