@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 およびそれ以下. */
.frame{
    border-radius: 10px;
    box-sizing: border-box;
    background: #FFFBC7;
    padding: 10px 10px;
}
.frame h2{
    text-align: left;
}
.frame .recruitInfo{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
	line-height: 140%;
    border-collapse: separate;
    border-spacing: 4px;
}

.frame .recruitInfo th{
    background: #BBD4EF;
    white-space: nowrap;
    text-align: left;
    padding: 0.5em 0.25em;
    vertical-align: top;
}
.frame .recruitInfo td{
    padding: 0.5em 0.25em 0.5em 1em;
}
.frame .recruitInfo .border{
    border-bottom: solid 1px #0C0B0B;
    padding: 0 0;
}
.frame .recruitInfo ul{
    margin: 0 0;
    padding: 0 0 0 1em;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

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

@media only print {
.frame{
    border-radius: 20px;
    padding: 30px 80px;
}
}