@charset "UTF-8";


/* デザインA（スマートフォン） */
/* メディアクエリ の記述なし。 */


.container {
    width: 100%;
}
.container img {
    width: 100%;
}

header  {
    background-image: url(../images/main_bg_sm.webp);
    background-repeat: no-repeat;
    text-align: center;
    background-size: cover;
	height: 100vh;
}


#g-nav,
.openbtn{
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.1em;
}
#g-nav.panelactive li:last-child a{
    margin: 30px 0 0 0;
    padding: 10px 20px;
    border: 2px solid #fff;
    white-space: nowrap;
}



/*===========================================================*/
/*機能編  5-1-12 クリックしたらナビが下から上に出現 */
/*===========================================================*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	bottom:-120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#eb6100;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #ffffff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*===========================================================*/
/*機能編  5-2-5	MENUが×に */
/*===========================================================*/

.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
    width: 80px;
    height:70px;
    border-left:2px solid #ffffff;
	text-shadow: 2px 2px 2px #333333;
	font-family: 'M PLUS 1', sans-serif
}
	
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
	background: #ffffff;
  	width:30%;
    opacity: 0;
    top:22px;
    left:20px;
 }

.openbtn span:nth-of-type(2) {
	top:22px;
	left:18px;
	text-transform: uppercase;
	color: #ffffff;
    font-size: 0.9rem;
}


/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
    opacity:1;
}

.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity:0;
}

.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
}


/* heading */

.heading-block{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.heading-block h1{
    font-size: 6vw;
    color: #fff;
    line-height: 1.8;
    font-family: 'M PLUS 1', sans-serif;
    text-shadow: 2px 2px 3px #333333;
	white-space: nowrap;/*改行されない*/
}



/*
section 見出し
----------------------------*/
.heading06 {
    position: relative;
    padding-top: 10px;
    padding-bottom: 50px;
	margin-bottom: 20px;
    font-size: 6vw;
    text-align: center;
    letter-spacing: 5px;
	font-family: 'M PLUS 1', sans-serif;
	color: #000;
}

.heading06 span {
	position: relative;
	z-index: 2;
}

.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(252,146,31,0.6);
	font-size: 10vw;
	font-style: italic;
}

.heading06::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 40px;
	background-color: rgba(252,146,31,1);
}


/*
sectionリクルート 見出し
----------------------------*/
.heading06r {
    position: relative;
    padding-top: 10px;
    padding-bottom: 50px;
	margin-bottom: 20px;
    font-size: 6vw;
    text-align: center;
    letter-spacing: 5px;
	color: #ffffff;
}

.heading06r span {
	position: relative;
	z-index: 2;
}

.heading06r::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(252,146,31,0.6);
	font-size: 10vw;
	font-style: italic;
}

.heading06r::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 40px;
	background-color: rgba(252,146,31,1);
}


/*
会社情報　見出し
----------------------------*/
.heading02 {
	position: relative;
    font-size: 4vw;
    letter-spacing: 5px;
	text-align: center;
	border-bottom: 5px solid #dddddd;
}

.heading02::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 5px;
	background-color: #F7B874;
}


/*
設備名　見出し
----------------------------*/
.heading03 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
    text-align: center;
    letter-spacing: 2px;
}

.heading03::before,
.heading03::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #F7B874;
}

.heading03::before {
	margin-right: 20px;
}
.heading03::after {
	margin-left: 20px;
}


/*
レイアウト、フォーム　見出し
----------------------------*/
.heading04 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3vw;
	text-align: center;
	letter-spacing: 5px;
}

.heading04::before,
.heading04::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #3fc1c9;
}

.heading04::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading04::after {
	margin-left: 30px;
	transform: rotate(35deg)
}


/*
業務内容
----------------------------*/
#business {
    background-image: url(../images/business_bg_sm.webp);
    background-repeat: no-repeat;
    text-align: center;
    padding: 100px 2% 50px;
    height: 100%;
}


#business p {
    line-height: 250%;
    font-weight: 600;
	}
	

/*
主要設備
----------------------------*/
#setsubi {
    background-image: url(../images/setsubi_bg_sm.webp);
    background-repeat: no-repeat;
    text-align: center;
    padding: 100px 2% 50px;
}
#setsubi .inbox {
	margin: 10px auto 0px ;
    background-color: #ffffff;
    padding: 20px 5px  10px;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.4));
}


/*
レイアウト
----------------------------*/
#layout {
    padding: 30px 5px  10px;
	text-align: center;
	background-image: url(../images/layout_bg.webp);
    background-repeat: repeat;
}

#layout img {
    width: 100%;
}



/*
会社情報
----------------------------*/


#honsha  {
    background-image: url(../images/honsha_sm.webp);
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 400px;
    padding-bottom: 50px;
    background-color: #ffffff;
    background-position: center top;
}


#company {
    background-image: url(../images/company_bg_sm.webp);
    background-repeat: repeat;
    padding: 100px 30px 30px;
    text-align: center;
}



/* 会社概要tableの設定
----------------------------------------------------------- */
table.company_gaiyo {
width: 96%;
margin-top: 30px;
margin-right: auto;
margin-left: auto;
border-collapse: separate;
border-spacing: 0px 15px;
font-size: 0.9em;
margin-bottom: 50px;
letter-spacing: 0px;
}
 
table.company_gaiyo th,
table.company_gaiyo td {
background: #f8f8f8;
padding: 10px;
text-align: left;
display: block;
}
 
table.company_gaiyo th {
vertical-align: middle;
text-align: left;
overflow: visible;
position: relative;
font-weight: bolder;
padding-right: 20px;
}
 

table.company_gaiyo td {
padding-left: 20px;
padding-right: 20px;
background-color: #EEEEEE;
border-bottom: 1px dashed #cccccc;
}


/* 会社沿革tableの設定
----------------------------------------------------------- */
table.company_history {
width: 96%;
margin-top: 30px;
margin-right: auto;
margin-left: auto;
border-collapse: separate;
border-spacing: 0px 15px;
font-size: 0.9em;
letter-spacing: 1px;
}
 
table.company_history th,
table.company_historyy td {
background: #f8f8f8;
padding: 10px 5px;
display: block;
}
 
table.company_history th {
    width: 6em;
    vertical-align: middle;
    text-align: right;
    overflow: visible;
    position: relative;
    font-weight: bold;
    display: table-cell;
}

table.company_history td {
text-align:  left;
padding-left: 20px;
padding-right: 20px;
background-color: #EEEEEE;
}



/* リクルート
----------------------------------------------------------- */

#recruit {
    background-image: url(../images/recruit_bg_sm.webp);
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: #1B1B1B;
    background-position: center top;
}



#recruit h3 {
color: #76BC2A;
font-size: 30px;
font-weight: bold;
text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
letter-spacing: 5px;
text-align:  center;
padding-top: 50px;

}


#recruit .recruit_ex {
    padding: 20px 0px;
    color: #ffffff;
	text-align:  center;
    line-height: 200%;
    font-weight: 600;
	}

/* デザインA（スマホ） */
@media screen and (max-width:600px){
/* スマホ用レイアウト 600px以下の範囲に収めるデザインはこの中に記述 */

#recruit .recruit_expc {
    display: none;
	}
	}

.yoko_contents {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #999999;
    margin-bottom: 5%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.4));
	font-size: 0.8em;
}
.yoko_chu   {
  font-size: 1.3em;
  font-weight: 600;
  text-align: center;
  color: #F5A41A;
  text-shadow: 0 0 5px white;
  padding: 0.3em 0.5em;
  background: -webkit-repeating-linear-gradient(-45deg, #dddddd, #dddddd 3px,#eeeeee 3px, #eeeeee 7px);
  background: repeating-linear-gradient(-45deg, #dddddd, #dddddd 3px,#eeeeee 3px, #eeeeee 7px);
}




/* 募集要項tableの設定
----------------------------------------------------------- */


table.yoko_info {
  border-collapse: collapse;
  width: 100%;
}
.yoko_info th ,
.yoko_info td {
  padding: 10px;
  border: solid 1px #ccc;
  box-sizing:border-box;
  width: 100%;
  display: block;
  border-bottom:none;
}
.yoko_info th {
  width: 100%;
  text-align:center;
  background: #CEE6CC;
  color: #333;
  letter-spacing: 5px;
}

.yoko_info td {
  text-align:left;
}

.yoko_info tr :last-child{
    border-bottom: solid 1px #ccc;
  }
  



/* お問い合わせ
----------------------------------------------------------- */
#otoiawase {
    background-image: url(../images/otoiawase_pic.webp);
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 400px;
    padding-bottom: 50px;
    background-color: #ffffff;
    background-position: center top;
}


.otoiawase_contents {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
	padding: 5%;
	text-align: center;
}

#otoiawase .otoiawase_company   {
    font-size: 1.6em;
    padding: 20px;
}

#otoiawase .tel:before {
  font-family: "Font Awesome 5 Free";
  content: '\f095';
  font-size:1em;
  font-weight: 900;
}
#otoiawase .tel a {
    color: #C03739;
    font-size: 1.1em;
    font-weight: 900;
}


#otoiawase h3 {
    margin-left: auto;
    margin-right: auto;
	text-align: left;
  padding: 10px 10px;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
  letter-spacing: 5px;
}


.otoiawase_form {
    margin: 50px  auto;
}

.contact_text {
	font-size: 0.7rem;
    margin: 20px  auto 30px ;
    text-align: left;
    letter-spacing: 1px;
    line-height: 2em;
	color: #494949;/*文字色*/
}


/* お問い合わせtableの設定tbl_form
----------------------------------------------------------- */
table.tbl_form {
width: 96%;
margin-right: auto;
margin-left: auto;
border-collapse: separate;
}



#form_body .tbl_form th ,
#form_body .tbl_form td {
    padding: 10px;
    border: solid 1px #ccc;
    text-align: left;
    box-sizing: border-box;
	-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Chrome, Safari */
    display: block;
	width: 80%;
}
#form_body .tbl_form th {
	font-size: 0.7rem;
    background-color: #F2F2F2;
    color: #333;
    letter-spacing: 1px;
	border-bottom: none;
}

#form_body .tbl_form .horizon li {
	font-size: 0.7rem;
	display:inline-block;
	vertical-align:top;
	white-space:nowrap;
	margin:0 1em 0.5em 0;
}
#form_body .tbl_form .horizon li input,
#form_body .tbl_form .horizon li span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
#form_body .tbl_form .horizon li label {
	margin-right:5px;
}
#form_body .tbl_form .horizon li span {
	padding:4px 0 0 2px;
}
#form_body .tbl_form .in_txt,
#form_body .tbl_form .in_txta {
	border:1px solid #D1C0CA;
	padding:10px;
}
#form_body .tbl_form .in_txt2 {
	border:1px solid #D1C0CA;
	padding:10px;
	width:10em;
}

#form_body textarea{
width:80%;
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Chrome, Safari */
}

.must_red {
    color: #FF5500;
    border: 1px solid #FF5500;
    padding: 2px;
    border-radius: 3px;
    margin: 0px 10px;
}

/* form_btn
------------------------------ */
#form_body .form_btn p {
	display:inline-block;
	vertical-align: top;
	margin:10px 5px;
	width:130px;
	box-sizing:border-box;
}
#form_body .form_btn p input {
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
    font-size: 1em;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
#form_body .form_btn .reset input {
	border:1px solid #cccccc;
	background-color:#eeeeee;
	color:#666666;
}
#form_body .form_btn .submit input {
	border:1px solid #00A6DD;
	background-color:#00A6FF;
	color:#ffffff;
}






/* access
------------------------------ */
#access {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #F7B553;
	text-align:center;
}

.access_contents {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
	 letter-spacing: 2px;
}

#access figure{
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

#access .access_company   {
    font-size: 1.3rem;
	font-weight: 900;
    padding: 5px;
    line-height: 2em;
}


#access .text {
    padding: 10px 10%;
	text-align:  left;
    font-size: 0.8rem;
	}

#access.map{
    margin-left: auto;
    margin-right: auto;
}

/* 

// -------------------------------------------------------------------------

//   PAGETOP

// -------------------------------------------------------------------------

*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
background-color: #F5A21F;
text-decoration: none;
color: #fff;
width: 40px;
padding: 10px;
text-align: center;
display: block;
border-radius: 5px;
}
#page-top a:hover {
text-decoration: none;
background-color: #FAC880;
}

#page-top :before {
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-size:1em;
  font-weight: 900;
}

/* 

// -------------------------------------------------------------------------

//   copyright

// -------------------------------------------------------------------------

*/


.copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #000000;
    color: #F7B553;
    font-weight: lighter;
    border-top-width: 2px;
    font-size: 11px;
	letter-spacing: 2px;
}



/*
ぽよぽよ収縮
----------------------------*/
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/*
----------------------------*/
