@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #f4f4f4;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
	text-decoration: none;
	color:#0083ce;
	font-weight:bold;
	transition:0.4s;
}
a:hover{
color:#2b95ea;
}
.pc{display:block;}
.sp{display:none;}
/*トップページ（※index.html）の設定
---------------------------------------------------------------------------*/
body.home {
	background: url(/common/images/bluesky002.jpg) no-repeat left center;	/*背景画像の設定（古いブラウザ用）*/
	background: url(/common/images/bluesky002.jpg) no-repeat left center / cover;	/*背景画像の設定*/
}
/*ロゴ*/
body.home .logo {
	background: #opacity;	/*背景色*/
	text-align: center;	/*ロゴ画像の配置を左右の中央に*/
	padding: 0px;		/*ブロック内の余白*/
	position: relative;	/*下の配置場所を指定する為に必要なスタイル*/
	top: 35%;			/*上から43%の場所に配置*/
	animation-name: home-logo;	/*下のアニメーションで指定しているkeyframesの名前（@keyframes home-logo）*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.2秒。*/
	animation-fill-mode: both;
	animation-delay: 1s;	/*１秒遅れてアニメーションをスタートさせる*/
}
body.home .logo img {
	width: 220px;	/*ロゴ画像の幅*/
}
/*ロゴのアニメーション*/
@keyframes home-logo {
0% {opacity: 0;transform: scaleY(0);}
100% {opacity: 1;transform: scaleY(1)}
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*最大幅の制限。これ以上広がらない。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右に回り込み*/
	width: 68%;		/*ブロックの幅*/
	margin-top: 100px;	/*上に空けるブロックの外側へのスペース*/
	margin-right: 3%;	/*右に空けるブロックの外側へのスペース*/
}
/*mainブロック内のh2(見出し)タグ*/
#main h2 {
	clear: both;
	margin-bottom: 15px;	/*見出しの下に空けるスペース*/
	text-align: center;		/*文字を中央に*/
	background: #0083ce;		/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 6px;	/*角丸のサイズ*/
	line-height: 2.0;		/*行間*/
	padding: 10px 30px;		/*上下、左右へのブロック内の余白*/
	font-size:1.4em;
}
/*mainブロック内のh3(見出し)タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	text-align: center;		/*文字を中央に*/
	border-radius: 0.3em;	/*角丸のサイズ*/
	border: 2px solid #0083ce;	/*枠線の幅、線種、色*/
	color: #0083ce;			/*文字色*/
	line-height: 1.5;	/*行間*/
	background:#fff;
	padding: 0.5em 30px;		/*上下、左右へのブロック内の余白*/
}
#main h4{
	font-size:1.4em;
	color:#0083ce;
	font-weight:bold;
	line-height:1.6;
}
/*h2タグとh3タグ内のspanタグ*/
#main h2 span, #main h3 span {
	display: block;
	font-weight: normal;	/*見出しのデフォルトの太字を標準にする設定*/
	font-size: 11px;	/*文字サイズを少し小さめに*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めに*/
}
/*mainブロック内のp(段落)タグ設定*/
#main p {
	padding: 0px 0 15px;	/*上、左右、下への余白*/
}
/* #main h2 + p,
#main h3 + p {
	margin-top: -10px;
} */
/*mainブロック内のsectin間のスペース*/
#main section>div{
	padding: 0 1.5em;
}
#main section + section {
	margin-top: 30px;
}

/*listブロック（works.html内で使用）
---------------------------------------------------------------------------*/
/*ブロック単位の設定*/
.list {
	position: relative;overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅。0,0,0は黒の事で0.1は10%色がついた状態の事。*/
	line-height: 1.4;	/*行間を少し狭く。デフォルトの値は冒頭の「body」にあります。*/
	margin-left: 2.5%;	/*左に空けるボックスの外側へのスペース。左右間の余白になります。*/
	margin-bottom: 20px;	/*下に空けるボックスの外側へのスペース。上下間の余白になります。*/
	background: #fff;	/*背景色*/
	height: 340px;	/*下の「.list a」のheightの数字と合わせる*/
}
.list a {
	position: relative;overflow: hidden;text-decoration: none;display: block;
	height: 340px;	/*上のの「.list」のheightの数字と合わせる*/
}
/*マウスオン時のlistブロック*/
.list a:hover {
	background: #0083ce;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*リンクを設定した際に出るボックス内の「→」マーク*/
.list a::after {
	content: "→";	/*このテキストを表示させます。変更しても構いませんが機種依存文字は化けるので使わないように。*/
	display: inline-block;text-align: center;
	width: 15px;	/*幅*/
	line-height: 15px;	/*高さ*/
	position: absolute;
	right: 15px;	/*listブロックに対して右から10pxの場所に配置*/
	bottom: 15px;	/*listブロックに対して下から10pxの場所に配置*/
	font-size: 10px;	/*文字サイズ*/
	background: #0083ce;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*「→」マークのマウスオン時*/
.list a:hover::after {
	background: #fff;	/*背景色*/
	color: #0083ce;		/*文字色*/
}
/*listブロック内のh4タグとpタグ共通設定*/
.list h4, .list p {
	padding: 0 !important;
	margin: 0 !important;
}
/*listブロック内のh4タグ*/
#main .list h4 {
	color: #666;	/*文字色*/
	padding: 10px !important;	/*余白*/
}
#main .list a{
	color:#666;
}
#main .list a:hover p{
	color:#fff;
}
/*マウスオン時のh4タグ*/
#main .list a:hover h4 {
	color: #fff;	/*文字色*/
}
/*listブロック内のpタグ*/
.list p {
	font-size: 11px;	/*文字サイズ*/
	padding: 0 10px 10px !important;	/*上、左右、下への余白*/
}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 25%;		/*ブロックの幅*/
	max-width: 375px;	/*最大幅の制限。これ以上広くならない。*/
	height: 100%;	/*高さ*/
	background: url(/common/images/cokpit_blue_ypp.jpg) no-repeat left center;	/*背景画像の読み込み（古いブラウザ用）*/
	background: url(/common/images/cokpit_blue_ypp.jpg) no-repeat left center / cover;	/*背景画像の読み込み*/
	text-align: center;	/*ブロック内を中央に*/
	position: fixed;	/*画面をスクロールしても固定させる指定*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);	/*ブロックの影。右に、下に、広げる幅、0,0,0は黒の事で0.5は50%色が出た状態。*/
}
/*subブロックのロゴ*/
#sub .logo {
	width: 50%;	/*ロゴ画像の幅*/
	margin: 30px auto;	/*上下、左右へとるスペース*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
#menubar li a {
	display:  block;text-decoration: none;
	color: #fff;	/*文字色*/
	padding: 15px 5px;	/*上下、左右へのメニュー内の余白*/
	position: relative;	/*下の「■」を配置指定する為に必要なスタイル*/
}
/*説明表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-size: 9px;	/*文字サイズ*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover{
	background: #000;	/*背景色*/
}
.top #menubar li:nth-child(1) a,
.program #menubar li:nth-child(2) a,
.ypc #menubar li:nth-child(3) a,
.smc #menubar li:nth-child(4) a,
.contact #menubar li:nth-child(7) a,
.faq #menubar li:nth-child(5) a {
	background: #000;	/*背景色*/
}
/*現在表示中のメニューの右側に出る矢印マーク*/
.top #menubar li:nth-child(1) a::after,
.program #menubar li:nth-child(2) a::after,
.ypc #menubar li:nth-child(3) a::after,
.smc #menubar li:nth-child(4) a::after,
.faq #menubar li:nth-child(5) a::after,
.contact #menubar li:nth-child(7) a::after{
	display: block;
	content: "■";	/*このテキストを表示させています。変更してもOKですが機種依存文字は化けるので使わないで下さい。*/
	color: #000;	/*文字色*/
	font-size: 30px;	/*サイズ*/
	position: absolute;
	right: -10px;	/*上で「position:relative」を指定している「#menubar li a」ブロックに対して右から-10pxの場所に配置*/
	top: 10px;		/*上で「position:relative」を指定している「#menubar li a」ブロックに対して上から10pxの場所に配置*/
	transform: rotate(45deg);	/*45度回転させる*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*member layout*/
.smc section.member{ width:95%;display:flex;flex-wrap:wrap;margin:0 auto;}
.smc section.member .left{width:40%;margin-right:5%;}
.smc section.member .right{width:55%;}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*右寄せ*/
	padding-top: 50px;	/*上に空ける余白*/
	padding-right: 3%;	/*右に空ける余白*/
	font-size: 12px;	/*文字サイズ*/
}
footer a {text-decoration: none;}
footer .pr {display: block;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 30px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}

.ta1 td {
    border: 1px solid #f4f4f4;	/*テーブルの枠線の幅、線種、色*/
    background: #fff;	/*背景色*/
		padding-top:0.5em;
    padding-right:1em;
    padding-left:1em;
    padding-bottom:0.5em;	/*ボックス内の余白*/
    word-break: break-all;
    text-align: left;
		font-size:0.9em;
}
.ta1 th {
    border: 1px solid #f4f4f4;	/*テーブルの枠線の幅、線種、色*/
    background: #c9c3c3;	/*背景色*/
    padding-top:0.5em;
    padding-right:1em;
    padding-left:1em;
    padding-bottom:0.5em;	/*ボックス内の余白*/
    word-break: break-all;
    text-align: left;
}
.ta1 th.bl{
	background:#0083ce;
	color:#fff;
}

/*テーブル１行目に入った見出し部分*/
.ta1 tr {
    border: 1px solid #a9a7a7;	/*テーブルの枠線の幅、線種、色*/
    background: #fff;	/*背景色*/
		padding-top:0.5em;
    padding-right:1em;
    padding-left:1em;	/*ボックス内の余白*/
		padding-bottom:0.5em;	
    word-break: break-all;
    text-align: left;
}
/*ta1の左側ボックス*/
.ta1 th {
    width: 140px;	/*幅*/
    text-align: left;	/*センタリング*/
    font-weight: normal;
}


.program .ta1 th:nth-child(1) {
	width: 140px;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}
.program .ta1 th:nth-child(2) {
	width: auto;	/*幅*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*ta2設定*/
.ta2 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta2 th {
	border: 1px solid #f4f4f4;	/*テーブルの枠線の幅、線種、色*/
	background: #c9c3c3;
	text-align:left;
	font-weight:normal;
	padding-top:0.5em;
	padding-right:1em;
	padding-left:1em;
	padding-bottom:0.5em;
}
.ta2 td {
	width: 50%;
    border: 1px solid #f4f4f4;	/*テーブルの枠線の幅、線種、色*/
    background: #fff;	/*背景色*/
		padding-top:0.5em;
    padding-right:1em;
    padding-left:1em;	/*ボックス内の余白*/
		padding-bottom:0.5em;		/*ボックス内の余白*/
    word-break: break-all;
    text-align: left;
}
.ta2 td span,
.ta2 th span,
.alert{
	color:rgb(235, 16, 16);
}
.alert{line-height:1.6;font-weight:bold;}

/*ta3の左側ボックス*/
.ta3 th {
	width: 200px;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
	font-size:0.9em;
}

.program .ta3 th:nth-child(1){
	width:280px;

}
.program .ta3 th:nth-child(2){
width:200px;
}
/*ta4の左側ボックス*/
.ta4 th {
	width: 50%;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
	font-size:0.9em;
}

.program .ta4 th:nth-child(1){
	width:50%;

}
.program .ta4 th:nth-child(2){
width:50%;
}



h5{font-weight:bold;font-size:1.2em;color:#0083ce;}
/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}

/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;	/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	z-index: 100;
	position: fixed;
	bottom: 20px;	/*ウィンドウの下から20pxの場所に配置*/
	right: 1%;		/*ウィンドウの右から1%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #c3b5a2;background: rgba(0,0,0,0.1);padding: 5px 10px;border-radius: 4px;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #2b95ea !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 50px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.minfont{font-size:0.8em;}
.sh {display: none;}
#sh-sub {display: none;}

/*独自css*/

/*top*/
span.dot{color:#0083ce;font-size: 0.9em;margin-right:0.5em;display: inline-block;line-height: 2;}
.table-wrap{overflow:hidden;overflow: auto;	white-space: nowrap;}
.table-wrap table{width:100%;}
.table-wrap::-webkit-scrollbar{
	height: 5px;
}
.table-wrap::-webkit-scrollbar-track{
	background: #F1F1F1;
}
.table-wrap::-webkit-scrollbar-thumb {
	background: #BCBCBC;
}
.link{
	display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;max-width:780px;
}
.link li{width:49%;box-sizing: border-box;}
.link li:first-child{margin-right:2%;}
.btn{width:90%;max-width:380px;padding:0.8em 1em;display:block;background:#0083ce;color:#fff;line-height:1.4;text-align:center;text-decoration:none;display:flex;justify-content:center;flex-direction: column;border-radius: 0.3em;border:1px solid #0083ce;height:30px;}
.btn.commingsoon{background:#ccc;user-select: none;pointer-events: none;border:1px solid #ccc;}
.btn:hover{background:#fff;color:#0083ce;}
.btn.commingsoon{background:#ccc;user-select: none;pointer-events: none;}
.data{display:flex;flex-wrap:wrap;width: 80%;/* max-width: 800px; */margin:0 auto;justify-content: center;}
.data dt{width: calc(25% - 1px - 2em);border-left:1px solid #f4f4f4;border-bottom:1px solid #f4f4f4;color:#fff;background:#0083ce;padding: 0.5em 1em;}
.data dd{width: calc(25% - 1px - 2em - 0.25em);padding: 0.5em 1em;background:#fff;border-bottom:1px solid #fff;}
.data dd.odd{margin-right:0.5em;}
.logo a{width:100%;height:100%;display:block;border:2px solid #fff;}
.logo a img{width:100%;}

/*Prgoram*/
.list-wrap{display:flex;flex-wrap:wrap;justify-content:flex-start;}
.list{float:none;margin-left:0;margin-right:2%;width:32%;}
.list:nth-child(3n){margin-right:0;}
.list h4{font-size:1.2em;}
.list a{display:flex;flex-direction: column;flex-wrap: wrap;}
.list a .left{width:100%;}
.list a .right{width:100%;}
blockquote{margin:0;}
blockquote p{font-size:1em;font-weight:bold;}
#main p.note{font-size:0.8em;padding:0;color:#444;}

/*smc*/
#main .member>div{padding:0;display:flex;flex-wrap:wrap;width:100%;}
.name{text-align:right;}

/*contact*/

.contact textarea,.contact input{border:none;outline:none;padding:1em;border-radius: 0.3em;}
.contact textarea{width:calc(100% - 2em);font-size:1em;}
.contact input{font-size:1em;height:auto;}
.contact .ta1 th{width:160px;}
.contact .ta1 td{padding:1em;background:#eee;}
.contact .link{width:100%;max-width:500px;margin: 0 auto;}
.contact .link input{padding:0.8em 1em 0.7em;}
.contact .btn{flex-direction:row;width:48%;margin-right:4%;height:auto;transition:0.4s;}
.contact .btn:nth-child(2){text-align:center;width:48%;margin-right:0;}
.contact .reset{background:#bbb;}
.contact .reset:hover{background:#fff;color:#0083ce;}
.contact .ws{width:calc(100% - 2em);max-width:400px;}
.contact .finish{justify-content: center;max-width:none;}
.contact .finish .btn{justify-content: center;margin:0;font-weight:normal;max-width:280px;border:none;}

/*graduates*/
.graduates ul{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;}
.graduates li{width:32%;margin-right:2%;box-sizing: border-box;}
.graduates li a{width:100%;height:100%;display:block;background:#fff;transition:0.4s;padding-bottom:1em;box-sizing: border-box;}
.graduates li a img{transition:0.4s;width:100%;background:#fff;}
#main .graduates li p{padding:1em 0 0;text-align:center;}
.graduates li:last-child{margin-right:0;}

.profile{width:100%;display:flex;flex-wrap:wrap;}
.profile .left{width:48%;}
.profile .right{width: calc(52% - 3em);box-sizing: border-box;padding:2em;background:#fff;display: flex;flex-direction: column;justify-content: center;}
#main .profile .right h3 {
	clear: both;
	margin-bottom: 20px;
	text-align: left;	
	font-size:1.2em;
	border-radius:none;
	border:none;
	color: #0083ce;
	line-height: 1.5;
	background:transparent;
	padding:0;
}
#main .profile .right h3 span{
	display:inline;
	text-indent:1em;
	padding-left:1em;
	font-size:0.8em;
}



dl.faq,dl.faq dt,dl.faq dd{width:100%;padding:0;float: none;}
dl.faq dt{font-size:1.1em;color:#0083ce;font-weight:bold;line-height: 1.8;}

.graduatesphoto ul{ display:flex;flex-wrap:wrap;}
.graduatesphoto ul li{width:49%;margin-right:2%;box-sizing: border-box;}
.graduatesphoto li:last-child{margin-right:0;}
.graduatesphoto figure{width:100%;margin:0 auto;}
.graduates.bottomlink ul{width:80%;margin:0 auto;}
.graduates.bottomlink li{width:49%;margin-right:2%;box-sizing: border-box;}
.graduates.bottomlink li:last-child{margin-right:0;}

@media (hover: hover) {
	.graduates li a:hover {
    background: #0083ce;
		color:#fff;
  }
}

/*画面幅が801px以上、かつ、高さが650px以下の場合の設定。
左メニューが650px以下になると切れて見えなくなるので、固定からスクロール表示に切り替えます。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:801px) and (max-height:650px){

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	position: absolute;	/*固定からスクロール表示に変更*/
	height: auto;
}

}
@media screen and (max-width:1400px){
	.profile .right{padding:1em 2em;}
}

@media screen and (max-width:1200px){
.link{
	display:flex;flex-wrap:wrap;justify-content:center;width:100%;max-width:780px;
}
.link li{width:100%;box-sizing: border-box;}
.link li:first-child{margin-right:0;margin-bottom:1em;}
.link li .btn{margin:0 auto;}
.top section img{width:100%;}
/*その他*/
.data{width: 100%;}
.data dt{width: calc(50% - 1px - 2em);border-left:1px solid #f4f4f4;border-bottom:1px solid #f4f4f4;color:#fff;background:#0083ce;padding: 0.5em 1em;}
.data dd{width: calc(50% - 1px - 2em);padding: 0.5em 1em;background:#fff;border-bottom:1px solid #f4f4f4;}
.data dd.odd{margin-right:0;}

/*Prgoram*/
.list{float:none;margin-left:0;margin-right:4%;width:48%;}
.list:nth-child(3n){margin-right:4%;}
.list:nth-child(even){margin-right:0;}
.list h4{font-size:1.2em;}
.list a{display:flex;flex-direction: column;flex-wrap: wrap;}
.list a .left{width:100%;}
.list a .right{width:100%;}

/*graduates*/
.graduates li{width:49%;margin-right:2%;box-sizing: border-box;margin-bottom:1em;}
.graduates li:last-child,.graduates li:nth-child(2){margin-right:0;}
#main section>div.profile{box-sizing: border-box;}
.profile .left,.profile .right{width:100%;}
.profile .right{padding:2em;}

}
/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){
	.pc{display:none;}
	.sp{display:block;}
	/*member layout*/
.smc section.member{ width:90%;display:flex;flex-wrap:wrap;margin:0 auto;}
.smc section.member .left{width:100%;margin-right:0;}
.smc section.member .right{width:100%;}
.logo a{border:none;}
/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 50;
	top: 70px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 8px 15px;	/*メニュー内の余白。上下、左右。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 20px;
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: #999;	/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 15px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 40px;	/*幅*/
	height: 40px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(/common/images/icon_menu.png) no-repeat center top/40px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(/common/images/icon_menu.png) no-repeat center bottom/40px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	float: none;
	margin: 100px 3% 0;
	width: auto;
}
#main section>div{
	padding:0;
}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	display: none;
}

/*小さな端末用(800px以下)で表示させるブロック
---------------------------------------------------------------------------*/
#sh-sub {
	display: block;	/*非表示から表示に切り替える*/
	position: fixed;
	top: 0px;	/*上から0pxの場所に配置*/
	height: 70px;	/*ブロックの高さ*/
	width: 100%;	/*ブロックの幅*/
	background: #0083ce;	/*背景色*/
}
/*ロゴ画像*/
#sh-sub .logo img {
	width: 380px;
	margin: 22px 1em;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

.program .ta1 th:nth-child(1) {
	width: 100px;	/*幅*/
}
#main section+section.member{
	margin-top:0;
	width:100%;
}
/* FAQ*/
.ta2,
.ta2 td,
.ta2 th,
.ta2 tr,
.ta2 tbody{width:100%;display:block;box-sizing: border-box;}
.ta2 td{margin-bottom:0.8em;}

/*Prgoram*/
#main .list h4{font-size:1.2em;}
.list{height:360px;}
.list a{height:360px;}
/*ta3の左側ボックス*/
.ta3 th {
	width: 200px;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}

.program .ta3 th:nth-child(1){
	width:280px;

}
.program .ta3 th:nth-child(2){
width:auto;
}
/*ta4の左側ボックス*/
.ta4 th {
	width: 50%;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}

.program .ta4 th:nth-child(1){
	width:50%;

}
.program .ta4 th:nth-child(2){
width:50%;
}


.graduatesphoto ul li{width:100%;margin-right:0;box-sizing: border-box;margin-bottom:1em;}
.graduatesphoto li:last-child{margin-right:0;margin-bottom:0;}
.graduates.bottomlink ul{width:100%;}

}




/*画面を横向きにした場合の高さが500px以下の場合の設定。メニューを２列にします。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
	line-height: 1.2;	/*行間*/
}



}

@media screen and (max-width:600px){
	.list{height:300px;}
	.list a{height:300px;}
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}
.top img{width:100%;}
#main section>div{padding:0 0.5em;}

/*小さな端末用(800px以下)で表示させるブロック
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#sh-sub .logo img {
	width:85%;
	max-width: 300px;
	margin-top: 25px;
	margin-left:1em;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*段落タグ設定*/
#main p {
	padding: 0px 0 15px;	/*上、左右、下への余白*/
}
/*mainブロック内のsectin間のスペース*/
#main section + section {
	margin-top: 1em;
}

/*listブロック（works.html内で使用）
---------------------------------------------------------------------------*/
/*ブロック単位の設定*/
.list {
	float: none;
	width: auto;
	height: auto;
}
.list a {
	height: auto;
}
/*画像の設定*/
.list figure {
	float: left;	/*左に回り込み*/
	width: 35%;		/*幅*/
	margin-right: 10px;	/*画像の右側に空けるスペース*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 10px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 10px;	/*ボックス内の余白*/
}
.ta1{
	margin-bottom:1em;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
.link{margin-bottom:2em!important;}
.btn{width:calc(90% - 2em);}
.mb50{
	margin-bottom:2em !important;
}
.mb30{
	margin-bottom:1.2em!important;
}
/*faq*/
#main h3{margin-bottom:1em!important;}

/*Prgoram*/
.list{margin-left:0;margin-right:0;width:100%;}
.list:nth-child(3n){margin-right:0;}
.list:nth-child(even){margin-right:0;}
.list h4{font-size:1.2em;}
.list a{display:flex;flex-direction: row;flex-wrap: wrap;}
.list a .left{width:30%;}
.list figure{width:auto;height:100%;}
.list a .left img{height:auto;height:100%;}
.list a .right{width:70%;}
.list a .right p{width:80%;}
.program .ta1 th:nth-child(1) {	width: 70px;	/*幅*/}
/*ta5の左側ボックス*/
.ta5 th {
width: 320px;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}

.program .ta5 th:nth-child(1){
width: 320px;	

}
.program .ta5 th:nth-child(2){
width: 320px;	
}

/*contact*/
.contact .ta1,
.contact .ta1 th,
.contact .ta1 td,
.contact .ta1 tr,
.contact .ta1 tbody{display:block;}
.contact .ta1 th{width:calc(100% - 20px);border-bottom:1px solid #c9c3c3;}
.contact .ta1{padding:10px 0;}
.contact .ta1 td{border:none;}
.contact .ta1 tr{background:#f4f4f4;border:none;padding:0.5em 0;}
/*graduates*/
.graduates li{width:100%;margin:0 auto 2em;}
.graduates li:last-child,.graduates li:nth-child(2){margin-right:0;}
.graduates li p{font-size:1.2em;}

.graduates.bottomlink ul{width:100%;margin:0 auto;}
.graduates.bottomlink li{width:100%;margin-right:0;box-sizing: border-box;margin-bottom:1em;}
.graduates.bottomlink li:last-child{margin-right:0;margin-bottom:0;}

}
