@charset "utf-8";

/* PC：style_pc.css
 * やってみたい！をやってみよう！（2018-0110）
 * **************************************************
 * Common
 * Space(Margin)
 * Header (Logo )
 * Content (Main)
 * Elements
 * Footer
 * Page Top
 * **************************************************
 */

/*  Common
------------------------------------------------------------------- */
/* padding、borderの値を含めない */
* {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/*  Space
------------------------------------------------------------------- */

/*  Header
------------------------------------------------------------------- */
#header {
	height: 225px;
	background: url(../images/bg_hd.jpg) repeat center top;
}
#header .inner {
	padding: 35px 0 0 0;
	width: 970px;
}
#header .inner p + p {
	margin-top: 5px;
}

/* Content
------------------------------------------------------------------ */
#content {
}
#content .inner {
	padding: 40px 0 60px 0;
	width: 1200px;
}

/* Elements
------------------------------------------------------------------ */
#content section {
	float: left;
	position: relative;
	margin-top: 90px;
	width: 376px;
	background-color: #ffffff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#content section:before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	width: 95%;
	height: 0;
	margin: auto;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}
#content section + section {
	margin-left: 30px;
}
#content section span {
	display: block;
	margin-top: -90px;
}
#content section span:after{
	content: "";
	position: absolute;
	right: 0;
	top: 2px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-width: 20px 20px 0 20px;
}
#content section span img {
	position: relative;
	margin-left: -10px;
}
#content section h1 img {
	margin: 20px 0 0 0;
}
#content section ul {
	margin: 15px 20px;
}
#content section li {
	text-align:left;
}
#content section p {
	margin: 0 20px;
	font-size: 1.3em; /* =13px */
	line-height: 1.8;
	text-align:left;
}

/* プログラミングスクール */
#content section.programming {
	border:2px solid #f6ac1d;
}
#content section.programming:before{
	border-bottom:15px solid #f6ac1d;
}
#content section.programming span:after{
	border-color: #f6ac1d transparent transparent transparent;
}
#content section.programming li + li  {
	margin-top: 10px;
	padding-top: 15px;
	background: url(../images/programming/line-pg.png) repeat-x center top;
}

/* サイエンティストスクール */
#content section.scientist {
	border:2px solid #6dba44;
}
#content section.scientist:before{
	border-bottom:15px solid #6dba44;
}
#content section.scientist span:after{
	border-color: #6dba44 transparent transparent transparent;
}
#content section.scientist li + li  {
	margin-top: 10px;
	padding-top: 15px;
	background: url(../images/scientist/line-sc.png) repeat-x center top;
}

/* クレファス */
#content section.crefus {
	border:2px solid #5db7e8;
}
#content section.crefus:before{
	border-bottom:15px solid #5db7e8;
}
#content section.crefus span:after{
	border-color: #5db7e8 transparent transparent transparent;
}
#content section.crefus li + li  {
	margin-top: 10px;
	padding-top: 15px;
	background: url(../images/crefus/line-cf.png) repeat-x center top;
}

/* ボタン：詳しくはコチラ！ */
#content section a {
	display: block;
	margin: 20px auto 30px auto;
	height: 40px;
	width: 200px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
#content section.programming a {
	background: #ea5413 url(../images/btn-more.png) no-repeat center center;
}
#content section.scientist a {
	background: #6dba44 url(../images/btn-more.png) no-repeat center center;
}
#content section.crefus a {
	background: #5db7e8 url(../images/btn-more.png) no-repeat center center;
}
#content section a:hover {
  opacity: 0.75;
  -moz-opacity: 0.75;
  filter: alpha(opacity=75);
}

/* Footer
------------------------------------------------------------------ */
#footer {
	background: url(../images/bg-ft.jpg) repeat center top;
}
#footer .inner {
	padding: 50px 0 80px 0;
	width: 1200px;
}
#footer .inner > div {
	width: 1160px;
	padding :20px 20px;
	background-color: #ffffff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#footer .inner > div:after {
	content:".";
	display:block;
	height:0px;
	clear:both;
	visibility:hidden;
}
#footer .inner > div div {
	float: left;
}
#footer .inner > div div + div {
	margin-left: 70px;
	padding-left: 70px;
	border-left:1px solid #e6e6e6;
}
#footer .inner div .adr {
	margin-left: 120px;
	text-align:left;
}
#footer .inner div .adr dt {
}
#footer .inner div .adr dd {
	font-size: 1.2em; /* =12px */
}
#footer .inner div .tel {
}
#footer .inner div .tel img {
	display:block;
}
#footer .inner div .tel img + img {
	margin-top :8px;
}

/* PageTop
------------------------------------------------------------------ */
#pageTop {
	position:relative;
	margin:0 auto;
	max-width:1200px;
}
#pageTop a {
	z-index:9999;
	display: block;
	overflow:hidden;
	position: fixed;
	bottom: 0px;
	left: auto;
	margin-left:1210px;
	height:40px;
	width: 40px;
	background:#F08237;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	text-indent:-9999px;
	outline:none;
}
/* Arrow */
#pageTop a:before,
#pageTop a:after {
	position:absolute;
	left:50%;
	content:"";
	width:0px;
	height:0px;
	margin-left:-10px;
	border:10px solid transparent;
}
#pageTop a:before {
	top:50%;
	margin-top:-11px;
	border-bottom:10px solid #F08237;
}
#pageTop a:after {
	z-index:-1;
	top:50%;
	margin-top:-15px;
	border-bottom:10px solid #fff;
}



