@charset "utf-8";

/*共通設定----------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*全体の設定----------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 16px;
	line-height: 2;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク----------*/
a {
	color: #29C5A0;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/*inner_area----------*/
.inner_area {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ヘッダー----------*/
/*ヘッダーブロック*/
header {
	background: #FFF;
	height: 100px;
	color: #333;
}
header a {
	color: #fff;
}

/*ロゴ画像*/
header #logo {
	width: 45%;
	float: left;
	margin-top: 10px;
	margin-left: 3%;
	margin-bottom: 10px;
}

/*ヘッダー右側 SNSリンク----------*/
#h_sns {
	display: none;
}

/*#h_sns {
	width:20%;
	float: right;
	margin-top: 12px;
	margin-right: 3%;
  }	*/

#h_sns img {
	float: right;
	margin-right: 3%;
}

/*スライダー
---------------------------------------------------------------------------*/
.slide {
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
	height: auto;
}
.slide img{
  	width: 100%;
    }


/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 45px;
	text-align: center;
	background: #29C5A0;
	margin-bottom: 10px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;
	width: 16.66%;
}
#menubar li a {
	position: relative;
	text-decoration: none;
	display: block;
	font-weight: 700;
	line-height: 1.8;
	color: #fff;
	height: 40px;
	padding-top: 7px;
	border-right: 1px solid #fff;
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #fff;
}

/*マウスオン時、表示中のメニューの共通設定*/
#menubar li a:hover {
}

#menubar li a::after {
  position: absolute;
  left: 10%;
  content: '';
  width: 80%;
	height: 30px;
  border-bottom: 2px solid #F9E620;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#menubar li a:hover::after {
  transform: scale(1, 1);
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;
  visibility: hidden;
  z-index: 10;
  padding-top: 1px;
	width: 16.66%;		/*幅。上の「#menubar li」と合わせる。*/
	font-size: 13px;
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border: none;	/*線を一旦リセット*/
	background: #29C5A0;	/*背景色（古いブラウザ用）*/
	color: #fff;
	padding: 10px 0;
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
}
#menubar ul.ddmenu li a::after {
  position: absolute;
  left: 10%;
  content: '';
  width: 80%;
	height: 25px;
  border-bottom: 2px solid #F9E620;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#menubar ul.ddmenu li a:hover::after {
  transform: scale(1, 1);
}
/*メニュー上固定設定
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 75px;
}
/*上の「is-fixed-menu」を「is-fixed」に変更したもの。fixmenu2個に必要な設定*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 75px;
}

/*contents
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	padding-top: 40px;
	padding-bottom: 40px;
}

/*contents-in（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	float: left;
	width: 77%;
}
/*２カラム時*/
.c2 #contents-in {
	float: none;
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;
	width: 75%;
}

#main_c1 {
	float: left;
	width: 100%;
}

/*mainコンテンツのh2タグ設定*/
#main h2,#main_c1 h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;
	font-size: 24px;
	color: #fff;
	background: #29C5A0;
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter,#main_c1 h2::first-letter {
	border-left: 3px solid #F9E620;
	padding-left: 15px;
}
/*mainコンテンツのh3タグ設定*/
#main h3,#main_c1 h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 20px;
	font-size: 20px;
	border: 1px solid #ccc;
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter,#main_c1 h3::first-letter {
	border-left: 3px solid #29C5A0;
	padding-left: 15px;
}
/*mainコンテンツの段落タグ設定*/
#main p,#main_c1 p {
	padding: 0px 20px 20px;
}

/*他、微調整 */
#main p + p ,#main_c1 p + p{
	margin-top: -5px;
}
#main p + ul ,#main_c1 p + ul{
	margin-top: -10px;
}
#main h2 + p,
#main h3 + p,
#main_c1 h2 + p,
#main_c1 h3 + p {
	margin-top: -10px;
}
#main_c1 section + section ,
#main_c1 section + section{
	margin-top: 30px;
}

/*ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;overflow: hidden;
	padding: 25px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 24px;
	color: #FF9A00;
	line-height: 1.4;
}
.list h4 a {
	color: #29C5A0;
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px 0px 10px !important;
}
/*ボックス内の写真*/
.list p.img {
	float: left;
	width: 30%;
	margin-bottom: 20px;
}
/*写真の右側に回り込むブロック*/
.list .text {
	float: right;
	width: 67%;
}
/*listブロック内のta1設定*/
.list .ta1, .list .ta1 td, .list .ta1 th {
	padding: 5px;
	font-size: 14px;
}
/*ta1の左側ボックスの文字を太字でなく標準にする*/
.ta1 th {font-weight: normal;}
/*日付(CMS用)*/
.date {
	font-size: 11px;
	color: #999;
	text-align: right;
}
.date span {
	display: inline-block;
}


/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;
	width: 22.5%;
}

/*sideコンテンツ（右側のブロック）
---------------------------------------------------------------------------*/
#side {
	float: right;
	width: 20%;
}
/*２カラム時*/
.c2 #side {
	display: none;
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2 {
	text-align: left;
	border-bottom: 1px dotted #ccc;
	padding: 8px 8px;
	font-weight:700;
}
/*段落タグ（p）設定*/
#sub p,
#side p {
	line-height: 1.6;
}

/*box1設定（sub,sideで使っています）
---------------------------------------------------------------------------*/
/*box1設定*/
#sub .box1,
#side .box1 {
	margin-bottom: 20px;
}
/*box1の中にsubmenuがある場合の下のmarginをなくす*/
.box1 .submenu {
	margin-bottom: 0 !important;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub .submenu,
#side .submenu {
	margin-bottom: 20px;
	border-top: 1px solid #ccc;
}
/*メニュー１個ごとの設定*/
#sub .submenu li a,
#side .submenu li a {
	text-decoration: none;display: block;
	padding: 0 10px;/
	border-bottom: 1px dotted #ccc;
	border-top: none;
}
/*h2タグにsubmenuが続いた場合にsubmenuの上の線を消す*/
#sub h2 + .submenu, #side h2 + .submenu {
	border-top: none;
}

/*sub,sideコンテンツ内のlist-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
	position: relative;overflow: hidden;
	border-left: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	line-height: 1.5;
	font-size: 12px;
}
.list-sub a {
	display: block;text-decoration: none;overflow: hidden;
	padding: 5px;
}
/*マウスオン時のボックス*/
.list-sub a:hover {
	background: #fff;
}
/*h4タグ*/
.list-sub a h4 {
	font-weight: 700;
}
/*段落(p)タグ*/
.list-sub p {
	padding: 0 !important;
}
/*画像*/
.list-sub figure {
	width: 30%;
	float: left;
	margin-right: 5px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	width: 100%;
	background: #F9E620;
	background-image: url("../img/footer_back.png");
	font-size: 85%;
	color: #333;
}
footer a, footer a:hover {
	color: #333;
}
footer .pr {display: block;font-size: 80%;}

/*ライン
----------------------------------------------*/
#line {
	font-size: 14px;
	height: 15px;
	color: #FFF;
	background-color: #29C5A0 !important;
	padding: 3px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px;
}
/*１行分の設定*/
#footermenu ul {
	float: left;
	width: 23%;
	padding-right: 1%;
	padding-left: 1%;
}
/*見出し*/
#footermenu li.title {
	font-weight: 700;
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.8;
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	width: 100%;
	max-width: 1300px;	/*サイトの最大幅*/
	margin: 0 auto;
	height: 100px;
}

/*ロゴ画像*/
#copyright #logo {
	width: 30%;
	float: left;
	margin-top: 10px;
	margin-left: 3%;
	margin-bottom: 10px;
}
#copyright small {
	width:50%;
	float: right;
	margin-top: 30px;
}
#copyright a {text-decoration: none;}


/*トップページ内「新着情報」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
/*新着情報のh2タグ設定*/
#new h2 {
	clear: both;
	margin-bottom: 10px;
	padding: 10px 10px;
	font-size: 18px;
	color: #333;
	background: #fff;
	border-bottom: 2px solid #29C5A0;
}


#new #webnews dl {
	padding: 0px 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new #webnews dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new #webnews dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;
}

/*トップページ内「ブログ新着情報」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
/*新着情報のh2タグ設定*/
#new h2 {
	clear: both;
	margin-bottom: 10px;
	padding: 10px 10px;
	font-size: 18px;
	color: #333;
	background: #fff;
	border-bottom: 2px solid #29C5A0;
}


#new #feed dl {
	padding: 0px 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new #feed dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new #feed dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;
}

/*トップページ内「研究会について」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#top_about {
	float: left;
	width: 100%;
	background: #fff;
	background-image: url("../img/top_about_back.jpg");
	background-size:cover;
}

#top_about p {
	margin: 0 auto;
	padding: 20px;
	width: 60%;
  text-shadow:  2px  2px 10px #FFF,
               -2px  2px 10px #FFF,
                2px -2px 10px #FFF,
               -2px -2px 10px #FFF;
}

#top_about h3 {
	margin: 0 auto;
	padding: 30px 20Px 0 20px;
	width: 60%;
  font-size: 24px;
  font-weight: 700;
  color: #FF6E00;
  text-align: center;
  text-shadow:  2px  2px 10px #FFF,
               -2px  2px 10px #FFF,
                2px -2px 10px #FFF,
               -2px -2px 10px #FFF;
}

.center_link {
	font-size: 20px;
	color: #333;
	padding: 10px;
	border: 1px solid #333;
}

/*スタッフ紹介
---------------------------------------------------------------------------*/
/*
#main figure.prof {
  width: 20%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 0px;
  margin: 0px;
  float: left;
}
*/

.bigger
{
	font-size: larger;
}

#main  p.prof {
/*  width: 70%;*/
  font-size: 85%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 20px;
  margin: 0px;
/*  float: right;*/
}

#main  p.prof strong {
  font-size: 116%;
}

#main  p.prof span.comment{
  font-size: 93%;
  font-weight: bold;
  background-color: #EEEEEE;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  display: block;
  margin-top: 10px;
  line-height: 1.2em;
  padding: 3px;
  margin-bottom: 10px;
}

/*FAQページ
---------------------------------------------------------------------------*/
/*FAQのボックス全体を囲むブロック*/
.faq {
	padding: 0 20px 10px;
}
/*質問*/
.faq dt {
	font-weight: 700;
	color: #29C5A0;
}
/*回答*/
.faq dd {
	padding-bottom: 10px;
}

/*アイコン(角丸)
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	display: inline-block;position: relative;bottom: 2px;
	font-size: 14px;
	padding: 0 5px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background: #eee;
}
.icon a {text-decoration: none;}
/*アイコン：オレンジ*/
.icon.color1 {
	border: 1px solid #FF9A00;
	background: #FF9A00;
	color: #fff !important;
}
/*アイコン：青*/
.icon.color2 {
	border: 1px solid #2b2ebc;
	background: #2b2ebc;
	color: #fff;
}

/*アイコンやマーク
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	text-align: center;display: inline-block;
	font-size: 12px;
	padding: 0 30px;
	line-height: 20px;
	position: absolute;
	right: 25px;
	top: 0px;
}
/*sub,sideコンテンツ内で使う場合の追加（変更）設定*/
#sub .option1,#sub .option2,#sub .option3,#sub .new,
#side .option1,#side .option2,#side .option3,#side .new{
	font-size: 10px;
	padding: 0 30px;
	line-height: 16px;
	right: 0px;			/*右から0pxの場所に配置*/
	transform: rotate(45deg) translate(22px,-10px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
}
/*option1*/
.option1 {
	color: #FFF;
	background: #f83d72;
}
/*option2*/
.option2 {
	color: #000;
	background: #ffd200;
}
/*option3*/
.option3 {
	color: #FFF;
	background: #999;
}
/*new*/
.new {
	color: #FFF;
	background: #F00;
}

/*ボタン
---------------------------------------------------------------------------*/
a.btn {
  width: 80%;
  margin: 0 auto;
	display: block;text-decoration: none;
	background: #FF9A00;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FF9A00, #D96D00);	/*グラデーション*/
	color: #fff;
	font-size: 20px;
  font-weight: 700;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #D96D00;
}
/*マウスオン時*/
a:hover.btn {
	box-shadow: none;
	background: #fff;
	color: #FF9A00;
  font-weight: 700;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;
	color: #666;
	font-weight: 700;		/*太字に*/
	padding: 10px;
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;
	color: #666;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*labelタグを２列表示にする（CMS用）*/
.ta1.cms td label {
	display: block;
	float: left;
	width: 50%;
}

/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 15px;
	border-radius: 3px;
	background: #eee;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;
	background: #fff;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 50px;		/*幅*/
	line-height: 50px;
	bottom: 50px;		/*下から50pxの場所に配置*/
	right: 3%;			/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;
	border: 1px solid #fff;
	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;
}

/*UPアイコン
---------------------------------------------------------------------------*/
.upicon {
	background: #0072ff;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 40px;
}

ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0 20px 20px 20px;
}

ol li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #29C5A0;
  color: #FFF;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
}

/*iフレーム
---------------------------------------------------------------------------*/
.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  border:2px solid #ccc;
}
.iframe-wrap iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb10 {margin-bottom: 10px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #29C5A0;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
#sub .big1,#side .big1 {font-size: 12px;letter-spacing: normal;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
strong {
	font-weight: 700;
	font-size: 120%;}

h5 {
	font-weight: 700;
	font-size: 120%;
  margin-top: 20px}

hr {
  padding-top: 10px;
  border-top-width: 1;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-style: dotted;
  border-top-color: #ccc;
  padding: 20px 0;
}


/*画面幅1301px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1301px){

/*inner_area共通
---------------------------------------------------------------------------*/
.inner_area {
	width: 1301px;	/*サイトの幅。この指定がないと上部メニューが一瞬段落ちする場合があるので。*/
}

/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が6個なので、1301÷6=216pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 216px;
}

}



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

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	margin: 0 1%;	/*上下、左右へのコンテンツの外側へ空けるスペース*/
}

}



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

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*TELブロック全体*/
#h_sns {
	display: none;	/*非表示にする*/
}

/*メニュー上固定設定
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu header,body.is-fixed header {margin-bottom: 0px;}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 100px;	/*上から100pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;
	text-decoration: none;
	padding: 15px 10px 15px 20px;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(41,197,160,0.8);
	font-size: 20px;
	color: #fff;
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 24px;	/*上から24pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #29C5A0;
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../img/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../img/icon_menu.png) no-repeat center bottom/50px;
}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 20px 2%;
}

/*main,sub,side,contents-in,copyrightのfloat無しに
---------------------------------------------------------------------------*/
#main, #sub, #side, #contents-in,#copyright {
	float: none;
	width: auto;
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
}

/*ロゴ画像*/
#copyright #logo {
	width: 80%;
	float: none;
}
#copyright small {
	width:100%;
	float: none;
	margin-top: 30px;
	margin-left: 10px;
}


/*トップページ内「研究会について」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#top_about {
	background-size:cover;
  background-position:center center;
}

#top_about p {
	width: 80%;
}

#top_about h3 {
	width: 80%;
  font-size: 20px;
}

.center_link {
	font-size: 18px;
}

/*スタッフ紹介
---------------------------------------------------------------------------*/

#main figure.prof {
  width: 20%;
}

#main  p.prof {
  width: 65%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.sh {display:block;}
.pc {display:none;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	line-height: 1.5;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;
}
/*ロゴ画像*/
header #logo {
	width: 300px;
	margin-top: 22px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	top: 70px;	/*上から70pxの場所に配置*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 9px;	/*上から9pxの場所に配置*/
}

/*スライダー
---------------------------------------------------------------------------*/
.slide {
	clear: both;
}


/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;
}



/*求人一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	padding: 15px;
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 16px;
}

/*sub,side共通設定
---------------------------------------------------------------------------*/
/*h2見出しタグ設定*/
#sub h2,
#side h2 {
	font-size: 14px;
}

/*submenu（sub,sideのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub .submenu,
#side .submenu {
	font-size: 13px;
}

#sub .submenu li a,
#side .submenu li a {
	padding: 6px;
}

/*アイコン
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	font-size: 9px;
}

/*アイコンやマーク
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 9px;
	padding: 0 10px;
	line-height: 14px;
	right: 15px;
}

/*トップページ内「新着情報」ブロック
---------------------------------------------------------------------------*/
/*新着情報のh2タグ設定*/
#new h2 {
	clear: both;
	margin-bottom: 10px;
	padding: 10px 10px;
	font-size: 16px;
	color: #333;
	background: #fff;
	border-bottom: 2px solid #29C5A0;
}
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
}



/*トップページ内「研究会について」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#top_about {
	background-size:cover;
  background-position:center center;
  background-repeat: no-repeat;
}

#top_about p {
	padding: 10px;
	width: 90%;
}

#top_about h3 {
	padding: 20px 10Px 0 10px;
	width: 90%;
  font-size: 18px;
}

.center_link {
	font-size: 16px;
}


/*「詳細を見る・応募する」ボタン
---------------------------------------------------------------------------*/
a.btn {
	font-size: 16px;
	letter-spacing: normal;
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}
/*labelタグを1列にする（CMS用）*/
.ta1.cms td label {
	float: none;
	width: 100%;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}



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

}
