@charset "utf-8";
/*================================================
 CSS Ver.1.00
=================================================*/

body {
	color: #333333;
	background-color: #FFFFFF;
	font-size: 75%;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", "Lucida Grande", Helvetica, sans-serif;
}

@media (max-width: 640px) {
body {
	color: #333333;
	background-color: #FFFFFF;
	font-size: 95%;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", "Lucida Grande", Helvetica, sans-serif;
}
}

html>/**/body {
font-size: 12px;
}

hr {
	border-top: 1px solid #ff8b25;
	margin-bottom: 2.0em;
}

img {
	vertical-align: top;
}

.pc {
}

@media (max-width: 1230px) {
.pc {
	display: none;
}
}

.sp {
	display: none;
}

@media (max-width: 1230px) {
.sp {
	display: block;
}
}

/*------------------------------------------------
	Header
-------------------------------------------------*/

header {
	width: 100%;
	top: 0;
	left: 0;
	padding: 0;
	border-top: 8px solid #ff8b25;
	background-color: rgba(255,255,255,0.9);
	display: inline-block;
	position: fixed;
}

#header_l {
	float: left;
	margin: 0;
	padding: 0;
}

#header_r {
	text-align: right;
	float: right;
	margin: 0;
	padding: 0 0.8em 0 0;
}




header h1 {
	margin: 0;
	padding: 0 0 0 0.8em;
}

.header_menu {
float: left;
padding-right: 0.8em;
}

.header_menu li {
	float: left;
	height: 50%;
	text-align: center;
	border-left: 1px solid #e9e9e9;
	vertical-align: middle;
	display: table;
	width: 120px;
	box-sizing: border-box;
}

.menu_inner {
	height: 50px;
  display: table-cell;
  vertical-align: middle;
}

.menu_border_end {
	border-right: 1px solid #e9e9e9;
}

.menu_border_bottom {
	border-bottom: 1px solid #e9e9e9;
}

.all0 {
	margin: 0;
	padding: 0;
}


/*------------------------------------------------
	Menu
-------------------------------------------------*/

menu ul {
	width: 100%;
	background-color: #ff8b25;
	z-index: 10001;
	position: fixed;
	top: 0;
	right: 0;
	margin: 0 0 1.0em 0;
	padding:8px 1.0em;
	list-style:none;
	display: inline-block;
}


@media screen and (min-width: 720px) {
menu li {
	font-size: 1.2em;
	padding-right: 1.0em;
	float: right;
}
}

@media screen and (max-width: 719px) {
menu li {
	font-size: 0.9em;
	padding-right: 1.0em;
	float: right;
}
}

.mbtn,
a.mbtn {
	color: #fff;
	background-color: #FF8B25;
	box-sizing: border-box;
	float: left;
}
.mbtn:hover,
a.mbtn:hover {
	color: #fff;
	background-color: #FFA04D;
	box-sizing: border-box;
}




/*------------------------------------------------
	Menu
-------------------------------------------------*/

#dropmenu{
	width: 200px;
	position: fixed;
	top: 0;
	right: 0;
	list-style-type: none;
	width: 300px;
	height: 40px;
	padding: 0;
	background: #ff8b25;
	border-radius: 3px 3px 0 0;
	position: 
}

#dropmenu li{
	position: relative;
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}

#dropmenu li a{
	display: block;
	margin: 0;
	padding: 15px 0 11px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
}

#dropmenu li ul{
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 3px 3px;
}

#dropmenu li:last-child ul{
	left: -100%;
	width: 100%
}

#dropmenu li ul li{
	overflow: hidden;
	width: 200%;
	height: 0;
	color: #fff;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#dropmenu li ul li a{
	padding: 13px 15px;
	background: #ff8b25;
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}

#dropmenu li:hover > a{
	background: #ff8b25;
	color: #FFFFFF;
}


#dropmenu li:hover ul li{
	overflow: visible;
	height: 38px;
}

#dropmenu li:hover ul li:first-child{
	border-top: 0;
}

#dropmenu li:hover ul li:last-child{
	border-bottom: 0;
}





/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

.drawer-item {
	text-align: left;
	font-size: 1.5em;
	padding: 0.5em;
}

.drawer-list {
	text-align: left;
	padding: 0.5em;
}



/*------------------------------------------------
	Top
-------------------------------------------------*/

#bg_top {
	width: 100%;
	background-image: url(../image_common/bg_top.jpg);
	background-position: bottom;
	background-size: cover;
	background-attachment: fixed;
}


#bg_3step {
	width: 100%;
	background-image: url(../image/bg_3step.png);
	background-position: bottom;
	background-size: cover;
	background-attachment: fixed;
}




/*------------------------------------------------
	BG
-------------------------------------------------*/

#main_top {
	background-image: url(../image/bg_main_top.jpg);
	background-position: bottom center;
	background-size: cover;
	margin-top: 108px;
}

#main_3step {
	background-image: url(../image/bg_main_3step.jpg);
	background-position: top center;
	background-size: cover;
}

#main_boperation {
	background-image: url(../image/bg_main_boperation.jpg);
	background-position: top center;
	background-size: cover;
}

#main_flow {
	background-image: url(../image/bg_main_flow.jpg);
	background-position: bottom center;
	background-size: cover;
}

#main_result {
	background-image: url(../image/bg_main_result.jpg);
	background-position: top center;
	background-size: cover;
}

#main_charge {
	background-image: url(../image/bg_main_charge.jpg);
	background-position: bottom center;
	background-size: cover;
}

#main_cleaning {
	background-image: url(../image/bg_main_cleaning.jpg);
	background-position: bottom center;
	background-size: cover;
}

#main_faq {
	background-image: url(../image/bg_main_faq.jpg);
	background-position: bottom center;
	background-size: cover;
}

#main_something {
	background-image: url(../image/bg_main_something.jpg);
	background-position: bottom center;
	background-size: cover;
}

#main_etc {
	background-image: url(../image/bg_main_etc.jpg);
	background-position: top center;
	background-size: cover;
}

.bg_cleaning {
	background-image: url("../image_common/bg_cleaning.png");
	background-repeat: repeat-x;
	height: 150px;
	width: 100%;
	padding: 1.0em;
}
	
.bgc_orange {
	background-color: rgba(255,139,37,0.05);
}

.bgc_orange100 {
	background-color: #ff8b25;
}

.bgc_white {
	background-color: #FFFFFF;
}




/*------------------------------------------------
	Contents
-------------------------------------------------*/

section {
	width: 100%;
	display: inline-block;
}

section h1 {
	width: 100%;
	text-align: center;
	font-size: 3.0em;
	line-height: 100%;
	color: #FFFFFF;
	font-weight: bold;
	padding: 1.0em 0;
}

section h2 {
	font-size: 2.0em;
	line-height: 100%;
	color: #ff8b25;
	font-weight: bold;
	padding-bottom: 0.5em;
}


section h3 {
	font-size: 1.8em;
	line-height: 130%;
	color: #FFFFFF;
	background-color: #ff8b25;
	font-weight: bold;
	padding: 0.4em;
	border-radius: 20px;
	text-align: center;
	margin-bottom: 0.5em;
}

.containar {
	display: inline-block;
	padding-bottom: 2.0em
}


.lh2 {
	line-height: 200%;
}

.contents p {
	font-size: 1.4em;
	line-height: 140%;
}

.contents {
	max-width: 960px;
	margin: 0 auto;
	padding: 2.0em 1%;
}

.contents2 {
	max-width: 960px;
	margin: 0 auto;
	padding: 1.0em 1% 3.0em 1%;
}

.box_0 {
	width: 100%;;
	display: inline-block;
}

.box_1 {
	width: 100%;
	margin-bottom: 1.0em;
	display: inline-block;
}

.box_2 {
	width: 100%;
	margin-bottom: 2.0em;
	display: inline-block;
}

.box_4 {
	width: 100%;
	padding-bottom: 4.0em;
	display: inline-block;
}

.box70 {
	width: 70%;
	margin: 0 15% 4.0em 15%;
	display: inline-block;
}

.box100 {
	width: 100%;
	display: inline-block;
}

.box960 {
	max-width: 960px;
	margin: 0 auto;
}

.box_border {
	width: 90%;
	margin: 0 5% 2.0em 5%;
	padding: 2.0em;
	border: 2px solid #ff8b25;
	background-color: #FFFFFF;
	box-sizing: border-box;
	display: inline-block;
}

.box_q {
	width: 100%;
	display: inline-block;
}

.box_border_0 {
	width: 90%;
	margin: 0 5%;
	padding: 2.0em;
	border: 2px solid #ff8b25;
	background-color: #FFFFFF;
	box-sizing: border-box;
	display: inline-block;
}

.box_block {
	width: 80%;
	float: right;
}


.box_c {
	width: 100%;
	font-size: 1.8em;
	text-align: center;
	padding: 3.0em 0;
}

.box_c2 {
	width: 100%;
	text-align: center;
}

.box_3c {
	width: 30%;
	float: left;
	padding-bottom: 2.0em;
}

.box_3c2 {
	width: 30%;
	padding: 0 5% 2.0em 5%;
	float: left;
}

.next {
	max-width: 760px;
	margin: 4.0em auto;
}


.main_border {
	border-bottom: 8px solid #ff8b25;
}

.faqtxt {
	width: 92%;
	display: inline-block;
}


#bottom_contact {
	width: 100%;
	text-align: center;
	padding-bottom: 4.0em;
}

#bottom_contact img {
	width: 20%;
	margin: 0 1.0em;
}

.mailform table {
	width: 100%;
}

.mailform th {
	font-size: 1.4em;
	padding: 0.5em;
}

.mailform td {
	font-size: 1.4em;
	padding: 0.5em;
}


details {
  transition: 0.5s;
}

summary  {
	outline: none;
	cursor: pointer;
}

summary::-webkit-details-marker  {
	background: none;
	color: transparent;
}

/*------------------------------------------------
	Footer
-------------------------------------------------*/

footer {
	width: 100%;
	background-color: #ff8b25;
	display: inline-block;
	color: #FFFFFF;
}



.footer_box_l {
	float: left;
}

.footer_box_r {
	float: right;
	text-align: right;
}

#copyright {
	width: 100%;
	text-align: center;
	padding-top: 3.0em;
	display: inline-block;
}

footer ul {
	padding-bottom: 1.0em;
	list-style:none;
	display: inline-block;
}

footer li {
	padding-right: 1.0em;
	float: left;
}



/*------------------------------------------------
	Image
-------------------------------------------------*/

.image_2 {
	margin-bottom: 2.0em;
}

.image_3 {
	margin-bottom: 3.0em;
}

.image_4 {
	margin-bottom: 4.0em;
}

.image_6 {
	margin-bottom: 6.0em;
}

.image_r {
	margin-left: 2.0em;
	float: right;
}

.icon {
	width: 18%;
	margin-right: 2%;
	float: left;
}

.icon2 {
	width: 6%;
	margin-right: 2%;
	float: left;
}





/*------------------------------------------------
	Fonts
-------------------------------------------------*/

.color_red {
	color: #e30000;
	font-weight: bold;
}

.color_orange {
	color: #ff8b25;
	font-weight: bold;
}

.color_blue {
	color: #2A9FFF;
}

.bold {
	font-weight: bold;
}

.font_s {
	font-size: 0.8em;
}

.font_l {
	font-size: 1.2em;
}

.font_ll {
	font-size: 1.6em;
}

.font_margin {
	margin-bottom: 0.8em;
}

.font_margin2 {
	margin-bottom: 1.5em;
}

.font_margin3 {
	margin-bottom: 3.0em;
}

.font_tx {
	font-size: 1.7em !important;
	line-height: 140% !important;
}

.font_tx2 {
	font-size: 1.9em !important;
	line-height: 140% !important;
}

.font_coments {
	font-size: 1.6em;
	line-height: 1.4em;
}

.font_right {
text-align: right;
}

.coment {
	width: 100%;
	text-align: right;
	font-size: 0.8em;
	padding-top: 0.6em;
}

.underline {
	text-decoration: underline;
}

.marker {
	background-color: #FFFE79;
	color: #e30000;
	font-weight: bold;
}

.marker2 {
	background-color: #FFFE79;
	font-weight: bold;
}




/*------------------------------------------------
	Table
-------------------------------------------------*/

#company table {
	width: 90%;
	margin: 0 5%;
}

#company td {
	font-size: 1.5em;
	padding: 0.5em 1.0em;
	border: 1px solid #ffae39;
}

#company th {
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
	background-color: #ff8b25;
	font-size: 1.5em;
	padding: 0.5em 1.0em;
	border: 1px solid #ffae39;
}

.mf {
	padding: 0.5em 0.8em;
	font-size: 1.3em;
	border:solid 1px #ff8b25;
	margin-bottom: 1.5em;
	width: 96%;
}

.mf_button {
	border: 1px solid #ff8b25;
	padding: 0.5em 1.0em;
	font-size: 1.5em;
	text-transform: uppercase;
	font-weight: bold;
	color: #FFFFFF;
	cursor: pointer;
	background-color: #ff8b25;
}

.mf_box {
	width: 76%;
	padding: 2%;
	margin: 0 10%;
	border: solid 4px #ff8b25;
}

.list{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  border: 3px solid #FF8B25;
  font-size: 1.3em;
}

.list  td{
  padding: 0.5em 1.0em;
  text-align: center;
    border: 1px solid #FF9C46;
}

.list  th {
  padding: 0.5em;
  text-align: center;
     border: 1px solid #FF9C46;
	 background-color: #ff8b25;
	 color: #FFFFFF;
}

.list tr:nth-child(odd){
  background-color: #F9F9F9;
}

.align_l {
	text-align: left !important;
}

.ub {
	width: 100%;
	border-bottom: 1px solid #FF8B25;
	padding: 0 !important;
	margin-bottom: 1.0em;
	line-height: 100% !important;
}


/*------------------------------------------------
	Side Menu
-------------------------------------------------*/

#sidemenu {
	width: 10%;
	max-width: 300px;
	min-width: 150px;
	text-align: right;
	vertical-align: bottom;
	position: fixed !important;
	position: absolute;
	bottom: 1.0em;
	right: 1.0em;
	z-index: 1001;
	display: inline-block;
}


.btn,
a.btn,
button.btn {
	margin: 0 auto;
	width: 50%;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff !important;
  background-color: #FF8B25;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff !important;
  background: #FF8B25;
  width: 52%;
}

a.btn--radius {
  border-radius: 100vh;
}

	

/*------------------------------------------------
	Video
-------------------------------------------------*/

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom: 1.0em;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}





/*------------------------------------------------
	Link
-------------------------------------------------*/

a:link, a:visited {
	color: #ff8b25;
	text-decoration: none;
}

a:hover, a:active {
	color: #ff8b25;
	text-decoration: none;
	font-weight: bold
}

.white a:link {
	color: #FFFFFF;
	text-decoration: none;
}


.white a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

.white a:hover, a:active {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}




