@charset "utf-8";

/* PC：style_sp.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 {
	background: url(../images/bg_hd.jpg) repeat center top;
}
#header .inner {
	padding: 20px 10px 20px 10px;
}
#header .inner p {
}
#header .inner p + p {
	margin-top: 5px;
}
#header .inner p img.logoImgsw {
	width: 100%;
	max-width: 100%;
	height: auto;
}
@media all and (max-width: 640px) {
	#header .inner p img.logoImgsw {
	}
}

/* Content
------------------------------------------------------------------ */
#content {
}
#content .inner {
	padding: 20px 10px 30px 10px;
}

/* Elements
------------------------------------------------------------------ */
#content section {
	position: relative;
	margin-top: 90px;
	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-top: 110px;
}
#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;
	width: 100%;
	max-width: 100%;
	height: auto;
}
@media all and (max-width: 640px) {
	#content section span img {
		width: auto;
		max-width: auto;
		height: auto;
	}
}
#content section h1 img {
	margin: 20px 0 0 0;
	width: 95%;
	max-width: 95%;
	height: auto;
}
@media all and (max-width: 640px) {
	#content section h1 img {
		width: auto;
		max-width: auto;
		height: auto;
	}
}
#content section ul {
	margin: 15px 20px;
}
#content section li {
	text-align:left;
}
#content section li img {
	max-width: 100%;
	height: auto;
}
#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: 90%;
	-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 {
	position:relative; 
	background: url(../images/bg-ft.jpg) repeat center top;
}
#footer .inner {
	padding: 30px 10px 70px 10px;
}
#footer .inner > div {
	padding :20px 0 30px 0;
	background-color: #ffffff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-align:center;
}
#footer .inner > div:after {
	content:".";
	display:block;
	height:0px;
	clear:both;
	visibility:hidden;
}
#footer .inner > div div {
	padding :0 10px;
}
#footer .inner > div div + div {
	margin-top: 20px;
}
#footer .inner div .adr {
}
#footer .inner div .adr dt {
	text-align:left;
}
#footer .inner div .adr dd {
	font-size: 1.2em; /* =12px */
	text-align:left;
}
#footer .inner div .tel {
	text-align:center;
}
#footer .inner div .tel img {
	display:block;
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
	height: auto;
}
#footer .inner div .tel img + img {
	margin-top :15px;
}


/* PageTop
------------------------------------------------------------------ */
#pageTop {
	position:relative;
	margin:0 auto;
}
#pageTop a {
	z-index:9999;
	display: block;
	overflow:hidden;
	position: fixed;
	bottom: 0px;
	right: 10px;
	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;
}
