@charset "utf-8";

/* =============================================================

	Base

* ============================================================= */

body {
	font-family: 'Lato', Arial, Verdana, "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 93.75% ; /* 15px */
	line-height: 1.8;
	letter-spacing: 1px;
	text-align: justify; /* for ff, webkit */
	text-justify: inter-ideograph; /* for IE */
	color: #333;
	background-color: #fff;
	/* safari5.1系で一部文字が（transform 3Dの影響で）かすれるのを防ぐため　*/
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-tap-highlight: rgba(0,0,0,0);
	min-width: 980px;
}
.IE8 body {
	font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

/* Micro clearfix */
.cf:before,
.cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
	*zoom: 1;
}

.hidden {
	overflow: hidden;
}


/* =============================================================

	Layouts

* ============================================================= */

.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }
.mb-120 { margin-bottom: 120px !important; }
.mb-1em { margin-bottom: 1.8em !important; }


/* structure
--------------------------- */

.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 70px 5%;
}
.container + .container {
	padding-top: 0 !important;
}

.container.lowspace {
	padding-top: 50px;
	padding-bottom: 50px;
}
.container.narrow {
	max-width: 780px;
}

.container + .container.anchor {
	padding-top: 70px !important;
	margin-top: -70px !important;
}


.island-a, .island-b {
	padding: 40px 50px;
}

.island-a {
	border-radius: 7px;
	background-color: #f2f2f2;
}

.island-b {
	border-radius: 10px;
	background-color: #fff;
	border: 4px solid #e5e5e5;
}


/* grid
--------------------------- */

.row:before,
.row:after {
	content: "";
	display: table;
}
.row:after {
	clear: both;
}

.row {
	margin: 0 -2.5%;
	*zoom: 1;
}
.row.space1 {
	margin: 0 -1.5%;
}
.row.space3 {
	margin: 0 -3.5%;
}
.row.space4 {
	margin: 0 -4.5%;
}


.grid-1of1,
.grid-1of2,
.grid-1of3,
.grid-2of3,
.grid-1of4,
.grid-2of4,
.grid-3of4,
.grid-2of5,
.grid-3of5 {
	display: block;
	float: left;
	padding-left: 2.5%;
	padding-right: 2.5%;
	box-sizing: border-box;
}
.row.space1 .grid-1of2,
.row.space1 .grid-1of3,
.row.space1 .grid-2of3,
.row.space1 .grid-1of4,
.row.space1 .grid-2of4,
.row.space1 .grid-3of4,
.row.space1 .grid-2of5,
.row.space1 .grid-3of5 {
	padding-left: 1.5%;
	padding-right: 1.5%;
}
.row.space3 .grid-1of2,
.row.space3 .grid-1of3,
.row.space3 .grid-2of3,
.row.space3 .grid-1of4,
.row.space3 .grid-2of4,
.row.space3 .grid-3of4,
.row.space3 .grid-2of5,
.row.space3 .grid-3of5 {
	padding-left: 3.5%;
	padding-right: 3.5%;
}
.row.space4 .grid-1of2,
.row.space4 .grid-1of3,
.row.space4 .grid-2of3,
.row.space4 .grid-1of4,
.row.space4 .grid-2of4,
.row.space4 .grid-3of4,
.row.space4 .grid-2of5,
.row.space4 .grid-3of5 {
	padding-left: 4.5%;
	padding-right: 4.5%;
}


.grid-1of1 {
	width: 100%;
}
.grid-1of2,
.grid-2of4 {
	width: 50%;
}
.grid-1of3 {
	width: 33.333%;
}
.grid-2of3 {
	width: 66.666%;
}
.grid-1of4 {
	width: 25%;
}
.grid-3of4 {
	width: 75%;
}
.grid-2of5 {
	width: 40%;
}
.grid-3of5 {
	width: 60%;
}


.row.inlineblock .grid-1of1,
.row.inlineblock .grid-1of2,
.row.inlineblock .grid-1of3,
.row.inlineblock .grid-2of3,
.row.inlineblock .grid-1of4,
.row.inlineblock .grid-2of4,
.row.inlineblock .grid-3of4,
.row.inlineblock .grid-2of5,
.row.inlineblock .grid-3of5 {
	float: none;
	display: inline-block;
	vertical-align: top;
}


/* =============================================================

	Typography

* ============================================================= */

strong, b { font-weight: bold; }

.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

.text-small { font-size: 0.933em; } /* 14px */

.text-red, .text-red a {
	color: #ef381a;
}

h2, .h2, .h2-a {
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
	margin: 0 auto 30px;
	max-width: 780px;
}

.h2-a {
	font-size: 1em;
	margin-bottom: 0;
	position: relative;
	max-width: none;
}
.h2-a:before {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #FFD500;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 50%;
	margin-top: -1px;
}

.h2-a > span {
	line-height: 60px;
	display: inline-block;
	background-color: #FFD500;
	width: 240px;
	border-radius: 30px;
	position: relative;
}

.h2-a > span:before {
	content: "";
	background-color: #fff;
	width: 116%;
	height: 60px;
	position: absolute;
	z-index: -1;
	left: -8%;
	top: 50%;
	margin-top: -30px;
}
.IE8 .h2-a > span:before {
	content: none;
}

.h2-a.icon {
	margin-bottom: 40px;
}

.h2-a.icon > span {
	text-indent: -9999px;
	border-radius: 0;
	background: url(../images/sprite01.png) no-repeat;
}

.h2-a.orange:before {
	background-color: #ef7a00;
}
.h2-a.orange > span {
	height: 80px;
	background-position: 0 -550px;
}

.h2-a.green:before {
	background-color: #87bd23;
}
.h2-a.green > span {
	height: 80px;
	background-position: -250px -550px;
}

.h2-a.blue:before {
	background-color: #009ce6;
}
.h2-a.blue > span {
	height: 70px;
	background-position: -500px -550px;
}

.h2-a.pink:before {
	background-color: #ec74a2;
}
.h2-a.pink > span {
	height: 70px;
	background-position: 0 -650px;
}

.h2-a.purple:before {
	background-color: #9b4998;
}
.h2-a.purple > span {
	height: 76px;
	background-position: -250px -650px;
}


h3 {
	font-size: 1.067em;
	font-weight: bold;
	line-height: 1.6;
}

.h3-a {
	font-size: 1.467em;
	text-align: left;
	position: relative;
	margin-bottom: 30px;
}
.h3-a:before {
	content: "";
	width: 14px;
	height: 14px;
	background-color: #FFD500;
	position: absolute;
	top: 50%;
	left: -25px;
	margin-top: -7px;
}

.h3-b {
	font-size: 1.2em;
	display: inline-block;
	padding: 0 5px 2px;
	border-bottom: 3px solid #FFD500;
	margin: 0 -5px 24px;
}

.h3-c {
	color: #4d4d4d;
	padding: 7px 15px 5px;
	margin-bottom: 20px;
	background-color: #efefef;
}
.h3-c.dark {
	text-align: center;
	background-color: #d8d8d8;
}

.h3-d {
	margin-bottom: 10px;
}

.baloon {
	font-size: 1.067em;
	line-height: 100px;
	margin: 0 auto 50px;
	position: relative;
}
.baloon:before {
	content: "";
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #E6E7E7;
	position: absolute;
	z-index: -1;
	left: 50%;
	margin-left: -50px;
}
.baloon:after {
	content: "";
	border: 10px solid transparent;
	border-top: 15px solid #E6E7E7;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -10px;
}


.table-a {
	border-top: 1px solid #ccc;
}

.table-a > dt {
	font-weight: bold;
	font-size: 0.933em;
	width: 11em;
	padding: 15px 0 15px 25px;
	position: absolute;
}
.table-a.narrow > dt {
	width: 5em;
	padding-left: 15px;
}

.table-a > dd {
	padding: 15px 25px 15px 15em;
	border-bottom: 1px solid #ccc;
}
.table-a.narrow > dd {
	padding-left: 7em;
	padding-right: 15px

}



/* text-set */

.text-set > header + * {
	margin-top: 0 !important;
}

.text-set > *:first-child {
	margin-top: 0;
}

.text-set > *:last-child {
	margin-bottom: 0 !important;
}

.text-set a {
	text-decoration: underline;
}

.text-set * + * {
	margin-top: 1.8em;
}

.text-set h3 {
	margin-top: 2.8em;
}
.text-set h3 + * {
	margin-top: 0 !important;
}

.text-set .h3-c {
	margin-left: -15px;
	margin-right: -15px;
}

.text-set li {
	margin-left: 1.5em;
	position: relative;
}

.text-set li:before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #FFD500;
	border-radius: 50%;
	position: absolute;
	top: .5em;
	left: -1.5em;
}

.text-set li + li {
	margin-top: .5em;
}

.text-set .table-a {
	margin: 40px -25px;
}
.text-set .island-a .table-a,
.text-set .island-b .table-a {
	margin: 40px -5px;
}

.text-set .table-a > dt {
	margin: 0;
}

.text-set .table-a > dd {
	margin: 0;
}

.text-set .island-a,
.text-set .island-b {
	padding: 30px 40px;
	margin: 40px -5px;
}

.text-set .island-a .h3-c {
	background-color: #d8d8d8;
}

.text-set .island-a > *:first-child,
.text-set .island-b > *:first-child {
	margin-top: 0 !important;
}
.text-set .island-a > *:last-child,
.text-set .island-b > *:last-child {
	margin-bottom: 0 !important;
}




/* =============================================================

	Links

* ============================================================= */

a {
	color: #1a1a1a;
	text-decoration: none;
}


.ui-button {
	text-align: center;
}

.ui-button > a,
a.ui-button {
	color: #4d4d4d;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	padding: 0 1em;
	min-width: 12em;
	display: inline-block;
	background-color: #e5e5e5;
	border-radius: 5px;
}
.ui-button > a:hover,
a.ui-button:hover {
	background-color: #ccc;
}

.ui-button.apply > a,
a.ui-button.apply {
	color: #fff;
	font-size: 1.067em;
	line-height: 70px;
	width: 400px;
	background-color: #57C3EA;
}
.ui-button.apply > a:hover,
a.ui-button.apply:hover {
	background-color: #1dace0;
}



/* pagenation */

.ui-pagenation {
	text-align: center;
}

.ui-pagenation a,
.ui-pagenation strong {
	color: #4d4d4d;
	font-size: 1.067em;
	font-weight: bold;
	line-height: 45px;
	display: inline-block;
	vertical-align: middle;
	width: 45px;
	margin: 0 5px;
	border-radius: 50%;
	background-color: transparent;
}
.ui-pagenation a:hover {
	background-color: #f2f2f2;
}

.ui-pagenation strong {
	background-color: #FFD500;

}

.ui-pagenation i {
	display: inline-block;
	margin: 0 5px;
}



/* =============================================================

	Images

* ============================================================= */

img {
	vertical-align: middle;
	max-width: 100%;
	width: auto;
	height: auto;
}

img.aligncenter,
img.alignnone {
	display: block;
	margin: 0 auto;
}

img.alignleft {
	display: block;
	margin-top: 0;
	margin-right: auto;
}

img.alignright {
	display: block;
	margin-top: 0;
	margin-left: auto;
}


/* =============================================================

	Common

* ============================================================= */


/* line-city
--------------------------- */

.line-city {
	position: relative;
}

.line-city:before,
.line-city:after {
	content: "";
	position: absolute;
	background: url(../images/sprite01.png) no-repeat;
}

.line-city:before {
	width: 186px;
	height: 57px;
	background-position: -300px 0;
	left: 5px;
	top: -57px;
}
.line-city:after {
	width: 230px;
	height: 54px;
	background-position: -500px 0;
	right: 5px;
	top: -54px;
}


/* box-fukidashi
--------------------------- */

.box-fukidashi {
	border: 4px solid #e5e5e5;
	background-color: #fff;
	padding: 15px 20px;
	box-sizing: border-box;
	border-radius: 10px;
	position: relative;
}
a:hover .box-fukidashi,
a.box-fukidashi:hover {
	border-color: #d9d9d9;
	background-color: #f2f2f2
}

.box-fukidashi:before,
.box-fukidashi:after {
	content: "";
	border: 12px solid transparent;
	border-right: 16px solid #e5e5e5;
	position: absolute;
	left: -28px;
	top: 50%;
	margin-top: -12px;
}
.box-fukidashi:after {
	border-right: 16px solid #fff;
	margin-left: 6px;
}
a:hover .box-fukidashi:before,
a.box-fukidashi:hover:before {
	border-right-color: #d9d9d9;
}

a:hover .box-fukidashi:after,
a.box-fukidashi:hover:after {
	border-right-color: #f2f2f2;
}

.box-fukidashi.top:before,
.box-fukidashi.top:after {
	border: 10px solid transparent !important;
	border-bottom: 14px solid #e5e5e5 !important;
	left: 50%;
	top: -12px;
	margin-left: -10px;
}
.box-fukidashi.top:after {
	border-bottom: 16px solid #fff !important;
	margin-top: -6px;
}
a:hover .box-fukidashi.top:before,
a.box-fukidashi.top:hover:before {
	border-bottom-color: #d9d9d9 !important;
}

a:hover .box-fukidashi.top:after,
a.box-fukidashi:hover.top:after {
	border-bottom-color: #f2f2f2 !important;
}


/* teacher-profile
--------------------------- */

.teacher-profile {
	margin-bottom: -30px;
}

.teacher-profile + .teacher-profile {
	margin-top: 40px;
}

.teacher-profile header {
	position: relative;
	min-height: 100px;
	padding: 10px 0 0 150px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.teacher-profile section {
	margin-bottom: 30px;
}

.teacher-profile header > h3 {
	font-size: 1.2em;
	line-height: 1.4;
	text-align: left;
	margin-bottom: 5px;
}

.teacher-profile h3 > span {
	font-size: 0.722em;
	display: inline-block;
}

.teacher-profile h3 > i {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	left: 20px;
	top: 0;
}

.teacher-profile header > p {
	font-size: 0.933em;
	font-weight: bold;
	line-height: 1.6;
}

.teacher-profile .box-fukidashi.top:before,
.teacher-profile .box-fukidashi.top:after {
	left: 65px;
}

.teacher-profile .box-fukidashi > a {
	text-decoration: underline;
}


/* list-news
--------------------------- */

.list-news {
	font-size: 0.933em;
	line-height: 1.6;
	margin: -20px 0;
}

.list-news dt {
	color: #929496;
	letter-spacing: 1px;
	position: absolute;
	z-index: 1;
	padding: 10px 20px;
}

.list-news dd > a {
	display: block;
	padding: 10px 10px 10px 11em;
	border-top: 1px solid #ccc;
	position: relative;
}
.list-news dt:first-child + dd > a {
	border: none;
}

.list-news dd > a:hover {
	background-color: #f2f2f2;
}
#top-news .list-news dd > a:hover {
	background-color: #e5e5e5;
}


/* list-archive
--------------------------- */

.list-archive {
	margin-bottom: -30px !important;
}

.list-archive > div {
	margin-bottom: 30px;
}

.list-archive a {
	display: block;
	padding: 15px;
	margin: -15px;
}
.list-archive a:hover {
	background-color: #f2f2f2;
}

.list-archive .program-icon {
	float: left;
}
.list-archive .target-icon {
	float: right;
}

.island-a .list-archive .program-icon {
	float: none;
	margin: 0 auto 10px !important;
}
.island-a .list-archive .target-icon {
	text-align: center;
	float: none;
	margin: 0 auto;
}

.al-txt {
	font-size: 0.933em;
	line-height: 1.6;
	font-weight: bold;
	clear: both;
	padding-top: 10px;
}

.al-txt img {
	display: block;
	border: 3px solid transparent;
	margin: -3px -3px 10px;
}
.list-archive a:hover .al-txt img {
	border-color: #fff;
}


/* program-icon
--------------------------- */

.program-icon {
	text-indent: -9999px;
	background: url(../images/sprite01.png) no-repeat;
	margin: 0 auto;
	width: 180px;
}
.program-icon.orange {
	height: 60px;
	background-position: -450px -200px;
}
.program-icon.green {
	height: 60px;
	background-position: -650px -200px;
}
.program-icon.blue {
	height: 52px;
	background-position: -450px -300px;
}
.program-icon.pink {
	height: 52px;
	background-position: -650px -300px;
}
.program-icon.purple {
	height: 57px;
	background-position: -450px -400px;
}


.program-icon.small {
	width: 90px;
}
.program-icon.small.orange {
	height: 27px;
	background-position: 0 -450px;
}
.program-icon.small.green {
	height: 24px;
	margin: 1px 0;
	background-position: 0 -500px;
}
.program-icon.small.blue {
	height: 22px;
	margin: 2px 0;
	background-position: -100px -450px;
}
.program-icon.small.pink {
	height: 21px;
	margin: 3px 0;
	background-position: -200px -450px;
}
.program-icon.small.purple {
	height: 23px;
	margin: 2px 0;
	background-position: -100px -500px;
}


/* target-icon
--------------------------- */

.target-icon > li {
	text-indent: -9999px;
	background: url(../images/sprite01.png) no-repeat;
	display: inline-block;
	vertical-align: top;
	margin: 0 4px;
	width: 40px;
	height: 55px;
}
.target-icon.medium > li {
	height: 40px;
}
.target-icon > .orange {
	background-position: -500px -100px;
}
.target-icon > .green {
	background-position: -550px -100px;
}
.target-icon > .blue {
	background-position: -600px -100px;
}
.target-icon > .pink {
	background-position: -650px -100px;
}

.target-icon.small > li {
	margin: 0 1px;
	width: 25px;
	height: 25px;
}
.target-icon.small > .orange {
	background-position: -700px -100px;
}
.target-icon.small > .green {
	background-position: -750px -100px;
}
.target-icon.small > .blue {
	background-position: -700px -150px;
}
.target-icon.small > .pink {
	background-position: -750px -150px;
}


/* tp-iconset
--------------------------- */

.tp-iconset {
	text-align: center;
	margin-bottom: 30px;
}

.tp-iconset .program-icon {
	display: inline-block;
	vertical-align: middle;
}

.tp-iconset .target-icon {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}


/* =============================================================

	#site-header

* ============================================================= */

#fixed-header {
	position: fixed;
	z-index: 300;
	width: 100%;
	min-width: 980px;
	background-color: #fff;
	border-bottom: 1px solid #e5e5e5;
	top: -70px;
	transition: top .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#fixed-header.active {
	top: 0;
	transition-duration: .3s;
}

.sh-inner {
	overflow: hidden;
}

.sh-logo {
	width: 338px;
	height: 71px;
	position: absolute;
	top: 15px;
	left: 10px;
}
#fixed-header .sh-logo {
	width: 288px;
	height: 50px;
	top: 5px;
}

.sh-logo > a {
	text-indent: -9px;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../images/sprite01.png) no-repeat 0 0;
}
#fixed-header .sh-logo > a {
	background-position: -450px -500px;
}

.sh-nav-main {
	text-align: right;
	padding-right: 100px;
	float: right;
}
#fixed-header .sh-nav-main {
	padding-right: 70px;
}

.sh-nav-main > li {
	display: inline-block;
	border-left: 1px solid #d9d9d9;
	position: relative;
}

.sh-nav-main > li > a {
	font-size: 0.933em;
	font-weight: bold;
	line-height: 95px;
	letter-spacing: 0;
	display: block;
	border-top: 5px solid transparent;
	padding: 0 12px;
	background-color: #fff;
	box-sizing: border-box;
}
.sh-nav-main > li.active > a {
	border-top-color: #fbc600;
}

.no-touch .sh-nav-main > li:hover > a {
	background-color: #ededed;
}

#fixed-header .sh-nav-main > li > a {
	line-height: 55px;
}

#fixed-header .sh-nav-sub-outer {
	position: absolute;
	right: 0;
	top: 0;
}

.sh-nav-sub-outer dt {
	display: none;
}
#fixed-header .sh-nav-sub-outer dt {
	text-indent: -9999px;
	display: block;
	width: 70px;
	height: 60px;
	background-color: #808080;
}
#fixed-header .sh-nav-sub-outer dt:after {
	content: "";
	width: 13px;
	height: 7px;
	background: url(../images/sprite01.png) no-repeat -350px -400px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -7px;
}

#fixed-header .sh-nav-sub-outer dd {
	position: absolute;
	right: 0;
	width: 8em;
	overflow: hidden;
	visibility: hidden;
}
.no-touch #fixed-header .sh-nav-sub-outer:hover dd,
.touch #fixed-header .sh-nav-sub-outer.open dd {
	visibility: visible;
}

.sh-nav-sub {
	width: 100px;
	position: absolute;
	right: 0;
	top: -2px;
}
#fixed-header .sh-nav-sub {
	width: auto;
	position: static;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	    -ms-transform: translateY(-20px);
	        transform: translateY(-20px);
	transition: all .1s;
}
.no-touch #fixed-header .sh-nav-sub-outer:hover .sh-nav-sub,
.touch #fixed-header .sh-nav-sub-outer.open .sh-nav-sub {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
	transition: all .2s;
}

.sh-nav-sub > li > a {
	color: #ccc;
	font-size: 0.733em;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	background-color: #333;
	border-top: 1px solid #808080;
	display: block;
}
.sh-nav-sub > li > a:hover {
	background-color: #000;
}
#fixed-header .sh-nav-sub > li > a {
	color: #fff;
	line-height: 1.6;
	padding: 15px 0;
	background-color: #808080;
	border-top: 1px dotted #ccc;
}
#fixed-header .sh-nav-sub > li > a:hover {
	background-color: #666;
}

.sh-pagetitle {
	height: 100px;
	#background-color: #daf5cb;
	background-color: #FFD500;
	position: relative;
}

.sh-pagetitle:before {
	content: attr(data-fukidashi);
	font-size: 0.8em;
	line-height: 1.4;
	position: absolute;
	right: 7%;
	top: 30px;
	margin-right: 100px;
	-webkit-transform: rotate(-10deg);
	    -ms-transform: rotate(-10deg);
	        transform: rotate(-10deg);
}

.sh-pagetitle:after {
	content: "";
	width: 90px;
	height: 106px;
	background: url(../images/sprite01.png) no-repeat -350px -200px;
	position: absolute;
	top: 10px;
	right: 7%;
}

.sh-pagetitle h1 {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	padding: 0 180px 0 65px;
	margin: 0 7%;
	-webkit-transform: translateY(-45%);
	    -ms-transform: translateY(-45%);
	        transform: translateY(-45%);
}
.IE8 .sh-pagetitle h1 {
	margin-top: -.7em;
}

.sh-pagetitle h1:before {
	content: "";
	width: 50px;
	height: 50px;
	background: url(../images/sprite01.png) -400px -100px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -25px;
}


/* ---------------------------------------
	min-width: 1080px
--------------------------------------- */

@media screen and (min-width: 1080px) {

	.sh-nav-main > li > a {
		padding: 0 17px;
	}

}

/* ---------------------------------------
	min-width: 1180px
--------------------------------------- */

@media screen and (min-width: 1180px) {

	.sh-logo {
		left: 20px;
	}

	.sh-nav-main > li > a {
		letter-spacing: 1px;
		padding: 0 22px;
	}

}

/* ---------------------------------------
	min-width: 1280px
--------------------------------------- */

@media screen and (min-width: 1280px) {

	.sh-nav-main > li > a {
		letter-spacing: 1px;
		padding: 0 32px;
	}

}


/* =============================================================

	#site-footer

* ============================================================= */

#site-footer {
	text-align: center;
	padding: 30px 0;
	margin-top: 50px;
	background-color: #4d4d4d;
}
#top-banner + #site-footer {
	margin-top: 0;
}

#sf-top {
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 10px;
	background-color: #FFD500;
	bottom: -70px;
	transition: bottom .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#sf-top.active {
	bottom: 0;
	transition-duration: .4s;
}

#sf-top > a {
	font-size: 0.8em;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.3;
	text-align: center;
	display: block;
	width: 80px;
	padding: 20px 0 12px;
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
}

.sf-nav {
	padding: 0 5%; mb-10
}

.sf-nav > li {
	font-size: 0.867em;
	line-height: 1.6;
	display: inline-block;
	margin: 0 1em;
}

.sf-nav a {
	color: #fff;
	padding: 5px 0 3px;
	margin: -5px 0 -3px;
}

.sf-nav a:hover {
	border-bottom: 2px solid #999;
}

.sf-sns {
	line-height: 0;
	margin: 20px 0;
}

.sf-sns li {
	display: inline-block;
	margin: 0 8px;
}

.sf-sns a {
	text-indent: -9999px;
	display: block;
	width: 24px;
	height: 24px;
	background: url(../images/sprite01.png) no-repeat;
}

.sf-sns .facebook {
	background-position: -350px -100px;
}
.sf-sns .twitter {
	background-position: -350px -150px;
}


.sf-copy {
	color: #b2b2b2;
	font-size: 0.733em;
	letter-spacing: 2px;
}


/* =============================================================

	high resolution

* ============================================================= */

@media only screen and (-webkit-min-device-pixel-ratio: 1.3),(min-resolution: 1.3dppx) {

	.h2-a.icon > span,
	.line-city:before,
	.line-city:after,
	.program-icon,
	.target-icon > li,
	.sh-logo > a,
	#fixed-header .sh-nav-sub-outer dt:after,
	.sh-pagetitle:after,
	.sh-pagetitle h1:before,
	.sf-sns a,
	.top-badge > h2,
	#staff-list h3:after,
	#an-nav > li > a:before,
	.an-subnav.target > li > a:before,
	.an-subnav.program > li > a:before,
	#program-header:before,
	#program-header:after,
	#program-header h2,
	#pl-list:after,
	#pl-list .logo > b {
		background-image: url(../images/sprite01@2.png) !important;
		background-size: 850px 1300px !important;
	}

	#ti-image > li > .illust,
	#ti-image > li > .mark,
	#ti-image > li > .txt > span {
		background-image: url(../images/top-image_sprite01@2.png) !important;
		background-size: 950px 800px !important;
	}

}










