﻿@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : common.css
 style info  :  汎用
=================================================================== */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*	基本設定、リンクカラーなど
----------------------------------------------------*/
body {
	font-family: "メイリオ", Meiryo , "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	color: #333333;
	line-height: 1.4rem;
	margin: 0;
	padding: 0;
}

a:link {color: #333333;}
a:visited {color: #333333;}
a:hover {color: #999999;}
a:active {color: #999999;}

a:hover > img {
	filter:alpha(opacity=50);
	opacity: 0.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	-o-opacity: 0.5;
	-ms-opacity: 0.5;
}

/*	共通レイアウトなど
----------------------------------------------------*/
.clearfix {
	zoom:1;
}

.clearfix:after {
	content:"";
	display:block;
	clear:both;
}


@media (min-width: 769px) {
	h2 {
		width: 980px;
		font-size: 36px;
		font-weight: normal;
		font-family: Century Gothic, "メイリオ", Meiryo , "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
		margin: 50px auto 0 auto;
		text-align: center;
		display: block;
	}
	
	h2 > span {
		font-size: 18px;
		margin: 15px 0 0 0;
		font-family: Meiryo;
		display: block;
	}
	
	h3 {
		font-size: 20px;
		font-weight: normal;
		margin: 40px auto 0 auto;
		text-align: center;
		display: block;
	}
	
	h4 {
		font-size: 16px;
		font-weight: normal;
		margin: 20px auto 0 auto;
		display: block;
	}
	
	h5 {
		font-size: 24px;
		font-weight: normal;
		font-family: Century Gothic;
		display: inline-block;
	}
	
	.btn {
		text-align: center;
		display: block;
	}
	
	.btn > a {
		width: 100%;
		height: 100%;
		color: #ffffff;
		font-size: 18px;
		line-height: 50px;
		display: inline-block;
		background: url('../img/btn.png') right 10px top 15px  #333333 no-repeat;
	}
	
	.btn > a > span {
		font-size: 13px;
	}
	
	.btn > a:hover {
		background: #797979;
	}
	
	.btnSmall {
		width: 300px;
		text-align: center;
		display: block;
	}
	
	.btnSmall > a {
		width: 100%;
		height: 100%;
		color: #ffffff;
		font-size: 15px;
		line-height: 40px;
		display: inline-block;
		background: url('../img/btn_small.png') right 10px top 13px  #333333 no-repeat;
	}
	
	.btnSmall > a > span {
		font-size: 11px;
	}
	
	.btnSmall > a:hover {
		background: #797979;
	}
	
	.btnMini {
		padding: 0 0 0 15px;
		position: relative;
	}
	
	
	.btnMini > a:before {
		content: url('../img/btn_mini.png');
		position: absolute;
		top: -1px;
		left: 0;
	}
	
	.btnMini > a:link {color: #014099;}
	.btnMini > a:visited {color: #014099;}
	.btnMini > a:hover {color: #444444;text-decoration:underline;}
	.btnMini > a:active {color: #444444;text-decoration:underline;}
	
	.btnMiniW {
		padding: 0 0 0 15px;
		position: relative;
	}
	
	.btnMiniW > a:before {
		content: url('../img/btn_mini_w.png');
		position: absolute;
		top: -1px;
		left: 0;
	}
	
	.btnMiniW > a:link {color: #ffffff;}
	.btnMiniW > a:visited {color: #ffffff;}
	.btnMiniW > a:hover {color:#ffffff;text-decoration:underline;}
	.btnMiniW > a:active {color: #ffffff;text-decoration:underline;}
	
	.btnFold {
		width: 100%;
		height: 50px;
		cursor: pointer;
		color: #ffffff;
		text-align: center;
		font-size: 18px;
		line-height: 50px;
		display: block;
		background: #333333;
		
	}
	
	.btnFold:hover {
		background: #797979;
	}
	
	.btnFold > img {
		margin: 17px 0 0 10px;
	}
	
	.btnFold > img {
		margin: 17px 0 0 10px;
	}
	
	.btnFold.close > img {
		transform: rotate(180deg);
	}
	
	#wrap {
		width: 100%;
	}
	
	header {
		width: 100%;
		padding: 15px 0 0 0;
	}
	
	header > .wrap {
		width: 980px;
		margin: 0 auto 0 auto;
	}
	
	header > .wrap > ul {
		width: 765px;
		text-align: right;
		display: inline-block;
	}
	
	header > .wrap > ul > li {
		height: 25px;
		padding: 0 15px 0 15px;
		text-align: center;
		border-right: 1px solid #d2d2d2;
		display: inline-block;
	}
	
	header > .wrap > ul > li > a {
		font-size: 85%;
		display: inline-block;
	}
	
	header > .wrap > ul > li:last-child {
		border-right: none;
	}
	
	header > .wrap > form {
		width: 210px;
		display: inline-block;
	}
	
	header > .wrap > form > input[type="text"] {
		width: 169px;
		height: 20px;
		border: 1px solid #9da0a4;
		display: inline-block;
	}
	
	header > .wrap > form > input[type="image"] {
		width: 29px;
		height: 20px;
		margin: 0 0 0 5px;
		display: inline-block;
	}
	
	header > .wrap > form > input[type="image"]:hover {
		filter:alpha(opacity=50);
		opacity: 0.5;
		-webkit-opacity: 0.5;
		-moz-opacity: 0.5;
		-o-opacity: 0.5;
		-ms-opacity: 0.5;
	}
	
	header > .wrap > .logo {
		width: 175px;
		margin: 10px 0 0 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	header > .wrap > .logo > a > img {
		width: 175px;
		height: auto;
	}
	
	header > .wrap > .logoSp {
		display: none;
	}
	
	header > .wrap > nav {
		width: 750px;
		text-align: right;
		margin: 30px 0 0 35px;
		display: inline-block;
		vertical-align: top;
	}
	
	header > .wrap > nav > ul > li {
		width: 125px;
		height: 10px;
		text-align: center;
		border-right: 1px solid #c50018;
		display: inline-block;
		position: relative;
	}
	
	header > .wrap > nav > ul > li:first-child {
		border-left: 1px solid #c50018;
	}
	
	header > .wrap > nav > ul > li > a {
		font-size: 14px;
		margin: -5px 0 0 0;
		display: block;
	}
	
	header > .wrap > .navSp,
	header > .wrap > .navSpClose {
		display: none;
	}
	
	header > .wrap > nav > ul > li:hover {
		transition: all .3s;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
		-ms-transition: all .3s;
	}
	
	header > .wrap > nav > ul > li > .navSub {
		width: 370px;
		height: 0;
		position: absolute;
		margin: -5px 0 0 -100px;
		z-index: 100;
		overflow: hidden;
	}
	
	header > .wrap > nav > ul > li:first-child > .navSub {
		margin: -5px 0 0 0px;
	}
	
	header > .wrap > nav > ul > li:last-child > .navSub {
		margin: -5px 0 0 -245px;
	}
	
	header > .wrap > nav > ul > li:hover > .navSub {
		height: auto;
		padding: 25px 0 25px 0;
		background: #ffffff;
		transition: all .3s;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
		-ms-transition: all .3s;
	}
	
	header > .wrap > nav > ul > li:hover > .navSub > li {
		width: 300px;
		font-size: 14px;
		text-align: left;
		margin: 0 0 0 40px;
		border-bottom: 1px solid #d2d2d2;
	}
	
	header > .wrap > nav > ul > li:hover > .navSub > li > a {
		color: #333333;
		padding: 25px 0 25px 0;
		display: block;
	}
	
	header > .wrap > nav > ul > li:hover > .navSub > li > a:hover {
		background: #f7f7f7;
	}
	
	header > .wrap > nav > ul > li:hover > .navSub > li > a > p {
		width: 300px;
		font-size: 10px;
		color: #b8b8b8;
	}
	
	header > .wrap > nav > .searchSp {
		display: none;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle {
		display: none;
	}
	
	header > .bread {
		width: 100%;
		margin: 10px 0 0 0;
		background: #f7f7f7;
		border-top: 10px solid #eeeeee;
	}
	
	header > .bread > ul {
		width: 980px;
		margin: 0 auto 0 auto;
		padding: 5px 0 5px 15px;
	}
	
	header > .bread > ul > li {
		display: inline-block;
	}
	
	header > .bread > ul > li > span {
		padding: 0 30px 0 0;
		position: relative;
	}
	
	header > .bread > ul > li > span > a {
		font-size: 11px;
		color: #333333;
	}
	
	header > .bread > ul > li > span > a:link {color: #333333;}
	header > .bread > ul > li > span > a:visited {color: #333333;}
	header > .bread > ul > li > span > a:hover {color: #999999;}
	header > .bread > ul > li > span > a:active {color: #999999;}
	
	header > .bread > ul > li > span > a:after {
		content: ">";
		position: absolute;
		top: 0;
		right: 10px;
	}
	
	header > .bread > ul > li:last-child > span > a:after {
		content: "";
	}
	
	header > .bread > ul > li > span > a:link {color: #014099;}
	header > .bread > ul > li > span > a:visited {color: #014099;}
	header > .bread > ul > li > span > a:hover {color: #444444;text-decoration:underline;}
	header > .wrap > .bread > ul > li > span > a:active {color: #444444;text-decoration:underline;}
	
	footer {
		width: 100%;
		margin: 100px 0 0 0;
		background: #eeeeee;
	}
	
	footer > .pagetop {
		height: 30px;
		background: #ffffff;
		position: relative;
	}
	
	footer > .pagetop > a {
		width: 130px;
		height: 30px;
		position: absolute;
		left: 50%;
		right: 50%;
		margin-left: 305px;
		display: block;
	}
	
	footer > .pagetop > a > img {
		width: 130px;
		height: 30px;
	}
	
	footer > .logo {
		width: 900px;
		margin: 0 auto 0 auto;
	}
	
	footer > .logo > img {
		width: 170px;
		height: 28px;
		margin: 30px 0 20px 0;
		display: block;
		vertical-align: top;
	}
	
	footer > nav {
		width: 100%;
		border-top: 1px solid #dcdcdc;
	}
	
	footer > nav > ul {
		width: 900px;
		margin: 0 auto 0 auto;
		padding: 40px 0 10px 0;
	}
	
	footer > nav > ul > li {
		line-height: 1.2rem;
		margin: 0 0 30px 0;
		display: inline-block;
		vertical-align: top;
	}
	
	footer > nav > ul > li:nth-child(1),
	footer > nav > ul > li:nth-child(2) {
		width: 900px;
	}
	
	footer > nav > ul > li:nth-child(3),
	footer > nav > ul > li:nth-child(4),
	footer > nav > ul > li:nth-child(5) {
		width: 300px;
	}
	
	footer > nav > ul > li > span {
		font-size: 116%;
		margin: 0 0 10px 0;
		display: inline-block;
	}
	
	footer > nav > ul > li > ul > li {
		width:300px;
		margin: 0 40px 0 0 0;
		display: inline-block;
		vertical-align: top;
	}
	
	footer > nav > ul > li > ul > li > a {
		font-size: 77%;
	}
	
	footer > nav > ul > li > ul > li > a:link {color:#014099;}
	footer > nav > ul > li > ul > li > a:visited {color:#014099;}
	footer > nav > ul > li > ul > li > a:hover {color:#014099;text-decoration:underline;}
	footer > nav > ul > li > ul > li > a:active {color:#014099;text-decoration:underline;}
	
	footer > nav > ul > li > ul > li > a > span {
		color: #666666;
	}
	
	footer > nav > ul.navSp {
		display: none;
	}
	
	footer > .priv {
		width: 100%;
		height: 100px;
		text-align: center;
		padding: 15px 0 0 0;
		background: #ffffff;
	}
	
	footer > .priv > a > img {
		width: 65px;
		height: 65px;
		display: inline-block;
	}
	
	footer > .priv > a:hover > img {
		opacity: 0.5;
		-webkit-opacity: 0.5;
		-moz-opacity: 0.5;
		-o-opacity: 0.5;
		-ms-opacity: 0.5;
	}
	
	footer > .priv > a > p {
		width: 300px;
		font-size: 77%;
		line-height: 1.2rem;
		text-align: left;
		margin: 0 0 0 15px;
		padding: 15px 0 0 0;
		display: inline-block;
	}
	
	footer > .link {
		width: 100%;
		height: 75px;
		text-align: center;
		padding: 30px 0 0 0;
		background: #333333;
	}
	
	footer > .link > ul {
		width: 750px;
		text-align: left;
		display: inline-block;
	}
	
	footer > .link > ul > li {
		margin: 0 30px 0 0;
		display: inline-block;
	}
	
	footer > .link > ul > li > a {
		font-size: 93%;
	}
	
	footer > .link > p {
		width: 120px;
		font-size: 93%;
		color: #ffffff;
		text-align: right;
		margin: 0 30px 0 0;
		display: inline-block;
	}
	
	main {
		width: 100%;
	}
	
	main > p {
		width: 980px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	
	.promo {
		width: 100%;
		min-width: 980px;
		height: 300px;
		background: #f6f6f6;
		overflow: hidden;
		position: relative;
	}
	
	.promo > .bx-wrapper {
		width: 100%;
	}
	
	.promo .bx-viewport {
		overflow: visible!important;
	}
	
	.promo .bx-pager {
		display: none;
	}
	
	.promo > .wrap {
		width: 100%;
		position: absolute;
	}
	
	.promo > .wrap > img {
		width: 1200px;
		height: 300px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	
	.promo > .title {
		width: 980px;
		height: 300px;
		font-size: 24px;
		font-weight: bold;
		line-height: 40px;
		position: absolute;
		top: 50%;
		right: 50%;
		bottom: 50%;
		left: 50%;
		margin: -100px 0 0 -475px;
	}
	
	.promo > .title > img {
		width: 50%;
		margin: 10px 0 0 0;
		display: inline-block;
	}
	
	.promo > .title > span {
		font-size: 13px;
		font-weight: normal;
		margin: 10px 0 0 0;
		display: block;
		vertical-align: bottom;
	}
	
	.promo > .title > span > span {
		font-size: 13px;
		margin: 0 0 0 5px;
		display: inline-block;
		vertical-align: bottom;
	}
	
	.promo > .title > p {
		font-weight: normal;
		text-align: left;
	}
	
	.promo > .title > p > span {
		font-size: 13px;
		display: block;
	}
	
	.promo > .title > p > .btn {
		width: 250px;
		margin-top: 20px;
	}
	
	.promo > .right {
		text-align: right;
	}
	
	.promo > .right > p {
		padding-right: 15px;
		display: inline-block;
	}
	
	.promo > .white {
		color: #ffffff;
	}
	
	.titleSp {
		display: none;
	}
	
	.lead {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > p {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > p > a {
		color: #014099;
		text-decoration: underline;
	}
	
	.lead > ul {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 0 0 25px;
	}
	
	.lead > ul > li:before {
		content: "■";
		font-size: 15px;
		color: #cccccc;
	}
	
	.lead > dl {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 0 0 25px;
	}
	
	.lead > dl > dt:before {
		content: "■";
		font-size: 15px;
		color: #cccccc;
	}
	
	.lead > dl > dd {
		padding: 0 0 10px 20px;
	}
	
	.info {
		width: 100%;
		padding: 35px 0 35px 0;
		background: #f7f7f7;
		border-bottom: 1px solid #bfbfbf;
	}
	
	.info > .wrap {
		width: 940px;
		margin: 0 auto 0 auto;
		background: #f7f7f7;
	}
	
	.info > .wrap > .left {
		width: 580px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .left > ul {
		width: 580px;
		margin: 25px 0 0 0;
	}
	
	.info > .wrap > .left > ul > li > dl {
		width: 100%;
	}
	
	.info > .wrap > .left > ul > li > dl > dt {
		color: #999999;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .left > ul > li > dl > dd {
		color: #666666;
		margin: 0 0 0 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .right {
		width: 300px;
		margin: 0 0 0 50px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .right > a > img {
		width: 300px;
		height: 180px;
	}
	
	.info > .wrap > ul {
		margin: 20px 0 0 0;
	}
	
	.info > .wrap > ul > li {
		margin: 0 10px 0 0;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > ul > li:last-child {
		margin: 0 0 0 0;
	}
	
	.fold {
		transition: all 1.0s;
		-webkit-transition: all 1.0s;
		-moz-transition: all 1.0s;
		-o-transition: all 1.0s;
	}
	
	input#fold[type="checkbox"].on-off {
		display: none;
	}
	
	input#fold[type="checkbox"].on-off + .fold {
		height: 0px;
		overflow: hidden;
	}
	
	input#fold[type="checkbox"].on-off:checked + .fold {
		height: auto;
	}
	
	input#fold[type="checkbox"].on-off ~ .open {
		display: block;
	}
	
	input#fold[type="checkbox"].on-off ~ .close {
		display: none;
	}
	
	input#fold[type="checkbox"].on-off:checked ~ .open {
		display:none;
	}
	
	input#fold[type="checkbox"].on-off:checked ~ .close {
		display:block;
	}
	
	.fold > .user {
		width: 100%;
		padding: 0 0 35px 0;
		border-bottom: 1px solid #bfbfbf;
	}
	
	.fold > .user > img {
		width: 500px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	
	.listCol2 {
		width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol2 > li {
		width: 290px;
		margin: 0 120px 35px 0;
		border-top: 5px solid #f06974;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol2 > li:nth-child(2n) {
		margin: 0 0 35px 0;
	}
	
	.listCol2 > li > a {
		width: 290px;
		height: 130px;
		font-size: 11px;
		display: block;
		position: relative;
	}
	
	.listCol2 > li > a > span {
		width: 290px;
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		margin: 0 0 0 -145px;
		text-align: center;
	}
	
	.listCol2 > li > a > span > img {
		width: 200px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol2 > li > p {
		width: 290px;
		padding: 15px 15px 15px 15px;
		background: #f7f7f7;
	}
	
	.listCol2 > li > p > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: block;
	}
	
	.listCol2 > li > .btn {
		width: 290px;
	}
	
	.listCol3 {
		width: 950px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol3 li {
		width: 300px;
		margin: 0 20px 50px 0;
		border-top: 5px solid #ea6060;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol3 > li:nth-child(3n) {
		margin: 0 0 0 0;
	}
	
	.listCol3 > li > a {
		width: 300px;
		display: block;
	}
	
	.listCol3 > li > a > span {
		width: 300px;
		font-size: 18px;
		display: block;
		margin: 25px auto 25px auto;
		text-align: center;
	}
	
	.listCol3 > li > a > span > img {
		width: 200px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol3 > li > p {
		width: 300px;
		padding: 0 0 15px 0;
	}
	
	.listCol4 {
		width: 950px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol4 > li {
		width: 225px;
		margin: 0 15px 35px 0;
		border-top: 5px solid #f06974;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol4 > li:nth-child(4n) {
		width: 225px;
		margin: 0 0 35px 0;
	}
	
	.listCol4 > li > a {
		width: 225px;
		height: 103px;
		font-size: 11px;
		display: block;
		position: relative;
	}
	
	.listCol4 > li > a > span {
		width: 225px;
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		margin: 0 0 0 -112px;
		text-align: center;
	}
	
	.listCol4 > li > a > span > img {
		width: 150px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol4 > li > p {
		width: 230px;
		font-size: 11px;
		padding: 15px 15px 15px 15px;
		background: #f7f7f7;
	}
	
	.listCol4 > li > p > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: block;
	}
	
	.listCol4 > li > .btnSmall {
		width: 230px;
	}
	
	.listCol4 > li > .btnSmall > a {
		width: 230px;
		background: url('../img/btn_small.png') 210px 13px #333333 no-repeat;
	}
	
	.listCol4 > li > .btnSmall > a:hover {
		background: #797979;
	}
	
	.interview {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	.interview > .wrap {
		width: 800px;
		margin: 40px auto 0 auto;
	}
	
	.interview > .wrap > p {
		width: 800px;
		font-size: 15px;
		line-height: 1.6rem;
		margin: 0 0 35px 0;
		display: block;
	}
	
	.interview > .wrap > p.left {
		width: 470px;
		display: inline-block;
		vertical-align: top;
	}
	
	.interview > .wrap > p.right {
		width: 300px;
		margin: 0 0 0 25px;
		display: inline-block;
		vertical-align: top;
	}
	
	.interview > .wrap > p.right > img {
		width: 300px;
		margin: 0 0 35px 0;
		display: block;
	}
	
	.profile {
		width: 800px;
		margin: 0 auto 0 auto;
		border: 1px solid #cccccc;
	}
	
	.profile > img {
		width: 175px;
		margin: 15px 0 15px 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.profile > p {
		width: 560px;
		margin: 15px 0 15px 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.profile > p > span {
		font-size: 15px;
	}
	
	.memberList {
		width: 100%;
		margin-top: 50px;
		padding: 25px 0 10px 0;
		background: url('../img/phil_bg.jpg') #f06974 center top no-repeat;
		background-size: cover;
	}
	
	.memberList > h2 {
		color: #ffffff;
		margin-top: 0;
		padding: 0 0 25px 0;
	}
	
	.memberList p {
		color: #ffffff;
		font-size: 11px;
		line-height: 13px;
		text-align: center;
		margin: 10px 0 0 0;
	}
	
	.memberList > .bx-wrapper {
		width: 980px;
	}
	
	.memberList .bx-prev {
		margin-top: -35px!important;
		margin-left: -15px!important;
	}
	
	.memberList .bx-next {
		margin-top: -35px!important;
		margin-right: -5px!important;
	}
	
	.mediaList {
		background:#f7f7f7;
		padding: 25px 0 25px 0;
	}
	
	.mediaList > ul {
		width: 980px;
		margin-top: 25px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.mediaList > ul > li {
		width: 300px;
		height: 100px;
		margin: 0 40px 20px 0;
		background: #ffffff;
		border-top: 5px solid #ea6060;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li:nth-child(3n) {
		margin: 0 0 20px 0;
	}
	
	.mediaList > ul > li > img {
		width: 70px;
		height: 70px;
		margin: 10px 0 10px 10px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p {
		width: 200px;
		font-size: 15px;
		margin: 10px 0 10px 10px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p > span {
		width: 200px;
		font-size: 11px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p > .btnMini {
		font-size: 13px;
	}
	
	.localNav {
		width: 980px;
		margin: 75px;
		margin-left: auto;
		margin-right: auto;
		border: 1px solid #cccccc;
		background: #f7f7f7;
	}
	
	.localNav > h5 {
		width: 100%;
		padding: 20px 0 20px 50px;
		border-bottom: 1px solid #cccccc;
		background: #ebebeb;
	}
	
	.localNav > h5 > span {
		font-size: 18px;
		font-family: Meiryo;
		color: #444444;
		padding: 20px 0 20px 50px;
	}
	
	.localNav > h5 > span:after {
		content: ">";
	}
	
	.localNav > ul {
		width: 100%;
		margin: 20px 0 0 0;
	}
	
	.localNav > ul > li {
		width: 33%;
		text-align: center;
		padding: 0 0 20px 0;
		display: inline-block;
		vertical-align: top;
	}
	
	.localNav > ul > li > a:link {color: #014099;}
	.localNav > ul > li > a:visited {color: #014099;}
	.localNav > ul > li > a:hover {color: #444444;text-decoration:underline;}
	.localNav > ul > li > a:active {color: #444444;text-decoration:underline;}

	.mediacommerce > a {
		font-size: 14px;
	}
	.mediacommerce > a > span {
		font-size: 10px;
	}

}


@media (max-width:768px) and (min-width: 415px) {
	
	h2 {
		width: 768px;
		font-size: 36px;
		font-weight: normal;
		font-family: Century Gothic, "メイリオ", Meiryo , "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
		margin: 30px auto 0 auto;
		text-align: center;
		display: block;
	}
	
	h2 > span {
		font-size: 18px;
		margin: 15px 0 0 0;
		font-family: Meiryo;
		display: block;
	}
	
	h3 {
		font-size: 20px;
		font-weight: normal;
		margin: 20px auto 0 auto;
		text-align: center;
		display: block;
	}
	
	h4 {
		font-size: 16px;
		font-weight: normal;
		margin: 20px auto 0 auto;
		display: block;
	}
	
	h5 {
		font-size: 24px;
		font-weight: normal;
		font-family: Century Gothic;
		display: inline-block;
	}
	
	h3.media {border-bottom: 5px solid #ea6060;}
	h3.research {border-bottom: 5px solid #fac186;}
	h3.ec {border-bottom: 5px solid #c6da87;}
	
	.btn {
		text-align: center;
		display: block;
	}
	
	.btn > a {
		width: 100%;
		height: 100%;
		font-size: 18px;
		color: #ffffff;
		line-height: 50px;
		display: inline-block;
		background: url('../img/btn.png') right 10px top 15px  #333333 no-repeat;
	}
	
	.btn > a > span {
		font-size: 13px;
	}
	
	.btn > a:hover {
		background: #797979;
	}
	
	.btnSmall {
		width: 230px;
		text-align: center;
		display: block;
	}
	
	.btnSmall > a {
		width: 100%;
		height: 100%;
		color: #ffffff;
		font-size: 15px;
		line-height: 40px;
		display: inline-block;
		background: url('../img/btn_small.png') right 10px top 13px #333333 no-repeat;
	}
	
	.btnSmall > a > span {
		font-size: 11px;
	}
	
	.btnSmall > a:hover {
		background: #797979;
	}
	
	.btnMini {
		padding: 0 0 0 15px;
		display: inline-block;
		position: relative;
	}
	
	.btnMini > a:before {
		content: url('../img/btn_mini.png');
		position: absolute;
		top: -1px;
		left: 0;
	}
	
	.btnMini > a:link {color: #014099;}
	.btnMini > a:visited {color: #014099;}
	.btnMini > a:hover {color: #444444;text-decoration:underline;}
	.btnMini > a:active {color: #444444;text-decoration:underline;}
	
	.btnMiniW {
		padding: 0 0 0 15px;
		position: relative;
	}
	
	.btnMiniW > a:before {
		content: url('../img/btn_mini_w.png');
		position: absolute;
		top: -1px;
		left: 0;
	}
	
	.btnMiniW > a:link {color: #ffffff;}
	.btnMiniW > a:visited {color: #ffffff;}
	.btnMiniW > a:hover {color:#ffffff;text-decoration:underline;}
	.btnMiniW > a:active {color: #ffffff;text-decoration:underline;}
	
	.btnFold {
		width: 100%;
		height: 50px;
		cursor: pointer;
		color: #ffffff;
		text-align: center;
		font-size: 18px;
		line-height: 50px;
		display: block;
		background: #333333;
		
	}
	
	.btnFold:hover {
		background: #797979;
	}
	
	.btnFold > img {
		margin: 17px 0 0 10px;
	}
	
	.btnFold > img {
		margin: 17px 0 0 10px;
	}
	
	.btnFold.close > img {
		transform: rotate(180deg);
	}
	
	#sideNav {
		display: none;
	}
	
	#wrap {
		width: 768px;
		overflow: hidden;
	}
	
	header {
		width: 100%;
		margin: 0 auto 0 auto;
		padding: 15px 0 0 0;
	}
	
	header > .wrap {
		width: 768px;
		margin: 0 auto 0 auto;
	}
	
	header > .wrap > ul {
		display: none;
	}
	
	header > .wrap > form {
		width: 768px;
		text-align: right;
		display: inline-block;
	}
	
	header > .wrap > form > input[type="text"] {
		width: 169px;
		height: 20px;
		border: 1px solid #9da0a4;
		display: inline-block;
	}
	
	header > .wrap > form > input[type="image"] {
		width: 29px;
		height: 20px;
		margin: 0 0 0 5px;
		display: inline-block;
	}
	
	header > .wrap > form > input[type="image"]:hover {
		filter:alpha(opacity=50);
		opacity: 0.5;
		-webkit-opacity: 0.5;
		-moz-opacity: 0.5;
		-o-opacity: 0.5;
		-ms-opacity: 0.5;
	}
	
	header > .wrap > .logo {
		margin: 0 0 0 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	header > .wrap > .logo > a > img {
		width: 175px;
		height: auto;
	}
	
	header > .wrap > .logoSp {
		display: none;
	}
	
	header > .wrap > nav {
		width: 753px;
		margin: 10px 0 0 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	header > .wrap > nav > ul > li {
		width: 125px;
		height: 10px;
		text-align: center;
		border-right: 1px solid #c50018;
		display: inline-block;
	}
	
	header > .wrap > nav > ul > li:first-child {
		border-left: 1px solid #c50018;
	}
	
	header > .wrap > nav > ul > li > a {
		font-size: 14px;
		margin: -5px 0 0 0;
		display: block;
	}
	
	header > .wrap > .navSp,
	header > .wrap > .navSpClose {
		display: none;
	}
	
	header > .wrap > nav > ul > li > .navSub {
		display: none;
	}
	
	header > .wrap > nav > .searchSp {
		display: none;
	}
	
	
	header > .wrap > input#navSp[type="checkbox"].toggle {
		display: none;
	}
	
	header > .bread {
		width: 100%;
		margin: 10px 0 0 0;
		background: #f7f7f7;
		border-top: 10px solid #eeeeee;
	}
	
	header > .bread > ul {
		width: 768px;
		margin: 0 auto 0 auto;
		padding: 5px 0 5px 15px;
	}
	
	header > .bread > ul > li {
		display: inline-block;
	}
	
	header > .bread > ul > li > span {
		padding: 0 30px 0 0;
		position: relative;
	}
	
	header > .bread > ul > li > span > a {
		font-size: 11px;
		color: #333333;
	}
	
	header > .bread > ul > li > span > a:link {color: #333333;}
	header > .bread > ul > li > span > a:visited {color: #333333;}
	header > .bread > ul > li > span > a:hover {color: #999999;}
	header > .bread > ul > li > span > a:active {color: #999999;}
	
	header > .bread > ul > li > span > a:after {
		content: ">";
		position: absolute;
		top: 0;
		right: 10px;
	}
	
	header > .bread > ul > li:last-child > span > a:after {
		content: "";
	}
	
	header > .bread > ul > li > span > a:link {color: #014099;}
	header > .bread > ul > li > span > a:visited {color: #014099;}
	header > .bread > ul > li > span > a:hover {color: #444444;text-decoration:underline;}
	header > .wrap > .bread > ul > li > span > a:active {color: #444444;text-decoration:underline;}
	
	footer {
		width: 768px;
		margin: 50px 0 0 0;
		background: #eeeeee;
	}
	
	footer > .pagetop {
		height: 30px;
		background: #ffffff;
		position: relative;
	}
	
	footer > .pagetop > a {
		width: 130px;
		height: 30px;
		position: absolute;
		left: 50%;
		right: 50%;
		margin-left: 205px;
		display: block;
	}
	
	footer > .pagetop > a > img {
		width: 130px;
		height: 30px;
	}
	
	footer > .logo {
		width: 900px;
		margin: 0 auto 0 auto;
	}
	
	footer > .logo > img {
		width: 170px;
		height: 28px;
		margin: 30px 0 20px 15px;
		display: block;
		vertical-align: top;
	}
	
	footer > nav {
		width: 100%;
		border-top: 1px solid #dcdcdc;
	}
	
	footer > nav > ul {
		width: 738px;
		margin: 0 auto 0 auto;
		padding: 40px 0 10px 0;
	}
	
	footer > nav > ul > li {
		line-height: 1.2rem;
		margin: 0 0 30px 0;
		display: inline-block;
		vertical-align: top;
	}
	
	footer > nav > ul > li:nth-child(1),
	footer > nav > ul > li:nth-child(2) {
		width: 738px;
	}
	
	footer > nav > ul > li:nth-child(3),
	footer > nav > ul > li:nth-child(4),
	footer > nav > ul > li:nth-child(5) {
		width: 360px;
	}
	
	footer > nav > ul > li > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: inline-block;
	}
	
	footer > nav > ul > li > ul > li {
		width: 360px;
		display: inline-block;
		vertical-align: top;
	}
	
	footer > nav > ul > li > ul > li > a {
		font-size: 10px
	}
	
	footer > nav > ul > li > ul > li > a:link {color:#014099;}
	footer > nav > ul > li > ul > li > a:visited {color:#014099;}
	footer > nav > ul > li > ul > li > a:hover {color:#014099;text-decoration:underline;}
	footer > nav > ul > li > ul > li > a:active {color:#014099;text-decoration:underline;}
	
	footer > nav > ul > li > ul > li > a > span {
		color: #666666;
	}
	
	footer > nav > ul.navSp {
		display: none;
	}
	
	footer > nav > ul.navSp {
		display: none;
	}
	
	footer > .priv {
		width: 768px;
		height: 100px;
		text-align: center;
		padding: 15px 0 0 0;
		background: #ffffff;
	}
	
	footer > .priv > a > img {
		width: 65px;
		height: 65px;
		display: inline-block;
	}
	
	footer > .priv > a:hover > img {
		opacity: 0.5;
		-webkit-opacity: 0.5;
		-moz-opacity: 0.5;
		-o-opacity: 0.5;
		-ms-opacity: 0.5;
	}
	
	footer > .priv > a > p {
		width: 300px;
		font-size: 77%;
		line-height: 1.2rem;
		text-align: left;
		margin: 0 0 0 15px;
		padding: 15px 0 0 0;
		display: inline-block;
	}
	
	footer > .link {
		width: 100%;
		height: 75px;
		text-align: center;
		padding: 30px 0 0 0;
		background: #333333;
	}
	
	footer > .link > ul {
		width: 600px;
		text-align: left;
		display: inline-block;
	}
	
	footer > .link > ul > li {
		margin: 0 20px 0 0;
		display: inline-block;
	}
	
	footer > .link > ul > li > a {
		font-size: 93%;
	}
	
	footer > .link > ul > li > a:link {color:#ffffff;}
	footer > .link > ul > li > a:visited {color:#ffffff;}
	footer > .link > ul > li > a:hover {color:#ffffff;}
	footer > .link > ul > li > a:active {color:#ffffff;}
	
	footer > .link > p {
		width: 100px;
		font-size: 93%;
		color: #ffffff;
		text-align: right;
		margin: 0 30px 0 0;
		display: inline-block;
	}
	
	main {
		width: 768px;
	}
	
	main > p {
		width: 738px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	
	
	.promo {
		width: 100%;
		min-width: 768px;
		height: 190px;
		background: #f6f6f6;
		overflow: hidden;
		position: relative;
	}
	
	.promo > .bx-wrapper {
		width: 100%;
	}
	
	.promo .bx-pager {
		display: none;
	}
	
	.promo > .wrap {
		width: 100%;
		position: absolute;
	}
	
	.promo > .wrap > img {
		width: 100%;
		min-width: 768px;
	}
	
	.promo > .title {
		width: 768px;
		height: 190px;
		font-size: 20px;
		font-weight: bold;
		line-height: 30px;
		position: absolute;
		top: 50%;
		right: 50%;
		bottom: 50%;
		left: 50%;
		margin: -80px 0 0 -370px;
	}
	
	.promo > .title > img {
		width: 50%;
		margin: 10px 0 0 0;
		display: inline-block;
	}
	
	.promo > .title > span {
		font-size: 13px;
		font-weight: normal;
		margin: 10px 0 0 0;
		display: block;
		vertical-align: bottom;
	}
	
	.promo > .title > span > span {
		font-size: 13px;
		margin: 0 0 0 5px;
		display: inline-block;
		vertical-align: bottom;
	}
	
	.promo > .title > p {
		font-weight: normal;
		text-align: left;
	}
	
	.promo > .title > p > span {
		font-size: 13px;
		display: block;
	}
	
	.promo > .title > p > .btn {
		width: 250px;
		margin-top: 20px;
		margin-left: auto;
	}
	
	.promo > .right {
		text-align: right;
	}
	
	.promo > .right > p {
		padding-right: 15px;
		display: inline-block;
	}
	
	.promo > .white {
		color: #ffffff;
	}
	
	.titleSp {
		display: none;
	}
	
	.lead {
		width: 768px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > p {
		width: 708px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > p > a {
		color: #014099;
		text-decoration: underline;
	}
	
	.lead > ul {
		width: 708px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 0 0 25px;
	}
	
	.lead > ul > li:before {
		content: "■";
		font-size: 15px;
		color: #cccccc;
	}
	
	.lead > dl {
		width: 708px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 0 0 25px;
	}
	
	.lead > dl > dt:before {
		content: "■";
		font-size: 15px;
		color: #cccccc;
	}
	
	.lead > dl > dd {
		padding: 0 0 10px 20px;
	}
	
	.info {
		width: 768px;
		padding: 35px 0 35px 0;
		background: #f7f7f7;
		border-bottom: 1px solid #bfbfbf;
	}
	
	.info > .wrap {
		width: 708px;
		margin: 0 auto 0 auto;
		background: #f7f7f7;
	}
	
	.info > .wrap > .left {
		width: 370px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .left > ul {
		width: 370px;
		margin: 25px 0 0 0;
	}
	
	.info > .wrap > .left > ul > li > dl {
		width: 100%;
	}
	
	.info > .wrap > .left > ul > li > dl > dt {
		color: #999999;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .left > ul > li > dl > dd {
		color: #666666;
		margin: 0 0 0 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .right {
		width: 300px;
		margin: 0 0 0 25px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .right > a > img {
		width: 300px;
		height: 180px;
	}
	
	.info > .wrap > ul {
		margin: 20px 0 0 0;
	}
	
	.info > .wrap > ul > li {
		margin: 0 10px 0 0;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > ul > li:last-child {
		margin: 0 0 0 0;
	}
	
	.info > .wrap > ul > li > .btn > a {
		width: 200px;
		background: url('../img/btn_small.png') 185px 18px  #333333 no-repeat;
	}
	
	.info > .wrap > ul > li > .btn > a:hover {
		background: #797979;
	}
	
	.info > .wrap > ul > li > .btn > a > span {
		font-size: 11px;
	}
	
	.fold {
		transition: all 1.0s;
		-webkit-transition: all 1.0s;
		-moz-transition: all 1.0s;
		-o-transition: all 1.0s;
	}
	
	.fold {
		transition: all 1.0s;
		-webkit-transition: all 1.0s;
		-moz-transition: all 1.0s;
		-o-transition: all 1.0s;
	}
	
	input#fold[type="checkbox"].on-off {
		display: none;
	}
	
	input#fold[type="checkbox"].on-off + .fold {
		height: 0px;
		overflow: hidden;
	}
	
	input#fold[type="checkbox"].on-off:checked + .fold {
		height: auto;
	}
	
	input#fold[type="checkbox"].on-off ~ .open {
		display: block;
	}
	
	input#fold[type="checkbox"].on-off ~ .close {
		display: none;
	}
	
	input#fold[type="checkbox"].on-off:checked ~ .open {
		display:none;
	}
	
	input#fold[type="checkbox"].on-off:checked ~ .close {
		display:block;
	}
	
	.fold > .user {
		width: 768px;
		padding: 0 0 35px 0;
		border-bottom: 1px solid #bfbfbf;
	}
	
	.fold > .user > img {
		width: 738px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.interview {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	.interview > .wrap {
		width: 700px;
		margin: 35px auto 0 auto;
	}
	
	.interview > .wrap > p {
		width: 700px;
		font-size: 15px;
		line-height: 1.6rem;
		margin: 0 0 35px 0;
		display: block;
	}
	
	.interview > .wrap > p.left {
		width: 400px;
		display: inline-block;
		vertical-align: top;
	}
	
	.interview > .wrap > p.right {
		width: 270px;
		margin: 0 0 0 25px;
		display: inline-block;
		vertical-align: top;
	}
	
	.interview > .wrap > p.right > img {
		width: 270px;
	}
	
	.profile {
		width: 700px;
		margin: 0 auto 0 auto;
		border: 1px solid #cccccc;
	}
	
	.profile > img {
		width: 175px;
		margin: 15px 0 15px 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.profile > p {
		width: 470px;
		margin: 15px 0 15px 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.profile > p > span {
		font-size: 15px;
	}
	
	.listCol2 {
		width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol2 > li {
		width: 290px;
		margin: 0 120px 35px 0;
		border-top: 5px solid #f06974;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol2 > li:nth-child(2n) {
		margin: 0 0 35px 0;
	}
	
	.listCol2 > li > a {
		width: 290px;
		height: 130px;
		font-size: 11px;
		display: block;
		position: relative;
	}
	
	.listCol2 > li > a > span {
		width: 290px;
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		margin: 0 0 0 -145px;
		text-align: center;
	}
	
	.listCol2 > li > a > span > img {
		width: 200px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol2 > li > p {
		width: 290px;
		padding: 15px 15px 15px 15px;
		background: #f7f7f7;
	}
	
	.listCol2 > li > p > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: block;
	}
	
	.listCol2 > li > .btn {
		width: 290px;
	}
	
	.listCol3 {
		width: 738px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol3 > li {
		width: 230px;
		margin: 0 20px 40px 0;
		border-top: 5px solid #ea6060;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol3 > li:nth-child(3n) {
		margin: 0 0 40px 0;
	}
	
	.listCol3 > li > a {
		width: 230px;
		display: block;
	}
	
	.listCol3 > li > a > span {
		width: 230px;
		font-size: 16px;
		display: block;
		margin: 25px auto 25px auto;
		text-align: center;
	}
	
	.listCol3 > li > a > span > img {
		width: 230px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol3 > li > p {
		width: 230px;
	}
	
	.listCol3 > li > .btnSmall > a {
		width: 230px;
		font-size: 10px;
	}
	
	.listCol4 {
		width: 738px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol4 > li {
		width: 230px;
		margin: 0 20px 35px 0;
		border-top: 5px solid #f06974;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol4:nth-of-type(2) > li {
		border-top: 5px solid #45a638;
	}
	
	.listCol4 > li:nth-child(3n) {
		width: 230px;
		margin: 0 0 35px 0;
	}
	
	.listCol4 > li > a {
		width: 230px;
		height: 103px;
		font-size: 11px;
		display: block;
		position: relative;
	}
	
	.listCol4 > li > a > span {
		width: 230px;
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		margin: 0 0 0 -115px;
		text-align: center;
	}
	
	.listCol4 > li > a > span > img {
		width: 150px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol4 > li > p {
		width: 230px;
		font-size: 11px;
		padding: 15px 15px 15px 15px;
		background: #f7f7f7;
	}
	
	.listCol4 > li > p > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: block;
	}
	
	.listCol4 > li > .btnSmall {
		width: 230px;
	}
	
	.listCol4 > li > .btnSmall > a {
		width: 230px;
		background: url('../img/btn_small.png') 210px 13px #333333 no-repeat;
	}
	
	.listCol4 > li > .btnSmall > a:hover {
		background: #797979;
	}
	
	.memberList {
		width: 768px;
		margin: 35px 0 0 0;
		padding: 35px 0 15px 0;
		background: url('../img/phil_bg.jpg') #f06974 center top no-repeat;
		background-size: cover;
	}
	
	.memberList > h2 {
		color: #ffffff;
		padding: 0 0 25px 0;
	}
	
	.memberList p {
		color: #ffffff;
		text-align: center;
		margin: 10px 0 0 0;
	}
	
	.memberList > .bx-wrapper {
		width: 580px;
	}
	
	.memberList .bx-prev {
		margin-top: -50px!important;
		margin-left: -15px!important;
	}
	
	.memberList .bx-next {
		margin-top: -50px!important;
		margin-right: -5px!important;
	}
	
	.mediaList {
		background:#f7f7f7;
		padding: 40px 0 25px 0;
	}
	
	.mediaList > ul {
		width: 768px;
		margin-top: 25px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.mediaList > ul > li {
		width: 325px;
		height: 100px;
		margin: 0 40px 20px 40px;
		background: #ffffff;
		border-top: 5px solid #ea6060;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li:nth-child(2n) {
		margin: 0 0 20px 0;
	}
		
	.mediaList > ul > li > img {
		width: 70px;
		height: 70px;
		margin: 10px 0 10px 10px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p {
		width: 200px;
		font-size: 15px;
		margin: 10px 0 10px 10px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p > span {
		width: 200px;
		font-size: 11px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p > .btnMini {
		font-size: 13px;
	}
	
	.localNav {
		width: 738px;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		border: 1px solid #cccccc;
		background: #f7f7f7;
	}
	
	.localNav > h5 {
		width: 100%;
		padding: 20px 0 20px 50px;
		border-bottom: 1px solid #cccccc;
		background: #ebebeb;
	}
	
	.localNav > h5 > span {
		font-size: 13px;
		font-family: Meiryo;
		color: #444444;
		padding: 20px 0 20px 50px;
	}
	
	.localNav > h5 > span:after {
		content: ">";
	}
	
	.localNav > ul {
		width: 100%;
		margin: 20px 0 0 0;
	}
	
	.localNav > ul > li {
		width: 33%;
		text-align: center;
		padding: 0 0 20px 0;
		display: inline-block;
		vertical-align: top;
	}
	
	.localNav > ul > li > a:link {color: #014099;}
	.localNav > ul > li > a:visited {color: #014099;}
	.localNav > ul > li > a:hover {color: #444444;text-decoration:underline;}
	.localNav > ul > li > a:active {color: #444444;text-decoration:underline;}

	.mediacommerce > a {
		font-size: 12px;
	}
	.mediacommerce > a > span {
		font-size: 10px;
	}

}



@media (max-width: 414px) {
	h2 {
		width: 100%;
		font-size: 26px;
		font-weight: normal;
		font-family: Century Gothic, "メイリオ", Meiryo , "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
		margin: 25px 0 0 0;
		text-align: center;
		display: block;
	}
	
	h2 > span {
		font-size: 14px;
		margin: 5px 0 0 0;
		font-family: Meiryo;
		display: block;
	}
	
	h3 {
		font-size: 16px;
		font-weight: normal;
		line-height: 40px;
		margin: 15px auto 0 auto;
		background: #f7f7f7;
		text-align: center;
		display: block;
	}
	
	h3.media {border-bottom: 5px solid #ea6060;}
	h3.research {border-bottom: 5px solid #fac186;}
	h3.ec {border-bottom: 5px solid #c6da87;}
	
	h4 {
		font-size: 16px;
		font-weight: normal;
		margin: 20px auto 0 auto;
		display: block;
	}
	
	h5 {
		font-size: 16px;
		font-weight: normal;
		font-family: Century Gothic;
		display: inline-block;
	}
	
	.btn {
		height: 44px;
		text-align: center;
		display: block;
	}
	
	.btn > a {
		width: 100%;
		height: 100%;
		color: #ffffff;
		font-size: 18px;
		line-height: 44px;
		background: #333333;
		display: inline-block;
		background: url('../img/btn.png') right 10px top 12px  #333333 no-repeat;
	}
	
	.btn > a:hover {
		background: #797979;
	}
	
	.btn > a > span {
		font-size: 13px;
	}
	
	.btnSmall {
		width: 90%;
		height: 44px;
		text-align: center;
		display: block;
	}
	
	.btnSmall > a {
		width: 100%;
		height: 100%;
		color: #ffffff;
		font-size: 15px;
		line-height: 40px;
		display: inline-block;
		background: url('../img/btn_small.png') right 10px top 13px  #333333 no-repeat;
	}
	
	.btnSmall > a > span {
		font-size: 11px;
	}
	
	.btnSmall > a:hover {
		background: #797979;
	}
	
	.btnMini {
		padding: 0 0 0 15px;
		position: relative;
	}
	
	.btnMini > a:before {
		content: url('../img/btn_mini.png');
		position: absolute;
		top: -1px;
		left: 0;
	}
	
	.btnMini > a:link {color: #014099;}
	.btnMini > a:visited {color: #014099;}
	.btnMini > a:hover {color: #444444;text-decoration: underline;}
	.btnMini > a:active {color: #444444;text-decoration: underline;}
	
	.btnMiniW {
		padding: 0 0 0 15px;
		position: relative;
	}
	
	.btnMiniW > a:before {
		content: url('../img/btn_mini_w.png');
		position: absolute;
		top: -1px;
		left: 0;
	}
	
	.btnMiniW > a:link {color: #ffffff;}
	.btnMiniW > a:visited {color: #ffffff;}
	.btnMiniW > a:hover {color: #ffffff;text-decoration: underline;}
	.btnMiniW > a:active {color: #ffffff;text-decoration: underline;}
	
	.btnFold {
		width: 100%;
		height: 44px;
		cursor: pointer;
		color: #ffffff;
		text-align: center;
		font-size: 13px;
		line-height: 44px;
		display: block;
		background: #333333;
		
	}
	
	.btnFold:hover {
		background: #797979;
	}
	
	.btnFold > img {
		margin: 17px 0 0 10px;
	}
	
	.btnFold > img {
		margin: 17px 0 0 10px;
	}
	
	.btnFold.close > img {
		transform: rotate(180deg);
	}
	
	#sideNav {
		display: none;
	}
	
	#wrap {
		width: 100%;
		overflow: hidden;
	}
	
	header {
		width: 100%;
	}
	
	header > .wrap {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	header > .wrap > ul {
		display: none;
	}
	
	header > .wrap > form {
		display: none;
	}
	
	header > .wrap > .logo {
		display: none;
	}
	
	header > .wrap > .logoSp {
		margin: 15px 0 15px 0;
		text-align: center;
	}
	
	header > .wrap > .logoSp > img {
		width: 20%;
		height: 45px;
	}
	
	header > .wrap > .logoSp > a > img {/* add 20160129 */
		width: 20%;
		height: auto;
	}
	
	header > .wrap > nav {
		width: 100%;
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-o-transition: all 0.5s;
	}
	
	header > .wrap > nav > ul > li {
		width: 100%;
		border-bottom: 1px solid #d4d4d4;
		text-align: center;
	}
	
	header > .wrap > nav > ul > li > a {
		height: 44px;
		line-height: 44px;
		display: block;
		background: url('../img/btn_small02.png') right 10px top 15px no-repeat;
	}
	
	header > .wrap > nav > ul > li > a:hover {
		background: #f7f7f7;
	}
	
	header > .wrap > nav > ul > li > .navSub {
		display: none;
	}
	
	header > .wrap > nav > .searchSp {
		width:310px;
		margin: 0 auto;
		border-bottom: 1px solid #d4d4d4;
	}
	
	header > .wrap > nav > .searchSp > input[type="text"] {
		width: 220px;
		height: 44px;
		font-size: 15px;
		margin: 5px 0 5px 15px;
		padding: 5px 5px 5px 5px;
		border: 1px solid #9da0a4;
		display: inline-block;
	}
	
	header > .wrap > nav > .searchSp > input[type="image"] {
		width: 64px;
		height: 44px;
		margin: 5px 0 5px 5px;
		display: inline-block;
	}
	
	header > .wrap > nav > .searchSp > input[type="image"]:hover {
		filter:alpha(opacity=50);
		opacity: 0.5;
		-webkit-opacity: 0.5;
		-moz-opacity: 0.5;
		-o-opacity: 0.5;
		-ms-opacity: 0.5;
	}
	
	header > .wrap > .navSp,
	header > .wrap > .navSpClose {
		width: 100%;
		text-align: center;
		border-top: 1px solid #e70014;
		border-bottom: 1px solid #e70014;
		display: block;
		cursor: pointer;
	}
	
	header > .wrap > .navSp > img,
	header > .wrap > .navSpClose > img {
		width: 100%;
		height: auto;
	}
	
	header > .wrap > input#navSp {
		display: none;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle {
		display: none;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle ~ .navSp {
		display: block;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle ~ .navSpClose {
		display: none;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle:checked ~ .navSp {
		display: none;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle:checked ~ .navSpClose {
		display: block;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle ~ nav {
		height: 0;
		overflow: hidden;
	}
	
	header > .wrap > input#navSp[type="checkbox"].toggle:checked ~ nav {
		height: 324px;
	}
	
	header > .bread {
		display: none;
	}
	
	footer {
		width: 100%;
		margin: 50px 0 0 0;
		background: #ffffff;
	}
	
	footer > .pagetop {
		height: 30px;
		border-bottom: 1px solid #ececec;
	}
	
	footer > .pagetop > a {
		width: 130px;
		height: 30px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	
	footer > .pagetop > a > img {
		width: 130px;
		height: 30px;
	}
	
	footer > .logo {
		width: 100%;
		height: 36px;
	}
	
	footer > .logo > img {
		width: 130px;
		height: 21px;
		margin: 15px 0 0 15px;
		display: block;
	}
	
	footer > nav {
		width: 100%;
	}
	
	footer > nav > ul {
		display: none;
	}
	
	footer > nav > .navSp {
		width: 100%;
		border-top: 1px solid #cccccc;
		background: #eeeeee;
		display: block;
	}
	
	footer > nav > .navSp > li {
		width: 100%;
		border-bottom: 1px solid #cccccc;
		vertical-align: top;
	}
	
	footer > nav > .navSp > li:last-child {
		border: none;
	}
	
	footer > nav > .navSp > li > a {
		color: #333333;
		padding: 20px 0 20px 10px;
		background: url('../img/btn_small02.png') 300px 25px no-repeat;
		display: block;
	}
	
	footer > .priv {
		width: 100%;
		height: 60px;
		text-align: center;
		padding: 10px 0 0 0;
	}
	
	footer > .priv > a > img {
		width: 35px;
		height: 35px;
		display: inline-block;
	}
	
	footer > .priv > a:hover > img {
		opacity: 0.5;
		-webkit-opacity: 0.5;
		-moz-opacity: 0.5;
		-o-opacity: 0.5;
		-ms-opacity: 0.5;
	}
	
	footer > .priv > a > p {
		width: 70%;
		font-size: 60%;
		line-height: 0.9rem;
		text-align: left;
		margin: 0 0 0 10px;
		display: inline-block;
	}
	
	footer > .link {
		width: 100%;
		text-align: center;
		padding: 15px 0 0 0;
		background: #333333;
	}
	
	footer > .link > ul {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	footer > .link > ul > li {
		padding: 0 5px 0 5px;
		display: inline-block;
	}
	
	footer > .link > ul > li > .btnMiniW > a {
		font-size: 10px;
	}
	
	footer > .link > ul > li > .btnMiniW > a:before {
		content: '|';
	}
	
	footer > .link > ul > li:last-child > .btnMiniW > a:after {
		content: '|';
		padding: 0 0 0 5px;
	}
	
	footer > .link > p {
		width: 100%;
		font-size: 93%;
		color: #ffffff;
	}
	
	main {
		width: 100%;
	}
	
	main > p {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.promo {
		width: 100%;
		background: #f6f6f6;
		overflow: hidden;
		position: relative;
	}
	
	.promo > .bx-wrapper {
		width: 100%;
	}
	
	.promo .bx-pager {
		display: none;
	}
	
	.promo > .wrap {
		width: 100%;
	}
	
	.promo > .wrap > img {
		width: 100%;
		min-width: 320px;
	}
	
	.promo > .title {
		width: 100%;
		display: none; /* add 20160128*/
	}
	
	.promo > p {
		width: 100%;
		font-size: 11px;
		color: #777777;
	}
	
	.promo > p > span {
		font-size: 15px;
		display: inline-block;
	}
	
	.titleSp {
		width: 100%;
		font-size: 13px;
		padding: 25px 0 25px 0;
		text-align: center;
		background: #eeeeee;
	}
	
	.titleSp > img {
		width: 230px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.titleSp > span {
		font-size: 11px;
		font-weight: normal;
		display: block;
	}
	
	.titleSp > .btn {
		width: 290px;
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > p {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > p > a {
		color: #014099;
		text-decoration: underline;
	}
	
	.lead > ul {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > ul > li:before {
		content: "■";
		font-size: 15px;
		color: #cccccc;
	}
	
	.lead > dl {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.lead > dl > dt:before {
		content: "■";
		font-size: 15px;
		color: #cccccc;
	}
	
	.lead > dl > dd {
		padding: 0 0 10px 20px;
	}
	
	.info {
		width: 100%;
		padding: 15px 0 15px 0;
		border-bottom: 1px solid #bfbfbf;
	}
	
	.info > .wrap {
		width: 290px;
		margin: 0 auto 0 auto;
	}
	
	.info > .wrap > .left {}
	
	.info > .wrap > .left > ul {
		width: 290px;
		margin: 25px 0 0 0;
	}
	
	.info > .wrap > .left > ul > li > dl {
		width: 100%;
	}
	
	.info > .wrap > .left > ul > li > dl > dt {
		color: #999999;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .left > ul > li > dl > dd {
		color: #666666;
		margin: 0 0 0 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.info > .wrap > .right {}
	
	.info > .wrap > .right > a > img {
		display: none;
	}
	
	.info > .wrap > ul {
		width: 290px;
		margin: 20px auto 0 auto;
	}
	
	.info > .wrap > ul > li {
		margin: 0 0 10px 0;
	}
	
	.info > .wrap > ul > li > .btn > a {
		width: 290px;
		background: url('../img/btn_small.png') 270px 18px  #333333 no-repeat;
	}
	
	.info > .wrap > ul > li > .btn > a:hover {
		background: #797979;
	}
	
	.info > .wrap > ul > li > .btn > a > span {
		font-size: 11px;
	}
	
	.fold {
		transition: all 1.0s;
		-webkit-transition: all 1.0s;
		-moz-transition: all 1.0s;
		-o-transition: all 1.0s;
	}
	
	.fold {
		transition: all 1.0s;
		-webkit-transition: all 1.0s;
		-moz-transition: all 1.0s;
		-o-transition: all 1.0s;
	}
	
	input#fold[type="checkbox"].on-off {
		display: none;
	}
	
	input#fold[type="checkbox"].on-off + .fold {
		height: 0px;
		overflow: hidden;
	}
	
	input#fold[type="checkbox"].on-off:checked + .fold {
		height: auto;
	}
	
	input#fold[type="checkbox"].on-off ~ .open {
		display: block;
	}
	
	input#fold[type="checkbox"].on-off ~ .close {
		display: none;
	}
	
	input#fold[type="checkbox"].on-off:checked ~ .open {
		display:none;
	}
	
	input#fold[type="checkbox"].on-off:checked ~ .close {
		display:block;
	}
	
	.fold > .user > img {
		width: 300px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.interview > .wrap {
		width: 270px;
		margin: 15px auto 0 auto;
	}
	
	.interview > .wrap > p {
		width: 270px;
		margin: 0 0 35px 0;
		display: block;
	}
	
	.interview > .wrap > p.left {
		width: 270px;
		display: block;
		vertical-align: top;
	}
	
	.interview > .wrap > p.right {
		width: 270px;
		display: block;
		vertical-align: top;
	}
	
	.interview > .wrap > p.right > img {
		width: 270px;
	}
	
	.profile {
		width: 270px;
		margin: 0 auto 0 auto;
		border: 1px solid #cccccc;
	}
	
	.profile > img {
		width: 235px;
		margin: 15px 0 15px 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.profile > p {
		width: 235px;
		margin: 0 0 15px 15px;
		display: inline-block;
		vertical-align: top;
	}
	
	.profile > p > span {
		font-size: 15px;
	}
	
	.listCol2 {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol2 > li {
		width: 100%;
		margin: 0 120px 35px 0;
		border-top: 5px solid #f06974;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol2 > li > a {
		width: 290px;
		height: 130px;
		font-size: 11px;
		display: block;
		position: relative;
	}
	
	.listCol2 > li > a > span {
		width: 290px;
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		margin: 0 0 0 -145px;
		text-align: center;
	}
	
	.listCol2 > li > a > span > img {
		width: 200px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol2 > li > p {
		width: 290px;
		padding: 15px 15px 15px 15px;
		background: #f7f7f7;
	}
	
	.listCol2 > li > p > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: block;
	}
	
	.listCol2 > li > .btn {
		width: 290px;
	}
	
	.listCol3 {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol3 > li {
		width: 290px;
		margin: 0 0 20px 0;
		border-top: 5px solid #ea6060;
		display: inline-block;
		vertical-align: top;
	}
	
	.listCol3 > li:last-child {
		margin: 0 0 0 0;
	}
	
	.listCol3 > li > a {
		width: 290px;
		display: block;
	}
	
	.listCol3 > li > a > span {
		width: 290px;
		font-size: 16px;
		display: block;
		margin: 25px auto 25px auto;
		text-align: center;
	}
	
	.listCol3 > li > a > span > img {
		width: 290px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol3 > li > p {
		width: 290px;
		padding: 0 10px 10px 10px;
	}
	
	.listCol3 > li > .btnSmall > a {
		width: 290px;
		height: 44px;
		font-size: 12px;
		line-height: 44px;
		background: url('../img/btn_small.png') 270px 15px  #333333 no-repeat;
	}
	
	.listCol4 {
		width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.listCol4 > li {
		width: 290px;
		margin: 0 20px 25px 0;
		border-top: 5px solid #f06974;
	}
	
	.listCol4:nth-of-type(2) > li {
		border-top: 5px solid #45a638;
	}
	
	.listCol4 > li:nth-child(3n) {
		width: 290px;
		margin: 0 0 25px 0;
	}
	
	.listCol4 > li > a {
		width: 290px;
		height: 103px;
		font-size: 11px;
		display: block;
		position: relative;
	}
	
	.listCol4 > li > a > span {
		width: 150px;
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		margin: 0 0 0 -75px;
		text-align: center;
	}
	
	.listCol4 > li > a > span > img {
		width: 150px;
		margin: 0 auto 0 auto;
		display: block;
	}
	
	.listCol4 > li > p {
		width: 290px;
		padding: 15px 15px 15px 15px;
		background: #f7f7f7;
	}
	
	.listCol4 > li > p > span {
		font-size: 15px;
		margin: 0 0 10px 0;
		display: block;
	}
	
	.listCol4 > li > .btnSmall {
		width: 290px;
	}
	
	.listCol4 > li > .btnSmall > a {
		width: 290px;
		background: url('../img/btn_small.png') 270px 13px #333333 no-repeat;
	}
	
	.listCol4 > li > .btnSmall > a:hover {
		background: #797979;
	}
	
	.interview {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	.memberList {
		width: 100%;
		margin: 35px 0 0 0;
		padding: 25px 0 10px 0;
		background: url('../img/phil_bg.jpg') #f06974 center top no-repeat;
		background-size: cover;
	}
	
	.memberList > .bx-wrapper {
		width: 180px;
	}
	
	.memberList .bx-prev {
		margin-top: -35px!important;
		margin-left: -15px!important;
	}
	
	.memberList .bx-next {
		margin-top: -35px!important;
		margin-right: -5px!important;
	}
	
	.memberList .bx-pager {
		display: none;
	}
	
	.memberList > h2 {
		color: #ffffff;
		margin: 0;
		padding: 0 0 10px 0;
	}
	
	.memberList p {
		font-size: 11px;
		line-height: 0.9rem;
		color: #ffffff;
		text-align: center;
		margin: 10px 0 0 0;
	}
	
	.mediaList {
		background:#f7f7f7;
		padding: 15px 0 25px 0;
	}
	
	.mediaList > ul {
		width: 100%;
		margin: 0 auto 0 auto;
	}
	
	.mediaList > ul > li {
		width: 300px;
		height: 100px;
		margin: 0 auto 20px auto;
		background: #ffffff;
		border-top: 5px solid #ea6060;
		display: block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > img {
		width: 70px;
		height: 70px;
		margin: 10px 0 10px 10px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p {
		width: 200px;
		font-size: 15px;
		margin: 10px 0 10px 10px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p > span {
		width: 200px;
		font-size: 11px;
		display: inline-block;
		vertical-align: top;
	}
	
	.mediaList > ul > li > p > .btnMini {
		font-size: 13px;
	}
	
	.localNav {
		width: 100%;
		margin-top: 35px;
		margin-left: auto;
		margin-right: auto;
		border: 1px solid #cccccc;
		background: #f7f7f7;
	}
	
	.localNav > h5 {
		width: 100%;
		padding: 10px 0 10px 15px;
		border-bottom: 1px solid #cccccc;
		background: #ebebeb;
	}
	
	.localNav > h5 > span {
		font-size: 13px;
		font-family: Meiryo;
		color: #444444;
		display: block;
	}
	
	.localNav > h5 > span:after {
		content: ">";
	}
	
	.localNav > ul {
		width: 100%;
	}
	
	.localNav > ul > li {
		width: 100%;
		border-bottom: 1px solid #cccccc;
		vertical-align: top;
	}
	
	.localNav > ul > li:last-child {
		border: none;
	}
	
	.localNav > ul > li > a {
		color: #333333;
		line-height: 50px;
		padding: 0 0 0 10px;
		background: url('../img/btn_small02.png') 300px 25px no-repeat;
		background-position: right 20px center;
		display: block;
	}
	
	.localNav > ul > li > .btnMini > a:before {
		content: "";
	}
	
	.localNav > ul > li > a:hover {
		background: #ebebeb;
	}
}