@charset "UTF-8";
/* 全デバイス共通　スマホ用 */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}
html {
  visibility: hidden;
}
html.wf-active, html.loading-delay {
  visibility: visible;
}
image{
	vertical-align: bottom;
	max-width:100%;
	height: auto;
}
body{
	color:#2F2F2F;
	font-family: "yu-gothic-pr6n", sans-serif;
font-weight: 400;
font-style: normal;
	line-height: 1.5;
	background:#F8F8F8;
    width:100%;
	font-size:16px;
	
}
/*ヘッダー固定部分はじまり*/
#top_main{
	position: relative;
	margin-top:55px;
}
#top_main p{
	position:absolute;
	top:45%;
	left: 50%;
	transform:translate(-50%,-50%);
	color: #FFF;
	margin: 0;
	padding: 0;
	font-size: 25px;
}
ol{
	display: flex;
	float: right;
	margin-right: 5%;
	padding: 15px 0;
	font-size: 13px;
}
ol li a{
	color:#303030;
}

ol li:after{
	content:'>';
	padding:0.2em;
}
li:last-child:after{
	content:'';
}
#top_main h2{
		display: none;
	}

#top{
	width:100%;
	background:#80C4CE;
	position: fixed;
	height:55px;
	z-index: 1;
	top:0;
}

#logo h1{
	position:fixed;
	top:3px;
	font-weight: bold;
	font-size: 18px;
	margin:10px;
	margin-left:90px;
	z-index: 2;
	color:#fff;
}

#logo h1 a{
	color:#fff;
	font-weight: 100;
}
#logo h2{
	position:fixed;
	top:10px;
	padding-left:4%;
	margin:0;
	z-index: 2;
	width: 85px;
	height: 45px;
}
/*ヘッダー固定部分おわり*/
#top_main img{
	width:100%;
	height: auto;
	vertical-align: bottom;
}
main{
	width:90%;
	height: auto;
	margin:0 auto;
}
main img{
	width: 100%;
	height: auto;
	margin:0;
	padding:0;
}

footer{
	clear:both;
	padding: 20px 0 70px 0;
	background:#80C4CE;
	width:100%;
}
footer p{
	padding:3px;
	color:#FFFFFF;
}
footer p a{
	color:#FFFFFF;
}
small{
	font-size:85%;
}
footer p{
	padding-left: 5%;
}

#nav{
	color:#D2D2D2;
	padding:0 5%;
	clear:both;
}
#nav img{
	float: right;
	padding-top:2px;
}
#nav  ul li{
	padding:5px 3% 10px 3%;
	border-top:solid 1px;
	font-size:16px;
	margin:0;
	font-weight: bold;
}
#nav  ul li:last-child{
	border-bottom:solid 1px;
}
#nav li a{
	color:#303030;
}

footer ul li a{
color:#212020;
	}
main h2{
	padding:10px;
	text-align: center;
	font-size:20px;
	transform:scaleX(0.9);
	font-weight:bold;
}
main h5{
	font-weight: normal;
	border-bottom: solid 1px;
	display: inline-block;
}
main section p{
	padding-bottom:20px;
	text-align:justify;
}
/* クリックエリアと位置を指定 ---------------------- */
.btnHamburger {
  position: fixed;
  top: 0.5%;
  right: 3%;
  padding-left: -50px;
  width: 50px; /* クリックエリアの横幅*/
  height: 50px; /* クリックエリアの高さ*/
  cursor: pointer;
  z-index:100;
}

/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.btnHamburger .line {
  position: absolute;
  top: 1%;
  left:5px;
  display: block;
  width: 30px; /* 横幅 */
  height: 3px; /* 1本辺りの高さ */
  background:#F3F3F3; /* 線の色 */
 border-radius: 5px;

  /* 適用するプロパティ、変化する時間、変化する速度 */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
 }

/* 3本線の各線の位置を指定 ---------------------- */
.btnHamburger .line_01 { top: 13px; }
.btnHamburger .line_02 { top: 23px; }
.btnHamburger .line_03 { top: 33px; }
/*メニューの隠れ家*/
#coverlayer{
	background:#80C4CE;
	width:1px;
	position: fixed;
	top:0;
	bottom:0;
	opacity: 0;
	z-index:5;
	transition: 0.5s;
	-webkit-transition:0.5s;
}

nav{
	position:fixed;
	top:60px;
	left:-280px;
	width:280px;
	opacity: 0;
	z-index: 10;
}
/* 最上部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_01 {
  top: 23px; /* 上から2番目の線の位置に変更 */

  /* 線を45度回転 */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
	background-color:#fff;
}

/* 上から2番目の線のスタイル ---------------------- */
.btnHamburger.is-active .line_02 {
  opacity: 0; /* 不透明度を下げて線を消す */
}

/* 最下部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_03 {
  top: 23px; /* 上から2番目の線の位置に変更 */

  /* 線を135度回転 */
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
	background-color:#fff
}
/*メニューの文字が表示されるとき*/
nav.is-active{
	opacity: 1;
	top:60px;
	left:0;
	right:0;
	bottom:0;
	margin: auto;
	color:#fff;
	transition:0.5s;
	-webkit-transition:0.5s;
}
nav.is-active a{
 color:#fff;
 font-size: 18px;
}
#coverlayer.is-active{
 width:100%;
 opacity:1;
}
nav ul li a{
	display: block;
	padding-left: 10px;
	line-height: 48px;
	box-sizing: border-box;
	transition: all.3s;
	font-size:18px;
}
a{
	text-decoration: none;
}
ul{
	height:100%;
}
nav ul ul{
	display: block;
}
nav ul li{
	position:relative; 
}
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position:relative;
	font-size:16px;
    /*はじめは非表示*/
	z-index:4;
	transition: all .3s;
	padding-left: 25px;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
/*hoverしたら表示*/
	nav li.has-child:hover > ul,

nav li.has-child:active > ul,
{
  visibility: visible;
  opacity: 1;
}

	
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before,.has-child::after{
  content:'';
  position: absolute;
  left:165px;
  top:23px;
  width:13px;
  height:0px;
  background: #fff;
  transform: rotate(90deg);
  border-radius: 5px;
}
.has-child::after{
	width: 15px;
	height: 1.5px;
	transform: rotate(180deg);
}
    nav ul li::before{
  content:'';
  position: absolute;
  left:165px;
  top:20px;
  width:7px;
  height:7px;
  border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
	border-radius: 1px;
}
 
nav ul li.has-child.active::before{
    opacity:0;
}
nav ul li.has-child.active::after{
    
	transform: rotate(180deg);
}
nav li.has-child ul,
nav li.has-child ul ul{
	position: relative;
	left: 0;
	top: 0;
	width:100%;
	visibility: visible;
	opacity: 1;
	display: none;
	transition: none;
}


p.raised{
  display: inline-block;
  background-color:#C8AF2B;/*背景色*/
  color: #fff;/*文字色*/
  font-size: 90%;/*文字サイズ*/
  line-height:2;
  text-decoration:none;
  letter-spacing: 0.1em;/*字間*/
  padding: 0.2em 0.5em 0.2em 0.5em;/*ボタン内の余白*/
  border-radius: 5px;/*角の丸み*/
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);/*影*/
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;/*変化を緩やかに*/	 
  text-align: center;
  margin:30px 0 70px 0;
 width: 180px;
}
.raised a{
	color:#fff;
}
section{
	text-align: center;
	margin-bottom: 0px;
	margin-top: 50px;
}
.raised:hover{
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);/*浮き上がるように*/
	background-color:#80C4CE;/*背景色*/
}

p.works{
  display: inline-block;
  background-color:#0109A3;/*背景色*/
  color: #fff;/*文字色*/
  font-size: 1em;/*文字サイズ*/
  line-height:2;
  text-decoration:none;
  letter-spacing: 0.03em;/*字間*/
  padding: 0.2em 1em;/*ボタン内の余白*/
  border-radius: 3px;/*角の丸み*/
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);/*影*/
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;/*変化を緩やかに*/
  text-align: center;
  margin:0 0 20px 0;
 width: 150px;
}
.works a{
	color:#fff;
	font-style: italic;
}
.works:hover{
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);/*浮き上がるように*/
	background-color:#040253;/*背景色*/
}
.roi{
	animation-name:fadeUpAnime;
	padding:0;
	animation-duration:3.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top:0;
	margin-bottom: 35px;
}
section.column{
	margin-top: 0;
	margin-bottom: 25px;
}
@keyframes fadeUpAnime{
from{
	opacity: 0;
	transform: :translateY(100px)
}
to{
	opacity: 1;
	transform: translateY(0);
	}}

.ques{
	padding-bottom: 50px;
}
.ques p:nth-child(odd){
	padding-bottom: 25px;
	padding-left: 25px;
	text-indent: -25px;
	letter-spacing:-0.03em;
}
.ques p:nth-child(even){
	padding-bottom: 5px;
	padding-left: 25px;
	text-indent: -25px;
	letter-spacing:-0.05em;
}
.ques p:nth-child(even)::before{
	display: inline-block;
	content:"Q";
	color: #fff;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background:  #80C4CE;
	text-align: center;
	text-indent:-0;
}
.ques p:nth-child(odd)::before{
	display: inline-block;
	content:"A";
	color: #fff;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background:#EBB62A;
	text-align: center;
	text-indent:-0;
}
.roi p{
	padding-bottom: 0;
}

.roi h3{
	text-align: center;
	text-decoration: underline;
	font-weight: bold;
	margin: 0px 0 10px 0;
	letter-spacing: -0.03em;
}

.roi h4{
	text-align: center;
	color:#DE0307;
	font-weight: bold;
	text-indent: -1em;
	padding-left: 1em;
}
.roi a{
	text-decoration:underline;
	color: #80C4CE;
}

.contact h1{
	font-size:110%;
	padding:100px 0 0 0;
	border-bottom:solid 2px;
	width: 130px;
	margin:0 auto;
	margin-top:50px;
	text-align: center;
	}
.contact h2{
	text-align: left;
	padding-left:6px;
	font-size: 110%;
	font-weight:normal;
}
.contact p{
	padding:0 0 2px 30px;
	letter-spacing:0.1em;
}
.contact p:last-child{
	padding-bottom:300px;
}


table tr td{
 height:30px;
 line-height:30px;
 padding:10px 20px 0 10px;
text-align:justify;
width:100%;
display: block;
}
table{
 margin:5px auto 20px 0;
border-collapse:separate;
	width:100%;
}
table tr{
 border:1px solid #000;
}
table td:first-child{
 color:#000;
 width:150px;
 font-weight: bold;
font-style: italic;
padding-top:40px;
}
table td:nth-child(even){
	padding-top: 0;
	margin-top: 0;
}

td label{
 margin-right:10px;
}

/*ページのトップへ戻る*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.pagetop a {
    display: block;
    text-align: center;
    color: #fff;
	background-color:#80C4CE;
    font-size: 15px;
    text-decoration: none;
	border-radius:50%;
    width: 40px;
	height: 40px;
	line-height: 35px
}
.pagetop a:hover {
    display: block;
    background-color:#fff;
    text-align: center;
    color:#80C4CE;
    font-size: 15px;
    text-decoration: none;
    width: 40px;
	height: 40px;
}
.category h2{
        padding-top:70px;
	   padding-bottom: 0;
		height: auto;
		text-align: center;
	}
.category p{
	text-align: center;
	padding-top:0;
	color:#707070;
}
.day
	{
		animation-name:fadeLeftAnime;
	animation-duration:1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	
}
.day h2{
text-decoration:underline ;
font-size: 18px;
	}
.day dt{
	text-align: left;
	padding:0;
	padding-left: 15px;
	text-indent: -15px;
}


@keyframes fadeLeftAnime{
from{
	opacity: 0;
	transform: :translateX(-200px)
}
to{
	opacity: 1;
	transform: translateX(0);
}
}

.roi h2{
	display: inline-block;
	border-bottom:solid 2px #80C4CE;
	color:#2F2F2F;
	font-size:18px;
	padding:3px 0px 0px 3px;
	margin:0 auto 20px auto;
	letter-spacing: 0.05em;
	text-align: center;
}
.stand h2{
	background:#BB0000;
	color:#fff;
	font-size:16px;
	padding:3px 0px 5px 0px;
	margin:0 auto 20px auto;
	width:220px;
	letter-spacing: 0.05em;
	}
	.stand{
		padding-bottom:35px;
		padding-top:10px;
	}



.list th:first-child{
	width:30%;
	border-top:solid 1px #9E9E9E;
	border-left:solid 1px #9E9E9E;
	font-size:14px;
	background:#E4E4E4;
	vertical-align:middle;
	text-align: center;
}
.list tr:first-child th{
	text-align: center;
	background:#80C4CE;
	font-weight:bold;
	border-right:solid 1px #9E9E9E;
}
.list th:nth-child(2){
	width: 70%;
	border-top:solid 1px #9E9E9E;
	border-left:solid 1px #9E9E9E;
	border-right:solid 1px #9E9E9E;
	font-size:15px;
	padding-left:2%;
	padding-top: 10px;
	letter-spacing:-0.05em;
	text-align: center;
}
.list tr:last-child th{
	border-bottom:solid 1px #9E9E9E;
}


.roi h5{
	font-size:15px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px
}
#box{
	background: #FFFFFF;
	margin:10px 0;
	padding:0  10px;
	border : solid 1px #333;
	width:300px;
}
#formWrap {
		padding:0 5%;
	color:#555;
	line-height:100%;
	font-size:14px;
	width:90%;
}
		#formWrap h2{
	font-size:15px;
	padding-top:10px;
	border-bottom:solid 2px;
	width: 90px;
	margin:0 auto;
}
		#formWrap h3{
			font-size: 18px;
			text-align: center;
			padding: 50px 0 20px 0;
			font-weight:600;
		}
		#formWrap h4{
			font-size:25px;
			text-align: center;
			font-weight:bold;
			padding-bottom: 50px;
		}
		#formWrap h4 a{
			color:#C9AB00;
		}
		#formWrap h5{
			font-size: 18px;
			text-align: center;
			padding: 50px 0 20px 0;
			font-weight:600;
		}
		
table.formTable th{
	width:300px;
	display:block;
}
	table.formTable td {
		margin:0 auto;
		height: auto;
		width:100%;
	padding:10px 0px;
	font-weight: 600;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:20%;
	height:40px;
	margin: 50px auto;
}
#formWrap h2{
	font-size:16px;
	font-weight: bold;
	border-bottom:solid 2px;
	width: 180px;
	margin:120px auto 20px auto;
	text-align: center;
	padding-bottom:5px;
}
	
		
		table.formTable p{
	width:70%;
	font-weight:normal;
	text-align:left;
	padding:20px 0 0 0;
}
table.formTable th{
	width:70%;
	font-weight:bold;
	text-align:left;
	padding-top:20px;
}
	.must{
		background-color:#D90520;
		color:#fff;
		padding:3px 7px;
		margin-left: 5px;
		font-size:13px;
	}
		label{
			display: block;
			width: 200px;
  position: relative;
  padding: 5px 10px 5px 0;
		}
	
			.button{
		padding: 5px 10px;
  border: 1px solid #fff;
  color: #fff;
  background-color:#80C4CE;
  
	}
		.button a{
			font-weight: 600;
		}
		.button:hover{
			background-color:#C8AF2B;
		}
section .profile{
	margin: 0 auto;
	width: 45%;
}
.copyright img{
	width: 200px;
}

#jump {
	padding-top: 70px;
	margin-top: -70px;
}
#teacher {
	padding-top: 70px;
	margin-top: -70px;
}
#plan {
	padding-top: 70px;
	margin-top: -70px;
}
#question{
	padding-top: 70px;
	margin-top: -70px;
}
#support{
	padding-top: 70px;
	margin-top: -70px;
}

nav ul li a.is-active{
	display: none;
}
.column p{
	padding: 0;
}

@media only screen and (min-width:600px){
nav ul li a{
	display: block;
	text-align: center;
	line-height: 48px;
	box-sizing: border-box;
	font-size: 110%;
	margin:30px;
}
/* クリックエリアと位置を指定 ---------------------- */
.btnHamburger {
  position: fixed;
  top: 1%;
  right: 5%;
  padding-left: -50px;
  width: 50px; /* クリックエリアの横幅*/
  height: 50px; /* クリックエリアの高さ*/
  cursor: pointer;
  z-index:100;
}


/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.btnHamburger .line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px; /* 横幅 */
  height: 3px; /* 1本辺りの高さ */
  background:#fff; /* 線の色 */
	}
	/* 3本線の各線の位置を指定 ---------------------- */
.btnHamburger .line_01 { top: 10px; }
.btnHamburger .line_02 { top: 22px; }
.btnHamburger .line_03 { top: 34px; }
	/* 最上部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_01 {
  top: 15px; /* 上から2番目の線の位置に変更 */

  /* 線を45度回転 */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 上から2番目の線のスタイル ---------------------- */
.btnHamburger.is-active .line_02 {
  opacity: 0; /* 不透明度を下げて線を消す */
}

/* 最下部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_03 {
  top: 15px; /* 上から2番目の線の位置に変更 */
	}
	#logo{
		margin-left:5%;
		padding-left: 0;
	}
#logo h1{
	top:10px;
	margin-left:75px;
}
#logo h1 a{
	margin:10px;
	z-index: 2;
}
#logo h2{
	top:14.5px;
	margin-left: 0px;
	padding-left: 0;
	
}
	#top{
	position: fixed;
	height:60px;
}
	/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before,.has-child::after{
  content:'';
  position: absolute;
  left:225px;
  top:23px;
  width:13px;
  height:0px;
  background: #fff;
  transform: rotate(90deg);
  border-radius: 5px;
}
.has-child::after{
	width: 15px;
	height: 1.5px;
	transform: rotate(180deg);
}
    nav ul li::before{
  content:'';
  position: absolute;
  left:225px;
  top:20px;
  width:7px;
  height:7px;
  border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
	border-radius: 1px;
}
 
nav ul li.has-child.active::before{
    opacity:0;
}
nav ul li.has-child.active::after{
    
	transform: rotate(180deg);
}
nav li.has-child ul,
nav li.has-child ul ul{
	position: relative;
	left: 0;
	top: 0;
	width:100%;
	visibility: visible;
	opacity: 1;
	display: none;
	transition: none;
}



	#lightgallery li{
	width:230px;
	height:auto;
	float: left;
	padding-top:10px;
	margin:10px;
	display: block;
}
#lightgallery{
	width:100%;
	margin:0 auto;
	margin-top:70px;
	}

.day dt{
	padding:0;
	text-indent:2px;
}
	.roi p{
		padding-left: 5px;
	}
/*PC用*/
@media only screen and (min-width:960px){
	
#wrapper{
	max-width: 1280px;
	margin: 0 auto;
}
#wrapper main p{
	font-size: 17px;
}
	#wrapper main h1{
	font-size:20px;
}
	main{
		width:1100px;
		padding:0;
		margin:0 auto;
	}
article{
	clear: both;
	display:flex;
  flex-wrap:wrap;
}
	.copyright{
		font-size:20px;
		margin:0 auto;
		width: 700px;
	}
	.roi{
		font-size:20px;
		margin:0 auto;
		width: 700px;
	}
	.roi p{
		padding-top:0;
	}
	.stand{
		font-size:20px;
		margin:0 auto;
	}
	.stand p{
		padding-top:0;
	}
	.day img{
		width: 500px;
		float: left;
	}
		.day h2{
		margin:0px 0 10px 0;
	letter-spacing:0em;
}
.day p{
	padding:0;
	letter-spacing:-0.03em;
	margin:0;
}
	
	nav ul li a{
	position:fixed;
	color:#4D4D4D;
	top:1%;
	padding:0;
	margin-top:7px;
	z-index: 2;
	width:100px;
	border-right: none;
	font-size:90%;
	height:30px;
	line-height: 30px;
}
	#logonav{
		max-width: 1100px;
		margin:0 auto;
		padding:0 auto;
	}
	
	
	#logo {
		width: 1100px;
		margin: 0 auto;
	}
	#logo h1{
		font-size:19px;
		top:8px;
	    margin-left:0;
		padding-left:65px;
	}
	#logo h2{
		margin-left:0;
		padding-left: 0;
	}

	nav ul{
		padding-left: 33.2%;
		padding-right:3%;
		display:flex;
        flex-wrap:wrap;
		font-size:18px;
	}
	nav ul li{
		display: block;
		line-height: 30px;
		width: 16.6%;
	}
	nav ul li a{
		color:#fff;
	}
	nav ul li a:hover{
		color:#80C4CE;
		border-radius:3px;
		background:#fff;
	}
	
	nav {
	margin: 7px 0;
 position: static;
 width:1100px;
 opacity: 1;
		color:#262626;
  }



	/*hoverしたら表示*/

	nav li.has-child ul a:hover{
		color:#80C4CE;
	}
	.class-name {
  &:hover {
    color:#fff;
  }
}

	.btnHamburger,#coverlayer{
  display:none;
	}
	.topimg{
		display: block;
		margin-top:-1%;
	}
	main section p{
	padding:10px 10px 20px 10px;
	text-align:justify;
	}
	
	.raised a{
		letter-spacing:0em;
	}
	p.raised{
		width: 180px;
		margin-top:30px;
	}
	.basic img{
		width: 50%;
		float: left;
	}
		.basic h2{
		margin:30px 0 10px 0;
	letter-spacing:0em;
}
.basic p{
	padding:0;
	letter-spacing:0em;
	margin:0;
}

	.column{
		width: 570px;
		float: right;
		padding-left: 30px;
		margin-top: 0;
	}
	
	.column h2{
		margin-top: 0;
	}
	
	#top_main h1{
		display: none;
	}

	#top_main h2{
		display: block;
		width:100%;
		margin: 0 auto;
	}

	section.worksbutton{
		width:1100px;
		margin:50px;
	}

.contact {
		margin:0 auto;
		width: 1080px;
	}
	　　.contact h1{
		padding: 0 auto;
		text-align: center;
		padding-left: 26%;
	}
	.contact h2{
		padding-left: 24.5%;
	}
.contact p{
		padding-left: 26%;
	}
	.contact p:last-child{
		padding-bottom: 370px;
	}
	
	table.list{
 width:700px;
 margin: 30px auto;
		
}
table th{
padding: 20px;
font-size: 17px;
}

	.roi h2{
	font-size:17px;
	padding:2px;
	margin:0 auto 20px auto;
	letter-spacing: 0.05em;
}
	.roi h4{
	font-size:17px;
}
.roi h5{
	font-size:17px;
	margin-bottom: 10px;
}
	.roi:nth-child(2){
		margin-bottom: 100px;
	}

	#logonav{
		max-width: 1100px;
		margin:0 auto;
		padding:0;
	}
	#nav{
	width:100%;
	margin:0 auto;
	padding:200px 0 0 0;
}
#nav  ul li{
	padding:10px;
	font-size:15px;
	margin:0;
	width:20%;
	float: left;
}
	#nav ul li a{
	border-right:solid 1px;
		padding-right: 40px;
		padding-left:10px;
		}
	#nav ul li img{
		float: left;
	}
	
		footer{
		clear: both;
		margin-top:30px;
		margin:0 auto;
			width:100%;
	}
	footer p{
		width: 1097px;
		padding-left: 0;
		margin: 0 auto;
	}
	#top_main{
		display: block;
		clear: both;
	}
	#top_main h2{
		width: 1100px;
	}
	.course{
		margin: 0 auto;
		font-size:17px;
		width: 700px;
	}
	.course p{
	letter-spacing:-0.05em;
		}


	.list th:first-child{
	font-size:17px;
}
.list th:nth-child(2){
	font-size:17px;
	}
	#box{
	background: #FFFFFF;
	margin:10px 0;
	padding:0  10px;
	border : solid 1px #333;
	width:300px;
}
	#formWrap {
	width:700px;
	padding:50px auto;
	color:#555;
	line-height:100%;
	font-size:16px;
	margin:0 auto;
}

table.formTable{
	width:700px;
	margin:0 auto;
}
table.formTable td{
	padding:10px 10px 10px 0;
	width:700px;
}
table.formTable th{
	text-align:left;
	padding:20px 0 0 0;
}
	