
@import url(fontello.css);

/*CSSカスタムプロパティ*/
:root {
    --maincolor: #0052A4;
    --subcolor: #0594E5;
    --palecolor: #e7f0f8;
}



/*PC、スマホ共通設定*/
* {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}

a{
 -webkit-transition:0.3s;
 -moz-transition:0.3s;
 transition:0.3s;
}



.fit01 {
    max-width: 1000px;
    height: 400px;
}

.fit01 img {
    object-fit: cover;
    width: 100%;
    height: 400px;
}

.fit02 {
    width: 1000px;
    height: 600px;
}

.fit02 img {
    object-fit: cover;
    width: 100%;
    height: 600px;
}

.midashi{
    color:#333;
    font-size: 24px;
    font-weight: bold;
}

.midashi span{
    display: block;
    color:var(--maincolor);
    font-size: 20px;
    position: relative;
    padding-top: 8px;
}

.midashi span:before{
    content:"";
    width: 60px;
    height: 3px;
    background:var(--subcolor);
    position: absolute;
    top:0;
    right: 0;
    margin-top:5px;
}

.midashi_center{
    text-align: center;
}
.midashi_center span:before{
    content:"";
    width: 60px;
    height: 3px;
    background:#0594E5;
    position: absolute;
    top:0;
    right: 0;
    left: 0;
    margin:auto;
    margin-top:5px;
}

.midashi_left{
    text-align: left;
}
.midashi_left span:before{
    content:"";
    width: 60px;
    height: 3px;
    background:#0594E5;
    position: absolute;
    right: initial;
    top:0;
    left: 0;
    margin:auto;
    margin-top:5px;
}


.btn01{
    font-size: 16px;
    color:#333;
    padding:8px 15px 8px 0;
    border-bottom: 1px solid #333;
    display: block;
    width: 151px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.btn01:after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0 0 15px;
    border-right: 1px solid var(--maincolor);
    border-bottom: 1px solid var(--maincolor);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: .4s;
}

.btn01:hover{
    opacity: 0.7;
}
.btn01:hover:after {
    border-right: 1px solid var(--maincolor);
    border-bottom: 1px solid var(--maincolor);
    transition: .4s;
   transform: translate(5px, 0px) rotate(-45deg);
}

.m-left-auto{
    margin-left: auto;
    margin-right: 0;
}

.tel_no{
    font-size: 40px;
    font-weight: bold;
    color:var(--maincolor);
    letter-spacing: 2px;
    padding: 0 0 15px 0;
}
.contact_btn{
    padding: 15px 0;
}
.contact_btn a{
    color:#fff;
    padding:15px 30px;
    background-color:var(--maincolor);
}

.contact_btn a:after{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: .4s;
}

.contact_btn a:hover{
    opacity: 0.9;
}
.contact_btn a:hover:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transition: .4s;
   transform: translate(5px, 0px) rotate(-45deg);
}

.contact_box article{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding:0 20px;
}
.contact_box article .text{
    padding: 15px 0 5px 0;
    
}

/*p margin調整*/
.mb5{
	margin-bottom:5px;
}
.mb10{
	margin-bottom:10px;
}
.mb20{
	margin-bottom:20px;
}
.mb30{
	margin-bottom:30px;
}
.mb40{
	margin-bottom:40px;
}
.mb50{
	margin-bottom:50px;
}
.mb60{
	margin-bottom:60px;
}


.pb5{
	padding-bottom:5px;
}
.pb10{
	padding-bottom:10px;
}
.pb20{
	padding-bottom:20px;
}
.pb30{
	padding-bottom:30px;
}
.pb40{
	padding-bottom:40px;
}
.pb50{
	padding-bottom:50px;
}
.pb60{
	padding-bottom:60px;
}

.mb100{
	margin-bottom:100px;
}

.mt20{
	margin-top:20px;
}


.clearFix:after {
 content: ".";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}
.clearFix {
 display:inline-block;
 min-height: 1px;
}

.pc_none{
	display:none;
}

img.center{
	margin-left:auto;
	margin-right:auto;
	display:block;
}


/*文字装飾*/
.font_bold{
	font-weight:bold;
}

.font_red{
	color:#b80101;
}

.font_small{
	font-size:8.5pt;
}

a.link{
	color:#32b4de;
}

a.link:hover{
	color:var(--maincolor);
	text-decoration: underline;
}

strong  , em , address , small{
font-style: normal;
font-weight: normal;
}


address a{color:#fff;}


body{
 background-color:#fff;
 color:#333;
 font-size:16px;
 font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
 font-weight: 500;
    line-height: 1.1;
}

/* 全ページヘッダー */
header div , nav ul , section article , footer div{
max-width: 1000px;
    width: 100%;
    padding:0 10px;
margin: 0 auto;
}

header{
background-color: var(--maincolor);
}

header div{
display:flex;
align-items: center;
color: #fff;
height: 65px;
}
header h1{
    flex:1;
}
 header h2 , header p{
     margin-left: auto;
     margin-right: 0;
}



.catch_text {
    text-align: left;
    font-size: 20px;
    color: var(--maincolor);
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto;
}

.catch_text02 {
    text-align: left;
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

/*

h1{
width: 300px;
}
*/

h1 img{
    padding-right: 10px;
}


h1 a{
color: #fff;
font-weight: 600;
font-family: "Mplus 1p";
letter-spacing: 0.2em;
}

h1 span{
font-size: 10pt;
    display: block;
    padding-left: 1rem;
}

h2{
font-size: 9pt;
line-height: 1.5em;
text-align: right;
}

h3{
/*padding-top: 50px;*/
text-align: center;
font-size: 18pt;
color:var(--maincolor);
margin-bottom: 40px;
}

h3:after{
display: block;
content: "";
width: 200px;
margin: 0 auto;
margin-top: 20px;
border-bottom: 2px solid var(--maincolor);
}

header p{
font-size: 26pt;
text-align: right;
width: 280px;
}

/* 全ページナビ */
nav{
background-color: #fff;
padding: 15px 0 0 0;
height: 45px;
overflow: hidden;
}

#top nav{
background-color: transparent;
padding: 30px 10px 0 10px;
height: 75px;
    position: relative;
    z-index: 1;
}

nav ul.menu{
max-width: 1000px;
margin: 0 auto;
}

nav li.menu__item{
margin-right: 40px;
}

.hover7__label{
padding-bottom: 12px;
}

.menu__link{
color: var(--maincolor);
}

#top .menu__link{
color: rgba(255,255,255,0.8);
}

.menu__link:hover{
color: #aaa;
}

#top .menu__link:hover{
color: rgba(255,255,255,1.0);
}

.hover7__label:after{
  background-color: var(--maincolor);
}

#top span:after{
  background-color: rgba(255,255,255,0.8);
}

.menu__link:hover .hover7__label:after{
background-color: #ccc;
}

#top .menu__link:hover span:after{
background-color: rgba(255,255,255,1.0);
}

.fixed {
 position: fixed;
 top: 0;
 left: 0;
width:100%;
z-index:11;
background-color:#fff;
margin-top:0;
}

#top .fixed {
 position: fixed;
 top: 0;
 left: 0;
width:100%;
z-index:11;
background-color: var(--maincolor);
padding-top: 15px;
padding-bottom: 0;
height: 45px;
}


/* 全ページフッター */
footer{
background-color: var(--maincolor);
}


footer ul {
padding-top: 40px;
}

footer ul li{
list-style-type: none;
display: inline-block;
margin-right: 20px;
}

footer ul li a{
color: rgba(255,255,255,0.7);
font-weight: 600;
}

footer ul li a:hover{
color: rgba(255,255,255,1.0);
}

address{
color: #fff;
line-height: 1.6em;
margin-top: 20px;
margin-bottom: 40px;
display:inline-block;
}

address p{
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

address p img{
    padding-bottom: 5px;
}

small{
background-color: var(--maincolor);
width: 100%;
display: block;
border-bottom: 1px solid rgba(255,255,255,0.4);
padding-top: 15px;
height: 40px;
}


small p{
color: #fff;
max-width: 1000px;
margin: 0 auto;
font-size: 8pt;
    padding:0 10px;
}

p#totop{
width: 40px;
height: 40px;
float: right;
}

p#totop a{
display: block;
width: 40px;
height: 40px;
background-color: #fff;
padding-top: 5px;
padding-left: 1px;
color: var(--maincolor);
margin-top: -40px;
}


p#totop a:hover{
color: #999;
}

p#totop a span{
font-size: 20pt;
}


/* 共通 コンテンツ */
section{
min-height: 300px;
padding-top: 80px;
padding-bottom: 80px;
}

.bgcolor{
background-color: var(--palecolor);
}

#pink .bgcolor{
background-color: #faf4f1;
}


/* ---------------------------------------------------------------------------------- */


/*------------トップページ------------*/
section#catch{
width: 100%;
padding: 0;
}

/*キャッチ横スライド*/
section.slide{
width: 100%;
height: 500px;
background-color:#eee;
overflow: hidden;
}

.slick{
width:1000px;
height:500px;
margin:0 auto;
position:relative;
}

.slick img {
width: 1000px;
height:500px;
}

/*キャッチ横フルスクリーン*/
section.full{
height: 80vh;
min-height: 700px;
background-image: url(../image/full.jpg);
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
/*background-attachment: fixed;*/
z-index: 0;
position: relative;
margin-top: -75px;
}

section.full img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


section.full .catch_text span{
    font-size: 50px;
}


/*キャッチ下PR*/


section#pr{
    background-image:url(../image/bg.png);
    background-repeat: repeat-x;
    background-position: bottom;
    
}
section#pr article .d-flex{
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-around;
}
section#pr article .catch_text{
    color:#333;
    font-size: 20px;
    text-align: left;
    margin-top: 0;
    padding-left: 20px;
    margin: 0 0;
}

#top_about{
    overflow: hidden;
    position: relative;
}

.top_about_box{
    max-width: 1000px;
    margin: 0 auto;
    text-align: right;
    z-index: 11;
    padding-right: 45%;
}
.top_about_box .catch_text{
    text-align: right;
}


.full_right {
  background: url(../image/top/img01.jpg);
  padding: 4px 8px;
  margin-left: 60%;
  width: 100vw;
    min-height: 300px;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    opacity: 0.6;
}


/*
section#pr article{
display: table;
table-layout: fixed;
}

section#pr article div{
display: table-cell;
vertical-align: middle;
}

section#pr article div:first-of-type img{
width: 100%;
height: auto;
vertical-align: bottom;
}

section#pr article div:last-of-type{
background-color: #e7f0f8;
padding: 30px;
line-height: 2.0em;
text-align: center;
}

section#pr article div:last-of-type p{
display: inline-block;
text-align: left;
}

section#pr article div p#prtext{
font-size: 12pt;
text-align: center;
margin-bottom: 30px;
font-weight: bold;
}
*/


/*アクセス（会社案内共通）*/
#access .pc_none{
position: relative;
padding-bottom: 300px;
height: 0;
overflow: hidden;
width:90%;
margin:0 auto;
}

#access .pc_none iframe { 
position: absolute;
top: 0;
left: 0;
    max-width: 1000px;
width: 100% !important;
height: 100% !important;
}

/*アクセス（会社案内共通）*/
#access iframe { 
    max-width: 1000px;
    width: 100%;
    height: 450px;
}


section#supportarea {
    padding:60px 20px;
    background-image:url(../image/top/map.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size:cover;
}
#supportarea .midashi{
   text-align: left;
    
}
#supportarea .midashi span:before{
   left: 0!important;
    
}

#supportarea p{
    line-height: 1.7;
    padding:20px 0;
}

/* ---------------------------------------------------------------------------------- */

/*------------各ページ------------*/


/*会社概要*/
section#company dl {
background-color: rgba(255,255,255,0.9);
padding: 50px;
width: 700px;
margin: 0 auto;
margin-top: -150px;
position: relative;
z-index: 2;
    line-height: 1.4;

}

section#company dl dt{
float: left;

clear: both;
padding-right: 20px;
padding-top: 20px;
text-align: right;
width: 150px;
margin-bottom: 20px;
border-top: 1px solid #ccc;
font-weight: 700;
}

section#company dl dd{
        margin: 0 0 20px 150px;
padding-top: 20px;
margin-bottom: 20px;
border-top: 1px solid #ccc;
}

section#company dl dt:last-of-type , section#company dl dd:last-child{
padding-bottom: 0px;
margin-bottom: 0px;
border-bottom: 0;
}



/*会社概要*/
/*

section#company{
    padding: 50px 10px;
}
section#company .box{
    padding-bottom: 50px;
}
section#company dl {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

section#company dl dt {
    float: left;
    clear: both;
    padding-right: 20px;
    padding-bottom: 20px;
    text-align: right;
    
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    font-weight: 700;
}

section#company dl dd {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

section#company dl dt:last-of-type,
section#company dl dd:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0;
}
*/


/*会社概要*/

.business_wrap {
    text-align: center;
    padding-bottom: 100px;
}

.business_wrap h4 {
    font-size: 18pt;
    line-height: 2;
    padding-bottom: 20px;
}

.business_wrap p {
    font-size: 14pt;
    line-height: 2;
    padding-bottom: 20px;
}

.business_wrap>div {
    display: flex;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.business_wrap>div img {
    object-fit: cover;
    flex: 1;
    width: 50%;
    
}


/*事業案内*/

/*
.business_wrap {
    text-align: center;
    padding-bottom: 100px;
}

.business_wrap h4 {
    font-size: 18pt;
    line-height: 2;
    padding-bottom: 20px;
}

.business_wrap p {
    font-size: 14pt;
    line-height: 2;
    padding-bottom: 20px;
}

*/


.about01{
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 16px;
    padding:0 20px;
    margin-bottom: 10px;
}


.about02{
    padding:0 20px;
/*
    display: flex;
    flex-wrap: wrap;
*/
}
.about02_img {
    max-width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-around;
}
.about02_img img{
    width: 30%;
}
.about02_jigyou {
    flex: 1;
    background: #fff;
    padding: 30px 10px;
    border-radius: 20px;
    align-self: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.about02_jigyou h3{
    font-size: 18px;
    font-weight: bold;
margin-bottom: 20px;
    padding-left: 10px;
    text-align: left;
}


.about02_jigyou h3:after{
display: none;
}

.about02_jigyou ul{
    margin-left: 30px;
    line-height: 1.7;
}
/* ---------------------------------------------------------------------------------- */


/*製品紹介*/
section#product dl {
background-color: rgba(255,255,255,0.9);
padding: 50px;
width: 700px;
margin: 0 auto;
margin-top: -150px;
position: relative;
z-index: 2;
}

section#product dt {
font-weight: bold;
text-align: center;
font-size: 14pt;
margin-bottom: 25px;
}

section#product dd {
line-height: 2.0em;
}

section#lineup div{
margin-bottom: 50px;
clear: both;
overflow: hidden;
}

section#lineup div:last-of-type{
margin-bottom: 0;
}

section#lineup figure{
float: left;
width: 320px;
margin-right: 20px;
}

section#lineup figure:last-of-type{
margin-right: 0;
}

section#lineup figcaption{
line-height: 1.6em;
}

section#lineup figcaption strong{
margin-top: 15px;
margin-bottom: 5px;
font-weight: bold;
font-size: 12pt;
display: block;
}



/* ---------------------------------------------------------------------------------- */


/*FAQ*/
section#faq div{
padding-top: 50px;
}

section#faq dl {
margin-bottom: 60px;
line-height: 2.0em;
}

section#faq dl:last-of-type {
margin-bottom: 0;
}

section#faq dt{
font-weight: bold;
margin-bottom: 15px;
}

section#faq dt:before , section#faq dd:before {
font-size: 20pt;
width: 40px;
height: 40px;
display:inline-block;
text-align: center;
border-radius: 50%;
line-height: 40px;
}

section#faq dt:before {
content: "Q";
background-color: #fff;
color: var(--maincolor);
margin-right: 10px;
}

section#faq dd:before {
content: "A";
background-color: var(--maincolor);
color: #fff;
margin-right: 10px;
text-indent: 0;
}

section#faq dd{
padding-left:50px;
text-indent:-50px;
}



/* ---------------------------------------------------------------------------------- */


/*チャート*/

section#chart div{
padding-top: 50px;
padding-bottom: 20px;
width: 800px;
margin: 0 auto;
}

section#chart dl {
margin-bottom: 40px;
line-height: 2.0em;
}

section#chart dl:after{
font-family: 'fontello';
content: '\e802';
font-size: 30pt;
color: var(--palecolor);
text-align: center;
margin-top: 25px;
display: block;
}

section#chart dl:last-of-type:after{
content: none;
}

section#chart dl:last-of-type {
margin-bottom: 0;
}

section#chart dt{
font-weight: bold;
margin-bottom: 15px;
display: table;
}

section#chart dt span , section#chart dt p{
display: table-cell;
}

section#chart dt span{
background-color: var(--maincolor);
color: #fff;
text-align: center;
width: 150px;
padding: 10px 0;
}

section#chart dt p{
background-color: #fff;
color: var(--maincolor);
width: 850px;
padding: 10px 0;
padding-left: 30px;
}



/* ---------------------------------------------------------------------------------- */

/*お問い合わせ*/

section#contact p:first-of-type{
text-align: center;
line-height: 2.0em;
margin-bottom: 70px;
padding-top: 30px;
}

section#contact table{
margin: 0 auto;
}

section#contact table th{
text-align: right;
padding-right:1em;
padding-top: 8px;
vertical-align: top;
}

section#contact table td{
padding-bottom: 30px;
}

section#contact table input{
border: 1px solid var(--maincolor);
padding: 10px;
}

section#contact table select{
border: 1px solid var(--maincolor);
padding: 9px;
width: 140px;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background: url(../image/select_back.png) no-repeat right;
background-color: #fff;
}

section#contact table textarea{
border: 1px solid var(--maincolor);
}

section#contact table span.required{
background-color: #fff;
padding: 5px 10px;
margin-left: 10px;
margin-right: 10px;
color: firebrick;
border-radius: 15px;
}

section#contact table span.supplement{
font-size: 9pt;
}

section#contact #button{
display: block;
margin: 0 auto;
margin-top: 30px;
background-color: var(--maincolor);
border: 1px solid var(--maincolor);
color: #fff;
text-align: center;
padding: 20px;
border-radius: 25px;
font-weight: 700;
-webkit-transition:0.3s;
 -moz-transition:0.3s;
 transition:0.3s;
 font-size: 12pt;
}

section#contact #button:hover{
background-color: #fff;
color:var(--maincolor);
cursor: pointer;
}

section#policy dl{
width: 900px;
margin: 0 auto;
padding-top: 50px;
}

section#policy dt{
font-weight:bold;
margin-bottom: 7px;
}

section#policy dt:before{
content: "\3007";
margin-right: 0.3em;
}

section#policy dd{
line-height: 1.8em;
margin-bottom: 25px;
margin-left: 1.3em;
}


.submit_button{
display: inline-block;
margin: 0 auto;
margin-top: 30px;
background-color: var(--maincolor);
border: 2px solid var(--maincolor);
color: #fff;
text-align: center;
padding: 20px;
border-radius: 25px;
font-weight: 700;
-webkit-transition:0.3s;
 -moz-transition:0.3s;
 transition:0.3s;
 font-size: 12pt;
}

.submit_button:hover{
background-color: #fff;
color:var(--maincolor);
cursor: pointer;
}



.mae_button{
display: inline-block;
margin: 0 auto;
margin-top: 30px;
background-color: #fff;
border: 2px solid var(--maincolor);
color: var(--maincolor);
text-align: center;
padding: 20px;
border-radius: 25px;
font-weight: 700;
-webkit-transition:0.3s;
 -moz-transition:0.3s;
 transition:0.3s;
 font-size: 12pt;
}

.mae_button:hover{
background-color: var(--maincolor);
color:#fff;
cursor: pointer;
}

#contact_subpage .formTable{
    max-width: 800px;
    width: 100%;
    background:#fff;
    margin: 0 auto;
}
#contact_subpage .formTable tbody{
    padding: 50px;
    display: block;
}

#contact_subpage .formTable tr{
    padding: 10px;
    display: flex;
    border-bottom: 1px solid var(--maincolor);
}

table.formTable th{
	width: 30%;
	font-weight:normal;
	text-align:left;
    line-height: 50px;
}

table.formTable td{
    line-height: 50px;
	flex:1;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
    }}


/* ---------------------------------------------------------------------------------- */


/*メニュー表 (#pink)*/
.menulist div{
margin-bottom: 40px;
clear: both;
overflow: hidden;
}

.menulist  figure{
float: left;
width: 320px;
margin-right: 20px;
}

.menulist  figure:last-of-type{
margin-right: 0;
}

.menulist  figcaption{
line-height: 1.6em;
}

.menulist  figcaption strong{
margin-top: 15px;
margin-bottom: 5px;
font-weight: bold;
font-size: 12pt;
display: block;
}

.menulist02 dt{
font-weight: 700;
margin-bottom: 10px;
}

.menulist02 dd{
padding-bottom: 10px;
padding-left: 0.5em;
}

.menulist02 dd:before{
content: "\3007";
margin-right: 3px;
}

.menulist02 dl{
padding-bottom: 30px;
border-bottom: dashed 1px #aaa;
margin-bottom: 30px;
}

.menulist02 dl:first-of-type{
padding-top: 30px;
}


/* ---------------------------------------------------------------------------------- */


/*採用情報 */

section#recruit div#staff01{
    position: relative;
    top:-50px;
} 

section#recruit div#staff01 table {
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

section#recruit div#staff01 table th,
section#recruit div#staff01 table td {
    padding: 15px;
    line-height: 1.6em;
    border-bottom: 1px dotted #ccc;
}

section#recruit div#staff01 table th {
    text-align: right;
}

section#recruit div#staff01 table tr:first-child th,
section#recruit div#staff01 table tr:first-child td {
    padding-top: 50px;
}

section#recruit div#staff01 table tr:last-child th,
section#recruit div#staff01 table tr:last-child td {
    padding-bottom: 50px;
    border-bottom: 0;
}



/* ---------------------------------------------------------------------------------- */

