﻿@charset "UTF-8";

@import url('http://fonts.googleapis.com/earlyaccess/notosansjapanese.css');


/*=========================
共通パーツ
==========================*/
html {
  font-size: 62.5%;
}
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    background:#FFF;
    color:#333;
}
a {
    color:#000;
    text-decoration:underline;
    font-weight:bold;
}
a:hover,
a:active {
    text-decoration: none;
}
@media(max-width:640px){
body {
    font-size:1.5em;
    }
}

#headerwrap {
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:30px 30px 0;
}

#wrapper {
    width:100%;
    max-width:980px;
    margin:0 auto;
    padding:5px 30px 30px;
}

/* フォント指定 */
.b {
    font-weight:bold;
}
.S {
    font-size:0.8em;
    line-height:1.6;
}
.L {
    font-size:1.2em;
}
.LL {
    font-size:1.4em;
}
.LLL {
    font-size:1.6em;
}
.red {
    color:#CC0000;
}
.orange {
    color:#FF6600;
}
@media(max-width:640px){
.L {
    font-size:1.1em;
    }
.LL {
    font-size:1.2em;
    }
.LLL {
    font-size:1.3em;
    }
}


/* タイトル */
.title {
    position: relative;
    padding: 20px;
    background-color: #666;
     border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    margin-bottom:30px;
    font-size:1.8em;
    font-weight:bold;
    text-align:center;
    color:#FFF;
    letter-spacing:2px;
}
.title::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: 0 auto;
    border-top: 15px solid #666;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
@media(max-width:640px){
.title {
    padding: 15px;
    font-size:1.4em;
    }
.title::before{
    left: 25px;
    margin:0;
    bottom: -10px;
    border-top: 10px solid #666;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    }
}

/* リンクボタン */
a.btn{
	padding:  3px 0.8em 6px 0.8em !important;
	margin: 0.4em 0.4em 0.4em 0 !important;
	display:inline-block;
	color: #FFF !important;
	background: #999;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 500;
	font-size:1.2em !important;
    border: 0;
     border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	text-align:center;
	text-decoration:none !important;
    cursor:pointer;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #333), color-stop(0.00, #999));
    background: -webkit-linear-gradient(#999, #333);
    background: -moz-linear-gradient(#999, #333);
    background: -o-linear-gradient(#999, #333);
    background: -ms-linear-gradient(#999, #333);
    background: linear-gradient(#999, #333);
    letter-spacing: 1px;

}
a.btn:hover {
	background: #333;
}

/* アイコン付きTELリンク */
.tel  {
    font-size:1.4em;
    line-height:100%;
    padding:10px 0;
    font-weight:bold;
}
.tel :before {
	content:"";
	display:inline-block;
	width:1.1em;
	height:1.1em;
    background:url(../img/tel.png) no-repeat;
	background-size:contain;
    padding-left:1.2em;
    vertical-align:bottom;
}
.tel  a{
    text-decoration:none;
    color:#000;
}
@media(max-width:640px){
.tel :before {
	content:"";
	display:inline-block;
	width:1.2em;
	height:1.2em;
    background:url(../img/touch.png) no-repeat;
	background-size:contain;
    padding-left:1.3em;
    vertical-align:bottom;
    }
}

/* ページ上部へ戻る */
#jumptop{
    position:fixed;
    right: 40px;
    bottom:40px;
    cursor:pointer;
}
#jumptop img{
    max-width:60px;
}
@media(max-width:640px){
#jumptop{
    right: 20px;
    bottom:20px;
    }
#jumptop img{
    max-width:44px;
    }
}

/*=========================
ヘッダー枠 ～ 導入コメント
==========================*/
header {
    width:100%;
    padding-bottom:20px;
    text-align:center;
}
header img {
    width:100%;
    max-width:240px;
    margin-bottom:10px;
}
@media(max-width:640px){
header img {
    max-width:200px;
    }
}

h2 {
    font-size:1.8em;
    font-weight:bold;
    padding:30px 0 20px;
}
h3 {
    font-size:1.2em;
    padding:0 0 40px;
}
@media(max-width:640px){
h2 {
    font-size:1.4em;
    }
}


/*=========================
基本情報
==========================*/
#information {
    width:100%;
    padding:0 0 40px;
}

.mapwrap {
    width:100%;
    max-width:640px;
    padding:30px 0 0;
}

/*=========================
募集要項
==========================*/
#requirements {
    width:100%;
    padding:0 0 40px;
}

/* 2列テーブル */
table {
    width: 100%;
    border-collapse: collapse;
}
table th{
    width: 30%;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    background-color: #F5F5F5;
    border: 2px solid #666;
    white-space: nowrap;
    font-weight:bold;
    color:#666;
}
table td{
    width:70%;
    padding: 10px 15px;
    background-color: #FFF;
    text-align:left;
    vertical-align: middle;
    border: 2px solid #666;
}
@media screen and (max-width: 640px) {
table th,
table td {
    display:block;
    width:100%;
    border-top: none;
    padding:0;
    border: 0;
    }
table th{
    white-space: normal;
    text-align:left;
    border-bottom:2px solid #666;
    padding: 5px 10px 0 10px;
    font-size:1.1em;
    }
table td{
    padding: 7px 10px 12px 10px;
    }
}

/*=========================
応募・お問い合わせフォーム
==========================*/
#form {
    width:100%;
    padding:0 0 20px;
}

form {
    width:100%;
    max-width:640px;
    margin:0 auto;
}

/* 項目名 */
.formitem {
    margin:1.5em 0 0.3em;
    font-weight:bold;
    font-size:1.1em;
}

/* 入力・選択欄 */
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='number'],
select {
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    width:100%;
    outline: none;
    border: 1px solid #666;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background:#FFF;
    padding:0.5em;
    font-size:1em;
    font-family: sans-serif;
}
select::-ms-expand {
    display: none;
}
textarea{
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    width:100%;
    outline: none;
    border: 1px solid #666;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background:#FFF;
    padding:0.5em;
    font-size:1em;
    height:140px;
    font-family: sans-serif;
}
input:focus,
select:focus,
textarea:focus {
    background:#F5F5F5;
}

/* ラジオボタン・チェックボックス */
input[type="radio"] , 
input[type="checkbox"]{
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    margin:0 10px 15px 3px;
}
label {
    margin-right:1em;
    white-space: nowrap;
    cursor:pointer;
}

/* ボタン */
input[type='submit'],
input[type='reset'],
input[type='button'],
button {
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
	padding:  3px 0.8em 6px 0.8em !important;
	margin: 0.4em 0.4em 0.4em 0 !important;
	display:inline-block;
	color: #FFF !important;
	background: #999;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 500;
	font-size:1.3em !important;
    border: 0;
     border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	text-align:center;
	text-decoration:none !important;
    cursor:pointer;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #333), color-stop(0.00, #999));
    background: -webkit-linear-gradient(#999, #333);
    background: -moz-linear-gradient(#999, #333);
    background: -o-linear-gradient(#999, #333);
    background: -ms-linear-gradient(#999, #333);
    background: linear-gradient(#999, #333);
    letter-spacing: 1px;
}

/* 必須項目アイコン */
.hissu {
    font-size:0.75em;
    line-height:100%;
    color:#FFF;
    background-color:#CC3300;
    padding:2px 5px 1px;
    margin-left:7px;
    font-weight:normal;
    vertical-align:middle;
}


/*=========================
フッター枠
==========================*/
footer {
    width:100%;
    background:#E5E5E5;
    text-align:center;
    padding: 30px 30px 20px;
    font-size:0.9em;
}