
/* ----------------------------------------------------------------------------------------------------
     全端末共通のCSS（961px〜）
---------------------------------------------------------------------------------------------------- */

.pc {
	display:block;
}

.sp {
	display:none;
}

.tab2 {
	display:none;
}

#tablet {
	display: none;
}

/* レイアウト
-------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
	color: #333;
	text-align: center;
	margin: 0 auto;
	height: 100%;
	background: #ff8848;
}

#wrap {
	width:100%;
	text-align:center;
	margin:0 auto;
}

#layout {
	width:100%;
	text-align:center;
	margin:0 auto;
	overflow:hidden;
}

.width {
	width: 1100px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* 文字
--------------------------------------------------------------------------*/

h1 {
	font-size: 250%;
	margin-bottom: 50px;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-family:"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1 span {
	display: block;
	font-size: 35%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	text-transform: uppercase;
}

h2 {
	font-size: 180%;
	font-weight: bold;
	line-height: 140%;
	text-align: left;
	margin-bottom: 30px;
	border-left: 5px solid #FF8848;
	padding-left: 15px;
	font-family:"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h3 {
	font-size: 130%;
	text-align: left;
	margin-bottom: 20px;
	font-weight: bold;
	color: #ed6e00;
	font-family:"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

p {
	font-size: 100%;
	line-height: 200%;
	margin-bottom: 20px;
	text-align: left;
}

ul.text {
	text-align: left;
	font-size: 90%;
	margin-bottom: 20px;
}

ul.text li {
	line-height: 150%;
	margin: 0 0 10px 20px;
	list-style: outside;
}

ol.text {
	counter-reset: my-counter;
	list-style: none;
	margin-top: 30px;
}
 
ol.text li {
	margin-bottom: 20px;
	padding-left: 40px;
	padding-bottom: 20px;
	position: relative;
	text-align: left;
	font-weight: bold;
	font-size: 110%;
	border-bottom: 1px dotted #CCC;
}

ol.text li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #ED6E05;
	color: #FFF;
 	display: block;
	float: left;
	line-height: 35px;
	margin-left: -40px;
	text-align: center;
	height: 35px;
	width: 35px;
	margin-right: 10px;
	margin-top: -3px;
	border-radius: 50%;
}

/* ヘッダー
--------------------------------------------------------------------------*/

#fix {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0%;
	z-index: 10000;
	width: 100%;
	padding: 20px 0;
    transition : all 500ms;
	box-sizing: border-box;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#fix.fixed2 {
	position: fixed;
	top: 0;
	left: 0%;
	padding: 10px 0;
	z-index: 2000;
	width: 100%;
	box-sizing: border-box;
    transition : all 500ms;
}

#header {
	margin-left: 5%;
	margin-right: 5%;
}

#header_left {
	float: left;
}

#header_left div {
    transition : all 500ms;
}

#fix.fixed2 #header_left div {
    transition : all 500ms;
}

#header_left div img {
	transform: scale(1,1);
    transition : all 500ms;
	text-align: left;
}

#fix.fixed2 #header_left div img {
	transform: scale(0.9, 0.9) translate(-5%, 0%);
    transition : all 500ms;
}

#header_right {
	float: right;
}

/* ナビゲーション
--------------------------------------------------------------------------*/

nav {
}

#navi {
	width: 100%;
}

#navi ul {
}

#navi ul li {
	float: left;
	box-sizing: border-box;
	list-style: none;
	line-height: 150%;
	font-size: 90%;
	padding: 5px 0;
	font-weight: bold;
	background: url("../img/nav/border.png") center left no-repeat;
	transition: 0.5s;
}

#navi ul li:nth-child(1) {
	box-sizing: border-box;
}

#fix.fixed2 #navi ul li {
	padding: 0;
	transition: 0.5s;
}

#navi ul li a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	padding: 10px;
	margin: 0px;
	box-sizing: border-box;
	transition: 0.5s;
}

#fix.fixed2 #navi ul li a {
	padding: 10px 15px;
}

#navi ul li:nth-child(4) {
	background: none;
}

#navi ul li:nth-child(4) a {
	background: rgb(255,180,81);
	background: linear-gradient(180deg, rgba(255,180,81,1) 0%, rgba(255,102,65,1) 100%);
	padding: 10px 25px;
	box-sizing: border-box;
	color: #FFF;
	transition: 0.5s;
	border-radius: 5px;
}

#navi ul li a:hover {
	transition: 0.5s;
	color: #ed6e00;
}

#navi ul li:nth-child(6) a:hover {
	background: #e72318;
	color: #FFF;
	transition: 0.5s;
	border-radius: 5px;
}


/* 共通
--------------------------------------------------------------------------*/

#container {
	padding-top: 80px;
}

section {
	padding-bottom: 30px;
}

.column2 {
	width: 48%;
	float: left;
	margin-right: 4%;
}

.column2:nth-child(2n) {
	margin-right: 0;
}

.column3 {
	width: 31%;
	float: left;
	margin-right: 3.5%;
}

.column3:nth-child(3n) {
	margin-right: 0;
}

.column4 {
	width: 23.5%;
	float: left;
	margin-right: 2%;
}

.column4:nth-child(4n) {
	margin-right: 0;
}

.column5 {
	width: 19.2%;
	float: left;
	margin-right: 1%;
}

.column5:nth-child(5n) {
	margin-right: 0;
}

.left70 {
	float: left;
	width: 65%;
}

.right30 {
	float: right;
	width: 30%;
}

/* フッター
--------------------------------------------------------------------------*/

#footer {
	background: url("../img/footer/grabg.jpg") center center no-repeat;
	background-size: cover;
	padding: 40px 0 20px;
}

#footer_left {
	float: left;
}

#footer_left p img {
	height: 50px;
}

#footer_left p {
	font-size: 90%;
}

#footer_left p:nth-child(1) {
	margin-bottom: 30px;
}

#footer_right {
	float: right;
}

address {
	background: #000;
	padding: 25px 0;
	font-style: normal;
	font-size: 80%;
	color: #FFF;
}


/* コンテンツ
--------------------------------------------------------------------------*/

.box {
	background: #FFF;
	padding: 30px 30px 10px;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.caption {
	border: 1px solid #ff8848;
	margin-bottom: 20px;
}

.caption h4 {
	background: #ff8848;
	color: #FFF;
	padding: 7px 0;
	margin-bottom: 10px;
}

.caption p {
	text-align: center;
	margin-bottom: 10px;
}

/* section1
-------------------------------------*/

#main01 {
	background: url("../img/content/top/section1.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}

#cyclone {
	margin-top:-100px;
	padding-top:100px;
}

#video_block {
	height: 600px;
    position: relative;
    z-index:0;
	overflow: hidden;
	margin-bottom: 20px;
}

#video_block video {
	/*
	min-width:50%;
    min-height:50%;
    position: relative;
    top: 0%;
	left: 50%;
    transform: translateX(-50%);
	display: block;
	*/
}

/* section2
-------------------------------------*/

#main02 {
	background: url("../img/content/top/section2.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}

#log {
	margin-top:-100px;
	padding-top:100px;
}

/* section3
-------------------------------------*/

#main03 {
	background: url("../img/content/top/section3.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}

#chip {
	margin-top:-100px;
	padding-top:100px;
}

/* section4
-------------------------------------*/

#main04 {
	background: url("../img/content/top/section4.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}

#bandler {
	margin-top:-100px;
	padding-top:100px;
}

/* section5
-------------------------------------*/

#main05 {
	background: url("../img/content/top/section5.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}

#sludge {
	margin-top:-100px;
	padding-top:100px;
}

/* section6
-------------------------------------*/

#main06 {
	background: url("../img/content/top/section6.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}

#contact {
	margin-top:-100px;
	padding-top:100px;
}

/* section7
-------------------------------------*/

#main07 {
	background: url("../img/content/top/section7.jpg") top center no-repeat;
	background-size: cover;
	padding: 400px 0;
}


/* サイドバー
--------------------------------------------------------------------------*/

/* その他
--------------------------------------------------------------------------*/

.normalTbl input {
	font-size: 100%;
	color: #666;
	padding: 8px 10px;
	border: 1px solid #CCC;
}

.normalTbl label {
	font-size: 110% !important;
	color: #666;
}

.normalTbl input[type=checkbox] {
	margin: 10px 0;
}

.normalTbl select {
	color: #666;
	font-size: 100%;
	height: 30px;
	padding: 0 10px;
	border: 1px solid #CCC;
}

.normalTbl textarea {
	color: #666;
	font-size: 120%;
	padding: 5px 10px;
	border: 1px solid #CCC;
}

.normalTbl input:focus,
.normalTbl select:focus,
.normalTbl textarea:focus {
	background: #FDF2F2;
}

.formButton {
	text-align:center;
	margin:0 auto;
	display: block;
	margin-top: 40px;
	margin-bottom: 40px;
}

.formButton input {
	padding:25px 10%;
	text-align: center;
	margin: 0 auto;
	border-style: none;
	background: #C32B27;
	font-weight: bold;
	cursor: pointer;
	color: #FFF;
	font-size: 110%;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.formButton input:hover {
	background:#FF8800;
	transition: 0.3s;
}

iframe {
	vertical-align:bottom;
}

/* ローディング
-------------------------------------*/

.loading {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,1.0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
}

.loading i {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

/* その他ナビゲーション
--------------------------------------------------------------------------*/

.btn {
	background: #000000;
	color: #FFF;
	font-size: 100%;
	line-height: 100%;
	transition: 0.3s;
	text-align: center;
	width: 180px;
	font-family: neue-kabel,sans-serif;
	font-weight: 700;
	font-style: normal;
	border-radius: 4px;
}

.btn a {
	text-decoration: none;
	display: block;
	color: #FFF;
	padding: 20px 0px;
	box-sizing: border-box;
	transition: 0.3s;
	border-radius: 4px;
}

.btn a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #d8b448;
	transition: 0.3s;
	border-radius: 4px;
}

/* ページトップ
--------------------------------------------------------------------------*/

#page-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
    font-size: 80%;
	z-index: 20000;
}

#page-top a {
    background: #111;
    text-decoration: none;
    color: #fff;
	padding: 20px 15px;
    text-align: center;
    display: block;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

#page-top a:hover {
    text-decoration: none;
    background: #ed6e00;
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* ----------------------------------------------------------------------------------------------------
     小型タブレット・スマホ端末（〜480px）（〜640px）
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1100px) {

.pc {
	display:block;
}

.sp {
	display:none;
}

.tab2 {
	display:block;
}

.width {
	width:95%;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}



} /* /@media */



/* ----------------------------------------------------------------------------------------------------
     小型タブレット・スマホ端末（〜480px）（〜640px）
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 960px) {

.pc {
	display:none;
}

.sp {
	display:block;
}

.tab2 {
	display:none;
}

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

/* ヘッダー
--------------------------------------------------------------------------*/

#fix {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0%;
	z-index: 10000;
	width: 100%;
	padding: 20px 0;
    transition : all 500ms;
	box-sizing: border-box;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#fix.fixed2 {
	position: fixed;
	top: 0;
	left: 0%;
	padding: 10px 0;
	z-index: 2000;
	width: 100%;
	box-sizing: border-box;
    transition : all 500ms;
}

#header {
	margin-left: 5%;
	margin-right: 5%;
}

#header_left {
	float: left;
}

#header_left div {
    transition : all 500ms;
}

#fix.fixed2 #header_left div {
    transition : all 500ms;
}

#header_left div img {
	transform: scale(1,1);
    transition : all 500ms;
	text-align: left;
}

#fix.fixed2 #header_left div img {
	transform: scale(0.9, 0.9) translate(-5%, 0%);
    transition : all 500ms;
}

#header_right {
	float: right;
	width: 70%;
}

/* ナビゲーション
--------------------------------------------------------------------------*/

nav {
}

#navi {
	width: 100%;
}

#navi ul {
}

#navi ul li {
	float: left;
	width: 33%;
	box-sizing: border-box;
	list-style: none;
	line-height: 150%;
	font-size: 85%;
	padding: 5px 0 0 0;
	font-weight: bold;
	background: url("../img/nav/border.png") center left no-repeat;
	transition: 0.5s;
}

#navi ul li:nth-child(1) {
	box-sizing: border-box;
}

#fix.fixed2 #navi ul li {
	padding: 5px 0;
	transition: 0.5s;
}

#navi ul li a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	padding: 10px;
	margin: 0px;
	box-sizing: border-box;
	transition: 0.5s;
}

#fix.fixed2 #navi ul li a {
	padding: 5px 0;
}

#navi ul li:nth-child(6) {
	background: none;
}

#navi ul li:nth-child(6) a {
	background: rgb(255,180,81);
	background: linear-gradient(180deg, rgba(255,180,81,1) 0%, rgba(255,102,65,1) 100%);
	padding: 10px 25px;
	box-sizing: border-box;
	color: #FFF;
	transition: 0.5s;
	border-radius: 5px;
}

#navi ul li a:hover {
	transition: 0.5s;
	color: #ed6e00;
}

#navi ul li:nth-child(6) a:hover {
	background: #e72318;
	color: #FFF;
	padding: 10px 25px;
	transition: 0.5s;
	border-radius: 5px;
}

} /* /@media */



/* ----------------------------------------------------------------------------------------------------
     小型タブレット・スマホ端末（〜480px）（〜640px）
---------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 700px) {


/* 文字
--------------------------------------------------------------------------*/

h1 {
	font-size: 200%;
	margin-bottom: 50px;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-family:"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1 span {
	display: block;
	font-size: 35%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	text-transform: uppercase;
}

h2 {
	font-size: 160%;
	font-weight: bold;
	line-height: 140%;
	text-align: left;
	margin-bottom: 30px;
	border-left: 5px solid #FF8848;
	padding-left: 15px;
	font-family:"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h3 {
	font-size: 130%;
	text-align: left;
	margin-bottom: 20px;
	font-weight: bold;
	color: #ed6e00;
	font-family:"ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

p {
	font-size: 100%;
	line-height: 200%;
	margin-bottom: 20px;
	text-align: left;
}
	
/* ヘッダー
--------------------------------------------------------------------------*/

#fix {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0%;
	z-index: 10000;
	width: 100%;
	padding: 10px 0;
    transition : all 500ms;
	box-sizing: border-box;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#fix.fixed2 {
	position: fixed;
	top: 0;
	left: 0%;
	padding: 5px 0;
	z-index: 2000;
	width: 100%;
	box-sizing: border-box;
    transition : all 500ms;
}

#header {
	margin-left: 5%;
	margin-right: 5%;
}

#header_left {
	float: none;
	margin-bottom: 10px;
}

#fix.fixed2 #header_left {
	margin-bottom: 5px;
}

#header_left div {
    transition : all 500ms;
}

#fix.fixed2 #header_left div {
    transition : all 500ms;
}

#header_left div img {
	transform: scale(1,1);
    transition : all 500ms;
	text-align: left;
}

#fix.fixed2 #header_left div img {
	transform: scale(0.9, 0.9) translate(-5%, 0%);
    transition : all 500ms;
}

#header_right {
	float: none;
	width: 100%;
}

/* ナビゲーション
--------------------------------------------------------------------------*/

nav {
}

#navi {
	width: 100%;
}

#navi ul {
}

#navi ul li {
	float: left;
	width: 33%;
	box-sizing: border-box;
	list-style: none;
	line-height: 150%;
	font-size: 75%;
	padding: 0px 0 0 0;
	font-weight: bold;
	background: url("../img/nav/border.png") center left no-repeat;
	transition: 0.5s;
}

#navi ul li:nth-child(1) {
	box-sizing: border-box;
}

#fix.fixed2 #navi ul li {
	padding: 0 0 5px 0;
	transition: 0.5s;
}

#navi ul li a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	padding: 10px 0;
	margin: 0px;
	box-sizing: border-box;
	transition: 0.5s;
}

#fix.fixed2 #navi ul li a {
	padding: 5px 0;
}

#navi ul li:nth-child(6) {
	background: none;
}

#navi ul li:nth-child(6) a {
	background: rgb(255,180,81);
	background: linear-gradient(180deg, rgba(255,180,81,1) 0%, rgba(255,102,65,1) 100%);
	padding: 10px 5px;
	box-sizing: border-box;
	color: #FFF;
	transition: 0.5s;
	border-radius: 5px;
}

#navi ul li a:hover {
	transition: 0.5s;
	color: #ed6e00;
}

#navi ul li:nth-child(6) a:hover {
	background: #e72318;
	color: #FFF;
	padding: 10px 5px;
	transition: 0.5s;
	border-radius: 5px;
}

	
/* 共通
--------------------------------------------------------------------------*/

#container {
	padding-top: 80px;
}

section {
	padding-bottom: 30px;
}

.column2 {
	width: 100%;
	float: none;
	margin-right: 0%;
}

.column2:nth-child(2n) {
	margin-right: 0;
}

.column3 {
	width: 100%;
	float: none;
	margin-right: 0%;
}

.column3:nth-child(3n) {
	margin-right: 0;
}

.column4 {
	width: 48%;
	float: left;
	margin-right: 4%;
}

.column4:nth-child(4n) {
	margin-right: 4%;
}

.column4:nth-child(2n) {
	margin-right: 0;
}

.column5 {
	width: 19.2%;
	float: left;
	margin-right: 1%;
}

.column5:nth-child(5n) {
	margin-right: 0;
}

.left70 {
	width: 100%;
	float: none;
	margin-right: 0%;
}

.right30 {
	width: 100%;
	float: none;
	margin-right: 0%;
}

/* フッター
--------------------------------------------------------------------------*/

#footer {
	background: url("../img/footer/grabg.jpg") center center no-repeat;
	background-size: cover;
	padding: 40px 0 20px;
}

#footer_left {
	float: none;
}

#footer_left p {
	font-size: 90%;
	text-align: center;
}

#footer_left p:nth-child(1) {
	margin-bottom: 30px;
}

#footer_right {
	float: none;
}

#footer_right p {
	text-align: center;
}

address {
	background: #000;
	padding: 25px 0;
	font-style: normal;
	font-size: 80%;
	color: #FFF;
}


/* コンテンツ
--------------------------------------------------------------------------*/

.box {
	background: #FFF;
	padding: 30px 20px 10px;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.caption {
	border: 1px solid #ff8848;
	margin-bottom: 20px;
}

.caption h4 {
	background: #ff8848;
	color: #FFF;
	padding: 7px 0;
	margin-bottom: 10px;
}

.caption p {
	text-align: center;
	margin-bottom: 10px;
}

/* section1
-------------------------------------*/

#main01 {
	background: url("../img/content/top/section1.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

#cyclone {
	margin-top:-100px;
	padding-top:100px;
}

#video_block {
	height: 400px;
    position: relative;
    z-index:0;
	overflow: hidden;
	margin-bottom: 20px;
}

#video_block video {
	min-width:80%;
    min-height:80%;
    position: relative;
    top: 0%;
	left: 50%;
    transform: translateX(-50%);
	display: block;
}

/* section2
-------------------------------------*/

#main02 {
	background: url("../img/content/top/section2.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

#log {
	margin-top:-150px;
	padding-top:150px;
}

/* section3
-------------------------------------*/

#main03 {
	background: url("../img/content/top/section3.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

#chip {
	margin-top:-150px;
	padding-top:150px;
}

/* section4
-------------------------------------*/

#main04 {
	background: url("../img/content/top/section4.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

#bandler {
	margin-top:-150px;
	padding-top:150px;
}

/* section5
-------------------------------------*/

#main05 {
	background: url("../img/content/top/section5.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

#sludge {
	margin-top:-150px;
	padding-top:150px;
}

/* section6
-------------------------------------*/

#main06 {
	background: url("../img/content/top/section6.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

#contact {
	margin-top:-150px;
	padding-top:150px;
}

/* section7
-------------------------------------*/

#main07 {
	background: url("../img/content/top/section7.jpg") top center no-repeat;
	background-size: cover;
	padding: 150px 0;
}

.normalTbl table td,
.normalTbl table th {
	width: auto;
	display: block;
}

.normalTbl2 table td,
.normalTbl2 table th {
	width: auto;
	display: block;
}

.formButton input[type="submit"] {
-webkit-appearance: none;
}



} /* /@media */
