@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 およびそれ以下. */
body{
    background-color: #8EDAE7 ;
}
.slideBlock{
    background-image: url("images/recruit00-2.png") ;
    background-repeat: no-repeat;
    background-size: cover;
    height:calc(100vw * 0.6) ;
    background-position: center;
    position: relative;
}
.slideBlock .logo{
    position: absolute;
    top: 35%;
}
.contentFrame{
    background-color: #fff;
    border-radius: 15px ;
    padding: 15px ;
    margin-bottom: 25px;
        
}
.tabList{
    width: 100%;
}
.tabList > div{
    display: inline-block;
    width: calc(50% - 30px);
    vertical-align: top;
    
}
.tab{
    background-color: #E5E5E5;
    padding: 15px;
}
.tab a{
    display: inline-block;
    font-size: 21px;
    text-decoration: none;
    color: #000;
    width: 100%;
}
.tab a:hover{
    font-weight: 700;
}
.activeTab{
    background-color: #fff;
}
#tab1{
    border-top-left-radius: 15px;
}
#tab2{
    border-top-right-radius: 15px;
    text-align: right;
}
#tab2 p{
    text-align: right;
}
.tabContent{
    display: none;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 15px ;
    margin-bottom: 25px;
}
.activeContent{
    display: block;
}
.tabContent table{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    letter-spacing: 0.1em;
	line-height: 180%;
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
}
.tabContent th{
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	background-color: #8EDAE7;
	padding: 0.5em;
	width: 10em;
}
.tabContent td{
	padding: 0.5em 1em 0.5em 3em;
}
.sepRow td{
	padding: 1px 0 !important;
}
.sepRow hr{
	margin: 0;
	border-color: #000;
}
.recruitInfoList .item{
	margin-bottom: 20px;
}
.recruitInfoList .item > div{
	display: inline-block;
	vertical-align: top;
}
.recruitInfoList .item .photoBox{
	width: 20%;
}
.recruitInfoList .item .textBox{
	width: 80%;
}
.mailFormTable{
	width:100%;
}
.mailFormTable th{
	font-weight: normal;
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 2em;
	color:#333;
	text-align:left;
	vertical-align:top;
}
.mailFormTable td{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 2em;
	color:#333;
	text-align:left;
	font-weight:normal;
	vertical-align:top;
}
.errMsg {
	display:none;
	color:#F00;
}
.entryItem {
	display:block;
}
.confItem {
	display:none;
}
.narrowRow{
	display: table-row;
}
.wideRow{
	display:none;
}
.needItem{
	color:#F00;
}
.mailFormTable .fa-exclamation-triangle{
	color: #f1c40f;
}
.checkboxList label{
	display: inline-block;
	width: 11em;
}
.radioList label{
	display:  inline-block;
	width: 13em;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.slideBlock .logo{
    top: 15%;
    left: 5%;
}
.slideBlock{
    height:470px;
}
.narrowRow{
	display: none;
}
.wideRow{
	display: table-cell;
}
}