@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
h2{
    text-align: left;
}
.recruitContent{
    width: 95%;
    margin: 50px auto;
}
.tabLabel{
    display: inline-block;
    vertical-align: bottom ;
    border-top: solid 1px #999999;
    border-left: solid 1px #999999;
    border-right: solid 1px #999999;
    border-bottom: solid 1px #00a99d;
    box-sizing: border-box;
    margin: 0 0 0 0 ;
    position: relative;
    bottom: -1px;
    width: 50%;
    text-align: center;
    border-top-left-radius: 5px ;
    border-top-right-radius: 5px ;
}
.tabLabelBox .active{
    border-top: solid 1px #00a99d;
    border-left: solid 1px #00a99d;
    border-right: solid 1px #00a99d;
    border-bottom: solid 1px #fff;
}
.tabContents {
    border: solid 1px #00a99d;
    box-sizing: border-box;
    padding: 10px 1%;
}
.tabContent {
    display: none ;
}
.tabContents .active{
    display: block;
}
.itemList table{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 175%;
    border-collapse:separate ;
    border-spacing: 4px;
    width: 100%;
}
.itemList th{
    text-align: left;
    vertical-align: top;
    text-align-last: justify;
    background: #808080;
    padding: 0 0.5em;
    color: #fff;
    width: 6em;
}
.itemList td{
    padding: 0 0.5em;
    background: #f2f2f2;
}
.itemList .linkButton{
    width: 49%;
    padding: 0.25em 0;
    font-size: 15px;
}
.itemList .item{
    margin: 0 0 40px 0;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.recruitContent{
    width: 90%;
    margin: 0 auto;
}
.itemList .linkButton{
    width: 12em;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.recruitContent{
    width: 100%;
}
.tabLabel{
    margin: 0 5px 0 0 ;
    width: 15em;
}
}