@charset "utf-8";


@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=chevron_right');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+HK:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url("slide.css");
@import url("inview.css");


:root {
	--text-color: #eee;

	--primary-color: #02354e;
	--primary-color-hover: #C1DA74;
	--primary-inverse-color: #eee;
	--primary-inverse-color2: #2A371C;
	--primary-st-color: #BADA55;

	--global-space: 5vw;
	--site-width: 980px;
	--font_0: normal bold 25px / 1.4em "Roboto", sans-serif;
	--font_1: normal normal normal 16px / 1.4em din-next-w01-light, sans-serif;
	--font_2: normal normal normal 37px / 1.4em "Roboto", sans-serif;
	--font_4: normal bold  30px / 1.4em "Roboto", sans-serif;
	--font_5: normal normal normal 25px / 1.4em "Roboto", sans-serif;
	--font_6: normal normal normal 22px / 1.4em "Roboto", sans-serif;
	--font_7: normal normal normal 16px / 1.4em "Roboto", sans-serif;
	--font_8: normal normal normal 15px / 1.4em "Roboto", sans-serif;

	--color_11: rgb(255, 255, 255);
	--color_18: rgb(43, 71, 66);
	--color_37: rgb(0,0,0);
	--color-footer: #C1DA74;
	--brd: rgb(186, 218, 85);

	--bg-overlay1-color: rgb(42, 55, 28);
	--bg-overlay2-color: rgb(193, 218, 116);
	--bg-overlay-color: rgb(193, 218, 116);


	--trans2: color 0.4s ease 0s;
}
.font_0 {
    font: var(--font_0);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}
.font_2 {
    font: var(--font_2);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}
.font_6 {
    font: var(--font_6);
    color: rgb(var(--color_45));
    letter-spacing: 0em;
}
.font_7 {
    font: var(--font_7);
    color: rgb(var(--color_15));
    letter-spacing: 0em;
}

.font_8 {
    font: var(--font_8) ;
    letter-spacing: 0em ;
	font-size: 18px;
}
.font_8_1 {
	font: var(--font_8);
    color: var(--color_37);
    color: var(--color_18);
    letter-spacing: 0em;
}


/*animation1
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeIn
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}


/*全体
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;
}

	/*画面幅900px以上指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;
		}

	}


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	/*font-weight: 300;*/
	-webkit-text-size-adjust: none;
	background-color: #000;
	color: var(--text-color);
	line-height: 2;
}
body {
	background-color: white;
    opacity: 0;
    transition: opacity 1.0s ease-in;
}
body.loaded {
    opacity: 1;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
section li {margin-left: 1rem;}

table {border-collapse:collapse;}

img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

video {max-width: 100%;}

iframe {width: 100%;}

input {font-size: 1rem;}
section + section {
	/* margin-top: 3rem; */
}



/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);
	transition: 0.3s;
}

a:hover {
	text-decoration: none;
	color: var(--primary-color-hover);
}


/*コンテナー
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: var(--global-space);
	padding: 12vw 0 0;
}
body:not(.home) #contents{
/* #contents:not(.home) { */
	padding: 12vw 0 0;
}
.contact #contents {
	padding: 0.1vw 0 0 !important;
	background-color: var(--corvid-background-color, var(--bg-overlay1-color));
}

	/*画面幅600px以下指定*/
	@media screen and (max-width:600px) {

		#contents {
			padding-top: 80px;
		}
		body:not(.home) #contents{
			padding-top: 80px;
		}

	}


/*header
---------------------------------------------------------------------------*/
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	padding: 4vw 0;
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
    position: absolute;
    z-index: 1;
}

	/*画面幅900px以上指定*/
	@media screen and (min-width:900px) {

		/*ヘッダーブロック*/
		header {
			position: fixed;
			margin-left: calc((100% - var(--site-width)) / 2);
			width: var(--site-width);
		}

	}

/*ロゴ*/
#logo img {
	display: block;
	width: 202px;
}

/*ロゴ*/
#logo a {
	display: block;text-decoration: none;
	font-size: 1.2rem;
	font-weight: 800;
}

h1{
	margin: 0;
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

#menubar li.current > a {
	color: #ee6813;	/*文字色*/
}


.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

#menubar_hdr.display-none {display: none;}

.ddmenu_parent ul {display: none;}

a.ddmenu {cursor: default;}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	margin-right: 0.5em;
}

/*fixmenu設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
@media screen and (min-width:900px) {
	body.is-fixed-menu #menubar.nav-fix-pos,
	body.is-fixed-menu #logo.nav-fix-pos {
		position: fixed;
		position: relative;
		width: 100%;
		top: -100px;
		background: #fff;
		background: rgba(255,255,255,0.95);
	}
	body.is-fixed #menubar.nav-fix-pos {
		position: fixed;
		width: 100%;
		top: 0px;
		background: #fff;
		background: rgba(255,255,255,0.95);
	}
	body.is-fixed #contents {
		margin-top: 75px;
	}

}


/*メニューブロック設定
---------------------------------------------------------------------------*/
.large-screen #menubar > nav > ul {
	display: flex;
	font-size: 0.75rem;
	gap: 0.5rem;
}

.large-screen #menubar li a {
	/* border-radius: 100px;	 */
	padding: 0.2rem 1rem;
	/* text-shadow: 0px 0px 5px rgba(77, 76, 76, 0.5); */
}

.large-screen #menubar li a:hover {
	color: var(--primary-color-hover);
}


/*ドロップダウンメニュー設定
---------------------------------------------------------------------------*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
}

/*メニュー*/
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;
}


/*開閉ブロック
---------------------------------------------------------------------------*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: var(--bg-overlay1-color);
	animation: animation1 0.2s both;
}

.small-screen #menubar nav ul li {
	text-align: center;
	margin: 1rem;
	border-radius: 5px;
	padding: 0 2rem;
	font: var(--fnt, var(--font_1));
}
.small-screen #menubar a {
	padding: 1rem;
}


.small-screen #menubar, .small-screen #menubar a {
	color: #fff;
}

/*900px以下ブロック*/
#menubar .sh {
	font-weight: normal;
	padding: 1rem 2rem 2rem;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	/* right: 3vw;
	right: 0; */
	/* left:0; */
	/* right:calc(100% - 0px); */
	right:3vw;
	top: 1vw;
	padding: 16px 14px;
	width: 46px;
	height: 46px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 2px solid #fff;
}

#menubar_hdr.ham {
	background: #fff;
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;
	border-color: var(--bg-overlay1-color);
}

#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);
}

#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);
}

#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}


/*main
---------------------------------------------------------------------------*/
main h2 {
	/* font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-size: 3rem; */
	letter-spacing: 0.1em;
	font:var(--font_4);
	color: var(--primary-inverse-color);
}
body:not(.home) main h2{
	font:var(--font_0);
	font-size:56px;
	font-weight:normal;
	letter-spacing: 0em;
	margin-bottom: 20px !important;
}
@media screen and (max-width:500px) {
body:not(.home) main h2 {
    font-size: 40px;
    margin-bottom: 20px !important;
}
}
.gasbusiness main h2,
.cleaningcenter main h2{
	font-size: 37px !important;
}

.bg1 h2 {
	color: var(--primary-inverse-color);
}
.bg2 h2 {
	color: var(--primary-inverse-color2);
}

main h2 .hosoku {
	display: block;
	font-size: 18px;
	letter-spacing: 0em;
}

main h3 {
	display: inline-block;
	border-bottom: 3px solid var(--text-color);
}


/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 5rem;
}

	/*画面幅900px以上指定*/
	@media screen and (min-width:900px) {

	/*カラムで使う為の指定*/
	main.column {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
	}

	.main-contents {
		margin-bottom: 0;
		order: 2;
		flex: 1;
	}

	.sub-contents {
		width: 230px;
	}

	.sub-contents:nth-child(2) {
		order: 1;
	}

	.sub-contents:nth-child(3) {
		order: 3;
	}

	}


/*サブコンテンツ設定
---------------------------------------------------------------------------*/
.sub-contents h3 {
	display: block;
	margin: 0;
	text-align: center;
	border-radius: 5px 5px 0px 0px;
	border: 1px solid #ccc;
	background: linear-gradient(transparent, rgba(0,0,0,0.03));
	padding: 0.5rem 0;
}


/*サブメニュー
---------------------------------------------------------------------------*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;
}

.submenu a {
	display: block;text-decoration: none;
	padding: 0.2rem 1rem;
}

.submenu > li {
	border: 1px solid #ccc;
	border-top: none;
}

.submenu li li a {
	padding-left: 2rem;
}

.sub-contents h3 + nav .submenu {
	border-top: none;
}


/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	margin: 0 !important;
	padding: 20px;
	text-align: center;
	font-size: 0.8rem;
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;
	padding: 0 10px;
}


/*フッター設定
---------------------------------------------------------------------------*/

footer {
    padding-top: 99px !important;
	padding-bottom:10px !important;
}
footer .inner {
    /* padding: 0 0 0 15%; */
    padding-left: 40px;
    font-size: 0.85rem;
}
footer .inner .info{
    font-size:16px;
	color: var(--color-footer);
}
footer .inner .info p{
	padding-top:50px;
	padding-bottom:30px;
	line-height:1.4;
}
footer .inner .info span{
	font-weight:bold;
	padding-bottom:10px;
}
footer small {font-size: 100%;}


/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}
#copyright{
	text-align:center;
	font-size:12px;
	padding-bottom:10px;
}

@media screen and (max-width:500px) {
	footer .inner {
		padding-left: 0px;
		font-size: 12px;text-align:center;
	}
	footer .inner .info p{
		padding-top:15px;
		padding-bottom:0px;
	}
	}


/*テキストフェードイン設定
---------------------------------------------------------------------------*/
.fade-in-text {
    visibility: hidden;
}
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.05s linear both;
}

/*お知らせブロック
---------------------------------------------------------------------------*/
.new dd {
	padding-bottom: 1rem;
}


.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;
	border-radius: 3px;
	width: 8rem;
	transform: scale(0.8);
	background: #fff;
	color:#777;
	border: 1px solid #333;
}

/*icon-bg1*/
.new .icon-bg1 {
	background: #333;
	color: #fff;
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;
	color: #fff;
}

	/*画面幅700px以上指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
	}

	}



/*inner設定
---------------------------------------------------------------------------*/
.inner{
	width:980px;
	/* width:calc(100% - 10vw); */
	margin: 0 auto;
}

	/*画面幅700px以上指定*/
	@media screen and (max-width:980px) {

		.inner{
			width:100% !important;
			margin: 0 auto;
		}

	}

/*list-grid1
---------------------------------------------------------------------------*/
.list-grid1 {
	display: grid;
	color: #555;
	padding-bottom: 250px;
	padding-bottom: 100px;
}

.list-grid1 .list {
    display: grid;
}

.list-grid1 .list * {
	margin: 0;padding: 0;
}

.list-grid1 .list p {
	font-size: 0.85rem;
}

	/*画面幅500px以上指定*/
	@media screen and (min-width:500px) {
		.list-grid1 {
			grid-template-columns: repeat(1, 1fr);
			/*gap: 1rem;*/
	}

	}
	/*画面幅800px以上指定*/
	@media screen and (min-width:800px) {
		.list-grid1 {
			grid-template-columns: repeat(2, 1fr);
			/*gap: 1rem;*/
		}

	}

.top-grid{
	grid-template-columns: repeat(1, 1fr) !important;
}

/*ボックス１個あたり*/
.list-grid1 .list {
    grid-template-rows: auto 1fr;
	position:relative;
	text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}
.list-grid1 h4{
	font-size: 30px;
	letter-spacing: 0.01em;
	line-height: 2.9;
}
.home .list-grid1 h4{
	line-height: 1.4;
	/* margin-top: 1em; */
	
}


.home .list-grid1 .list{
  width: 100%;
  height: 450px;
  
  background-size: cover;
 /*  background-position: center; */
  background-repeat: no-repeat;
}
.home .list-grid1 .img01{
	background-image: url("../images/img_1.jpg");
}
.home .list-grid1 .img02{
	background-image: url("../images/img_2.jpg");
}
.home .list-grid1 .img03{
	background-image: url("../images/img_4.jpg");
}
.home .list-grid1 .list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* スマホ用：全体が収まるように */
@media (max-width: 500px) {
  .home .list-grid1 .list{
	width: 100%;
	height: 428px;
    /* background-size: contain; */
    /* background-position: top center;
    height: auto; */
  }
  .home .list-grid1 .img01 {
	background-image: url("../images/img_1_sp.jpg");
  }
  .home .list-grid1 .img02 {
	background-image: url("../images/img_2_sp.jpg");
  }
  .home .list-grid1 .img03 {
	background-image: url("../images/img_4_sp.jpg");
  }
  .home .list-grid1 h4{
	line-height: 1.4;
	/* margin-top: 0.5em; */
}
}
@media (max-width: 350px) {
  .home .list-grid1 .list {
	height: 370px;
  }
}


@media screen and (max-width:500px) {
	.list-grid1 {
		padding-bottom: 0px;
	}
	/* .home .list-grid1 .text{
		top: 10px !important;
	}
	.home .list-grid1 h4{
		font-size: 20px;
		margin-top: 0em;
		line-height: 2.0;
	}
	.home .list-grid1 h4 span {
		font-size: 15px;
	}
	.home .list-grid1 .text p {
    	font-size: 12px;
	} */
}
.list-grid1 h4 span{
	color: #C1DA74;
	font-size: 20px;
}

.list-grid1 .list figure{
	/* background-color:black; */
	display:inline-block;
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
	/* margin-bottom: 0.5rem; */

	/* opacity: 0.7; */
	display:block;
}

.list-grid1 .text {
	position:absolute;
	top: 180px;
	color:#fff;
	text-align: center;
	width:100%;
}
.mt-5{
	margin-top: -35px !important;
}
.home .list-grid1 .text {	
	top: 50px;
	position: relative;
	z-index: 2;
}
.home .list-grid1 .text img.icon{
	width:8vw;
}

.home .list-grid1 .text h4.cc-logo img{
	width:60%;
	margin-right: auto;
	margin-left: auto;
	line-height:2;
}

@media screen and (max-width:500px) {
	.home .list-grid1 .text img.icon{
		width:20vw;
	}
	.home .list-grid1 .text h4.cc-logo{
		line-height:4 !important;
	}
	.home .list-grid1 .text h4.cc-logo img{
		width:80%;
	}
}

.home img.top_recicle{
	margin-top: -15px !important;
	margin-bottom: 30px !important;
}

.list-grid1 .text p {
	font-size: 16px;
	font-weight:bold;
	width:58%;
	/* margin: 0px 0px 34px calc((100% - 490px)* 0.5); */
	margin: 30px 0px 34px ;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.home .list-grid1 .text p {
	width:67%;
	width:80%;
    margin: 10px auto 20px ;
}
.list-grid1 .text p.wd {
	width:74% !important;
}
.list-grid1 .text p.wd2 {
	width:74% !important;
	padding: 20px 0 30px !important;
}
.list-grid1 .text .btn a {
    display: block;
    text-decoration: none;
	/* text-shadow: rgba(0, 0, 0, 0.0) !important; */
    font-size: 1rem;
	font-weight:normal !important;
    text-align: center;
    border: #fff 1px solid !important;
	background: none !important;
    color: var(--primary-inverse-color) !important;
	width:50%;
	width:35%;
    padding: 0.2rem !important;
	margin: 30px auto !important ;
}

.gasbusiness .list-grid1 .text p {
    width: 100%;
}

.gasbusiness .list-grid1 .text .btn a {
	font-style: normal;
	font-size: 30px;
    font-weight: bold !important;
	width: 60%;
	padding:10px 0 !important;

}
.shdwnone{
	text-shadow: none !important;
}
.shdw-1{
	text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 5px;
}
.list-grid1 .text .btn a:hover{
	background-color: #9eb361 !important;
}

@media screen and (max-width:500px) {
	.list-grid1 .text {
		top: 10px;
	}
	.gasbusiness .list-grid1 .text .btn a {		
		width: 90%;
		padding:80px 0 !important;	
	}
	.home .list-grid1 .circle {
		font-size: 18px;
		width: 75px;
		height: 78px;
		line-height: 1.2;
	}
	
}
@media screen and (max-width: 350px) {
    .home .list-grid1 .text p {
		font-size: 12px !important;
		width: 90% !important;
		margin: 10px auto !important;
	}
	.home .list-grid1 .text p.btn {
		font-size: 16px;
	}
}

.circle{
/* .list-grid1 .text .circle{ */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    /* background: #ff0000; */
    border: 1px solid #fff;
    color: #fff;
    width: 102px;
    height: 105px;
    line-height: 1.5;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 30px;
    top: -30px;
	letter-spacing: 0.15em;
	padding-left:5px
}
.cleaningcenter .circle{
	top: 0px;
	left: 25%;
	transform: translateX(-25%);
}
@media screen and (max-width:500px) {
	.cleaningcenter .circle{
		top: 0px;
		left: 5%;
		transform: translateX(-5%);
	}
	.home .list-grid1 h4 {
		font-size: 24px;
		line-height: 2.0 !important;
	}
	.home .list-grid1 .text .btn a {
		font-size: 1.3rem !important;
		width: 50%;
		padding: 0.5rem 1rem!important;
		letter-spacing: 1.1px;
		font-weight:500 !important;
	}
	
}
@media screen and (max-width:1090px) {
	.home .list-grid1 h4 {
		line-height: 1.0;
	}
	.home .list-grid1 .text p {
		font-size: 13px;
		width: 80%;
		line-height: 1.7;
		padding-right: 10px;
		padding-left: 10px;
	}
	.home .list-grid1 .text p.btn {
		line-height: 2;
	}
	.sp-mt-5{margin-top: -1em !important;}
	
}

/*list-grid2
---------------------------------------------------------------------------*/
.inner-wd{
	/* display: flex;
    justify-content: center;
	align-items: center; */
	/* width:900px; */
	margin: 0 auto;
}
.list-grid2 {
	display: grid;
	color: #fff;
}

.list-grid2 .list {
    display: grid;
}

.list-grid2 .list * {
	margin: 0;padding: 0;
}

.list-grid2 .list p {
	font-size: 0.85rem;
}

	/*画面幅500px以上指定*/
	@media screen and (min-width:500px) {

	.list-grid2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	}


	/*画面幅800px以上加指定*/
	@media screen and (min-width:800px) {

	.list-grid2 {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	}


.list-grid2 .list {
	padding: 1rem;
    grid-template-rows: auto 1fr;
	text-align: center;
}

.list-grid2 .list figure img {
	margin-bottom: 0.5rem;
	width:40%;
}
.list-grid2 .list h4{
    font: var(--font_5);
    letter-spacing: 0em;
}
.list-grid2 .list p{
	font-size: 16px !important;
	font: var(--font_8);
}

.keeper .list .text p{
	font: var(--font_8);
	color: var(--primary-inverse-color2);
	text-align: left;
}
.keeper .list figure img{
	width:66px;
	float: left;
	margin-left: -20px;
}
/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.gasstation .keeper .list figure{
		text-align: center;

		margin-right: auto;
		margin-left: auto;
		clear:both;
	}
	.gasstation .keeper .list figure img{
		width:90px;
	}

}

.cleaningcenter .list-grid2 .list{
	position: relative;
}
.cleaningcenter .list-grid2 .list {
	padding: 0rem;
    grid-template-rows: auto 1fr;
	text-align: center;
}
.cleaningcenter .list-grid2 .list figure img {
	width:100%;
	margin-bottom: 0;
	/* filter: brightness(70%); */
}
@media screen and (max-width:500px) {
	.cleaningcenter .list-grid2 .list figure img {
  height: 180px;
  object-fit: cover;
	}
	
}
.cleaningcenter .list-grid2 .text{
}
.cleaningcenter .list-grid2 .text h4{
	font-weight: bold !important;
	width:100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cleaningcenter  .pettoflow .list figure img {
	filter: brightness(100%);
}
.cleaningcenter .pettoflow .text h4{
	font-weight: normal !important;
	font-size: 20px;
	position: initial !important;
	transform: translate(0,0);
	color: #2A371C;
}
.cleaningcenter .pettoflow .text p{
	font-weight: bold !important;
	position: absolute;
	top: -50px;
	left: -21px;
	color: #2A371C;
	font-size: 38px !important;
	width: 84px;
	height: 84px;
	padding-top: 13px;
	background: var(--bg-overlay-color);
	border-radius: 50%;
	text-align: center;
	box-sizing: border-box;
}
.cleaningcenter .pettoflow .list:not(:last-child)::after{
	font-family: 'Material Icons';
  	content: '\e5cc';
	position: absolute;
	top: 0;
	right: -70px;
	color: #2A371C;
	font-size: 4em;

	/* transform: translateY(50%); */
}

.cleaningcenter .pettoflow .iconbefore{
	padding-left:160px;
	padding-right:160px;
	margin-right: auto;
	margin-left: auto;
}

.cleaningcenter .pettoflow .iconbefore .list:not(:last-child)::after{
	content:'';
}
.cleaningcenter .pettoflow .iconbefore .list::before{
	font-family: 'Material Icons';
  	content: '\e5cc';
	position: absolute;
	top: 0;
	left: -70px;
	color: #2A371C;
	font-size: 4em;
}


/*画面幅500px以上指定*/
@media screen and (min-width:500px) {

	.cleaningcenter .pettoflow .list-grid2 {
		gap: 1rem;
	}
}
	/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.cleaningcenter .pettoflow .iconbefore{
		padding-left:5px;
		padding-right:5px;
	}
	.cleaningcenter .pettoflow .iconbefore .list::before{
		content:'';
	}
}

	


	/*画面幅800px以上加指定*/
	@media screen and (min-width:800px) {

	.cleaningcenter .pettoflow .list-grid2 {
		gap: 5rem;
	}
	.cleaningcenter .pettoflow .iconbefore .list-grid2 {
		grid-template-columns: repeat(2, 1fr);
	}

	}

.villamanagement .list-grid2 {
	padding-top: 30px;
}
.villamanagement .list-grid2 .list{
	color:#2A371C;
	padding:60px 40px 60px;
	background-color: #fff;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: flex-start;
}
.villamanagement .list-grid2 .list h4{
	font-family: "Kanit", sans-serif;
  	font-weight: bold;
	color:#C1DA74;
	font-size:20px;
	font-weight:bold;
	line-height:1.2em !important;
	letter-spacing: 0.2em;
	padding: 10px 0 30px;
}
.villamanagement .list-grid2 .list h5{
	text-align: center;
	font-size:25px;
	letter-spacing: 0em;
	line-height:1.4em !important;
	padding-bottom:60px;
}
.villamanagement .list-grid2 .list p{
	line-height:1.8em !important;
}
.villamanagement p.num {
    font-weight: bold !important;
    position: absolute;
    top: -25px;
    color: #2A371C;
    font-size: 38px !important;
    width: 84px;
    height: 84px;
    padding-top: 8px;
    background: var(--bg-overlay-color);
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
}

/*画面幅500px以上指定*/
@media screen and (min-width:500px) {

	.villamanagement .list-grid2 {
		gap: 1rem;
	}
	.villamanagement .list-grid2 .list{
		margin-bottom:30px;
	}
	.villamanagement p.num {
		/* top: 5px; */

		/* font-weight: bold !important;
		position: absolute;
		
		color: #2A371C;
		font-size: 38px !important;
		width: 84px;
		height: 84px;
		padding-top: 8px;
		background: var(--bg-overlay-color);
		border-radius: 50%;
		text-align: center;
		box-sizing: border-box; */
	}

}


/*画面幅800px以上加指定*/
@media screen and (min-width:800px) {

	.villamanagement .list-grid2 {
		gap: 0.5rem;
	}
	.villamanagement .list-grid2 {
		grid-template-columns: repeat(3, 1fr);
	}

}

/*管理メニュー*/
.villamanagement .menu{
	background-color: #fff;
	padding: 20px 30px 40px;
}
/*画面幅800px以上加指定*/
@media screen and (min-width:800px) {

	.villamanagement .menu .list-grid2 {
		gap: 3rem;
	}

}
.villamanagement .menu .list{
	display: block;
	border: 1px solid var(--bg-overlay1-color);
	padding: 30px 25px;
}
/*画面幅500px以上指定*/
@media screen and (min-width:500px) {
	.villamanagement .menu .list{
		margin-bottom:30px;
	}
}

.villamanagement .menu figure img{
	width: 26%;
}
.villamanagement .menu .list h5{
	font-size:20px;
	padding-top:30px;
	padding-bottom:50px;
}
.villamanagement .menu .list p{
	font-size:15px !important;
	line-height:1.4em !important;
}

/*list-grid4
---------------------------------------------------------------------------*/
.list-grid4 .list * {margin: 0;padding: 0;}

.list-grid4 .list {
    display: grid;
	margin-bottom: 1rem;
	padding: 2rem 3rem;
	padding: 1rem 1rem;
	grid-template-rows: auto 1fr auto;
}

.list-grid4 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.list-grid4 .list figure {
	margin-bottom: 0.5rem;
}

/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.list-grid4 .list {
		padding: 1rem 2rem 4rem;

		display: grid;
		margin-bottom: 1rem;

	}
}
	/*画面幅800px以上指定*/
	@media screen and (min-width:800px) {

		.list-grid4 {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 1rem;
			gap: 2rem 8rem;
		}

		.list-grid4 .list {
			margin-bottom: 0;
		}

	}

.list-grid4 .list h4{
	font: var(--font_8);
	font-size:20px;
	font-weight:bold;
	color:var(--primary-inverse-color2);
	letter-spacing: 0em;
	text-align: center;
	margin: 20px 0;
}
.list-grid4 .list p{
	font: var(--font_8);
	color:var(--primary-inverse-color2);
	letter-spacing: 0em;
}


.inner-1{
	background-color: var(--corvid-background-color, var(--bg-overlay-color));
}
.gasstation .inner-1{
	margin-bottom:210px;
}
/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.gasstation .inner-1{
		margin-bottom:0px;
	}

}
/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.gasstation .keeper .list figure{
		text-align: center;

		margin-right: auto;
		margin-left: auto;
		clear:both;
	}
	.gasstation .keeper .list figure img{
		width:90px;
	}

}

.gasstation .inner-1 .title{
	display: flex;
}
.inner-1 .title .fl1{
	width:50%;
	color: #2A371C;
	/* font-family: helvetica-w01-roman, helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif; */
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 30px !important;
    line-height: normal;
	font: var(--font_0);

	display: flex;
    justify-content: center;
	align-items: center;

}
@media screen and (max-width:500px) {

	.inner-1 .title .fl1 {
		font-size: 26px !important;
		padding:20px 0;
	}
}
.inner-1 .title .fl1 span{
	font-size:15px;
}
.inner-1 .title .fl2{
	width:50%;
}

.gasstation .inner-1 .title .fl2 img{
	/* height:270px; */
}

/*画面幅500px以下指定*/
@media screen and (max-width:500px) {

	.gasstation .inner-1 .title{
		display: block;
	}
	.inner-1 .title .fl1{
		width:100%;
		display: block;
		text-align: center;
	}
	.inner-1 .title .fl1 figure img{
		width:25%;
		margin-bottom: 20px;
	}
	.inner-1 .title .fl1 p{
		margin-top: 0;
	}
	.inner-1 .title .fl2{
		width:100%;
	}
	.gasstation .inner-1 .title .fl2 img{
		height:auto;
	}
	.cleaningcenter .inner-1 .title{
		display:flex;
	}
	.cleaningcenter .inner-1 .title .fl1{
		order: -1;
	}
	.cleaningcenter .inner-1 .title .fl2{
		order: 1;
	}
}

.inner-1 .title {
    position: relative;
}

.inner-1 .title .list-text {
    position: absolute;
    top: 70px;
    color: #fff;
    text-align: center;
    width: 100%;

	font-size: 16px;
	line-height: 3em !important;
	font: var(--font_7);
}
@media screen and (max-width:500px) {
	.gasstation .inner-1 .title .list-text {
		top: 40px;
	}
	.gasstation .inner-1 .title .list-text p{
		line-height: 1.8;
	}
	.gasstation .large2 {
		font-size: 34px;
	}
}

.inner-2{
	color:var(--primary-inverse-color2) ;
	background-color: #fff;
	padding:70px;
	overflow: hidden;
}
.gasstation .inner-2{
	padding-top:30px;
	padding-left:100px;
}

.inner-2 h3{
	font:var(--font_0);
	display: block;
	font-size: 25px;
	color: var(--primary-inverse-color2);
	border-bottom: none !important;
	text-align: center;
	padding-bottom:47px;
}

/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.inner-2{
		padding:0px;
	}
	.inner-2 h3{
		padding-bottom:0px;
	}
	.gasstation .inner-2{
		padding-top:30px;
		padding-bottom:100px;
		padding-left:20px;
		padding-right:20px;
	}

}

.list-half {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5vw;
	position: relative;
}
@media screen and (max-width:700px) {
	.gasstation .list-half {
		display: flex;
		flex-direction: column;
		padding: 0 10px;
	}
	
	.gasstation .list-half .text{
		order: 1;
	}
	.gasstation .delivery .list-half .text{
		order: 0;
	}
}

/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.list-half {
		display: block;
	}
	.gasstation .list-half {
		display: flex;
		flex-direction: column;
		padding: 0 10px;
	}
	.gasstation .list-half .text{
		order: 1;
	}
	.gasstation .delivery .list-half .text{
		order: 0;
	}
	.gasstation .rentacar .list-half .text{
		order: 0;
		text-align: center;
		margin-right: auto;
		margin-left: auto;
	}

	.gasstation .list-half .image{
		width:100%;
	}
}

.list-half .text {
	flex: 1;
}

.list-half .image {
	padding: 0;
	width: 25vw;
}

.rentacar {
	color:var(--primary-inverse-color2);
}
.rentacar .list-half {
	gap: 0.8vw;
	gap: 1.5vw;
	align-items: flex-start;
}
.rentacar .list-half .text p{
    font: var(--font_7);
    color: var(--primary-inverse-color2);
    text-align: left;
	line-height: normal;
	line-height: 2em;
	padding-bottom:10px !important;
	margin-top:0 !important;
	position: relative;
}
.rentacar .list-half .text p.brd::after {
	position: absolute;
	content: "";
	background-color: var(--brd);
	width: 300px;
	height: 3px;
	bottom: -5px;
	left: 0;
}
.rentacar .list-half .text p.brdwd200::after {
	position: absolute;
	content: "";
	background-color: var(--brd);
	width: 200px;
	height: 3px;
	bottom: 10px;
	left: 0;
}
/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.rentacar .list-half .text p.brdwd200::after {
		position: absolute;
		content: "";
		background-color: var(--brd);
		width: 100%;
		height: 3px;
		bottom: 10px;
		left: 0;
	}
}

.rentacar .list-half .image {
	color: var(--primary-inverse-color2);
}
.rentacar .list-half .image img{
	padding-top: 30px;
	padding-top: 0px;
	width: 18vw;
}
.rentacar .btn a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: var(--color_37) 1px solid !important;
	background: none !important;
    padding: 10px 20px !important;
	margin: 30px auto !important ;

	color: var(--color_37) !important;
    font: var(--fnt, var(--font_8));
    margin: 0;
    position: relative;
    transition: var(--trans2, color .4s ease 0s);
    white-space: nowrap;
	font-size:12px;
}

.rentacar .btn a:hover{
	color: #fff !important;
	border: #fff 1px solid !important;
	background-color: #9eb361 !important;
}

/*画面幅1024px以下指定*/
@media screen and (max-width:1024px) {
	.gasstation .vw400{
		width:50vw !important;
	}
}
@media screen and (max-width:930px) {
	.gasstation .vw400{
		width:45vw !important;
	}
}
@media screen and (max-width:840px) {
	.gasstation .vw400{
		width:40vw !important;
	}
}
@media screen and (max-width:776px) {
	.gasstation .vw400{
		width:100% !important;
	}
}


/*画面幅500px以下指定*/
@media screen and (max-width:500px) {
	.rentacar .list-half .text p.spc{
		text-align: center;
	}
	.rentacar .list-half .text p::after{
		left: 0;
		right:0;
		margin: auto;
	}
	.rentacar .list-half .image img{
		padding-top: 0px;
		width: 70%;
	}
	.gasstation .vw400,
	.gasstation .wd50{
		width:100% !important;
	}
	.sp-c{text-align: center;}
	}

.rentacar .delivery figure{
	width:40%;
	text-align:right;
	padding-right:30px;

}
.rentacar .delivery p{
	width:60%;
	line-height: 1.2em;
}
.rentacar .delivery p span{
	letter-spacing: 0em !important;
}

.google-map {
	height:350px;
}
.google-map iframe {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

/*gasbusiness*/
.gasbusiness .list-half2 {
	display: flex;
	justify-content: space-between;
	align-items:flex-start ;
	gap: 0vw;
	position: relative;
}

.gasbusiness .list-half2 .text {
	position:relative;
	flex: 1;
}

.gasbusiness .list-half2 .image {
	padding: 0;
	/* width: 25vw; */
}
.gasbusiness .list-half2 p.brd{
	position:relative;
}
.gasbusiness .list-half2 p.brd::after {
    position: absolute;
    content: "";
    background-color: var(--brd);
    width: 250px;
    height: 3px;
	top:90px;
	top:50px;
	left: 50%;
  	transform: translateX(-50%);
}

@media screen and (max-width:500px) {
	.gasbusiness .list-half2 p.brd::after {
		top:50px;
	}
	
}

.gasbusiness .inner-2{
	padding:0 !important
}
.gasbusiness .inner-2 h4{
	color: rgb(var(--color_18));
	font-size: 30px;
}

@media screen and (min-width: 800px) {
    .gasbusiness .list-grid4 {
        gap: 4rem !important;
    }
}

.gasbusiness .tel {
	font-size:30px;
	font-weight:bold;
}

.gasbusiness-list-grid2 {
	display: grid;
}

.gasbusiness-list-grid2 .list {
    display: grid;
}

.gasbusiness-list-grid2 .list * {
	margin: 0;padding: 0;
}

.gasbusiness-list-grid2 .list p {
	font-size: 0.85rem;
}

	/*画面幅500px以上指定*/
	@media screen and (min-width:500px) {

		.gasbusiness-list-grid2 {
			grid-template-columns: repeat(2, 1fr);
			gap: 1rem;
		}

	}


	/*画面幅800px以上加指定*/
	@media screen and (min-width:800px) {

		.gasbusiness-list-grid2 {
			grid-template-columns: repeat(3, 1fr);
			gap: 0rem;
		}

	}


	.gasbusiness-list-grid2 .list {
	padding: 0rem;
    grid-template-rows: auto 1fr;
	text-align: center;
}

.gasbusiness-list-grid2 .list figure img {
	margin-bottom: 0.5rem;
	/* width:40%;	 */
}
.gasbusiness-list-grid2 .list h4{
	font-size:20px !important;
    font: var(--font_5);
    letter-spacing: 0em;
}
.gasbusiness-list-grid2 .list p{
	font-size: 16px !important;
	font: var(--font_8);
}

.keeper-img img{
	object-fit: cover;
	width: 980px;
	height: 300px;
}
@media screen and (max-width:500px) {
	.keeper-img img{
		height: 300px;
	}
}

.customer-img img{
	object-fit: cover;
	width: 800px;
	height: 500px;
}
@media screen and (max-width:500px) {
	.customer-img figure img{
		height: 300px;
	}
}

.gasbusiness .attempt{
	color: #fff;
	padding:80px 110px;
	margin-bottom: 200px;
	background-color: var(--bg-overlay1-color);
}
.gasbusiness .attempt div{
	animation: fadeIn 2s ease 1s 1 normal backwards;
}
.gasbusiness .attempt h4{
	font-size: 20px;
	margin-bottom: 2em !important;
}
.gasbusiness .attempt h5{
	font-size: 15px;
	margin-bottom: 0 !important;
}
.gasbusiness .attempt p{
	font-size: 12px;
	margin: 0 !important;
}
 
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:500px) {
	.gasbusiness .attempt{
		padding:40px 20px;
		margin-bottom: 0;
	}
	.gasbusiness .attempt h4{
		font-size: 15px;
	}
	.gasbusiness .attempt h5{
		font-size: 12px;
	}
	.gasbusiness .attempt p{
		font-size: 10px;
		line-height: 1.4;
	}
	.gasbusiness .attempt .fnt15 {
		font-size: 12px !important;
	}
}

/****事業*/
.villamanagement h3{
	display: block;
	color: #C1DA74;
	font-size: 27px;
	text-align: center !important;
	border:none !important;
}

.villamanagement .wd80{
	width:80% !important;
	margin: 0 auto;
	line-height: 1.8em;
}
.villamanagement .menu,
.villamanagement  .list-grid2{
	color:var(--primary-inverse-color2);
}
.villamanagement .contact .wd50{
	width:352px !important;
	margin: 0 auto;
	line-height: 1.4em;
}
.villamanagement .contact form{
	width:630px !important;
	margin: 0 auto;
}
@media screen and (min-width:800px) {
	.villamanagement .contact form{
		width:80% !important;
	}
}
@media screen and (max-width:500px) {
	.villamanagement .contact .wd50{
		width:100% !important;
	}
	.villamanagement .contact form{
		width:100% !important;
		margin: 0 auto;
	}
}
.villamanagement .contact dl,
	.villamanagement .contact table{
	display:block;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-style: italic;
	font-size: 15px;
	padding:0 0 5px;
}
.villamanagement .contact dt,
.villamanagement .contact dd,
.villamanagement .contact table th,
.villamanagement .contact table td{
	padding:2px 0;
	width:100%
}
.villamanagement .contact dt,
.villamanagement .contact table th{
	padding-top:15px;
}
.confirm table{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-style: italic;
	font-size: 15px;
}

input,textarea,button{
	border: none;
	padding:10px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-style: italic;
	font-size: 15px;
}
input[type="submit" i] ,
input[type="reset" i],
input[type="button" i] {
	padding: 7px 70px;
    border: 1px solid var(--primary-inverse-color2);
    background: none !important;
	cursor: pointer;
}
input[type="submit" i]:hover,
input[type="reset" i]:hover {
	color:#fff;
	border: 1px solid var(--primary-color-hover);
	-webkit-transition: 0.5s all;
  	transition: 0.5s all;
}

.confirm input[type="submit" i] ,
.confirm input[type="button" i] {
	color:#fff;
	border: 1px solid var(--primary-color-hover);
}
.confirm input[type="submit" i]:hover,
.confirm input[type="button" i]:hover {
	border: 1px solid var(--primary-inverse-color2);
}

button{
	padding:7px 70px;
	border: 1px solid var(--primary-inverse-color2);
	background: none;
}
button:hover{
	color:#fff;
	border: 1px solid var(--primary-color-hover);
	-webkit-transition: 0.5s all;
  	transition: 0.5s all;
}



/*会社概要*/
.contact .inner{
	width:750px;
}

.contact dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 2rem;
	font-size: 18px;
	line-height:1.6em;
}

.contact dt,
.contact dd {
	padding: 0px 0;
}
.contact dt span {
	display: none;
}
.contact dt {
		width: 35%;
	  }

	  .contact dd {
		width: 65%;
	  }

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/* .contact dt {
		width: 25%;
	  }

	  .contact dd {
		width: 75%;
	  } */

	}
	/*画面幅500px以上の追加指定*/
	@media screen and (max-width:500px) {
		.contact dl {
			/* font-size:15.5px !important;
			font-size:15.5px !important; */
		}
		/* .contact dd {
			text-indent: 1.0em;
		} */

		.contact dl.jigyoubu{
			display:block;
		}
		.contact dl.jigyoubu dd {
			width: 100%;
		}
	}



/*ボタン（btnと、btn-border-radius）
---------------------------------------------------------------------------*/
/*ボタン共通*/
.btn a,
.btn-border-radius a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;
	background: var(--primary-color) !important;
	color: var(--primary-inverse-color) !important;
	padding: 0.5rem !important;
	margin-top: 1rem !important;
}

/*ボタン共通*/
.btn a:hover,
.btn-border-radius a:hover {
	filter: brightness(1.2);
}

/*btn-border-radiusの上書き*/
.btn-border-radius a {
	display: inline-block;
	padding: 0.5rem 2rem !important;
	border-radius: 100px;
	background: #f53e72 !important;
}

/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background-color: var(--corvid-background-color, var(--bg-overlay1-color));
	color: var(--primary-inverse-color);
	padding-top: 20px;
	padding-bottom: 5vw;
	/* padding-left: var(--global-space);
	padding-right: var(--global-space); */
	width:100%;
}
/*画面幅800px以上加指定*/
@media screen and (max-width:800px) {

	.bg1{
		padding-left: 0;
		padding-right: 0;

	}
}
.bg1 a {
	color: inherit;
}
.bg2 {
	position: relative;
	background-color: var(--bg-overlay2-color) ;
	color: var(--primary-inverse-color2);
	padding-top: 20px;
	padding-bottom: 5vw;
	padding-left: var(--global-space);
	padding-right: var(--global-space);
	width:100%;
}
.bg2 a {
	color: inherit;
}

@media screen and (max-width:500px) {
	.gasbusiness .bg2 {
		padding:0 !important;
	}
	
}
.catch1{
	position: relative;
	z-index: 99;
	overflow: auto;
}
.catch {
    position: relative;
    background: none;
    color: var(--primary-inverse-color);
	color:#fff;
    padding-top: 0vw;
    padding-bottom: 70vw;
    margin-top: 0vw;
	font-weight:bold;
	letter-spacing: 0.08em;
	height:90%;
	overflow: hidden;

	/* height:1500px; */
	/* height:800px; */
}
.home .catch{
	text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
}

body:not(.home) .catch{
	padding-bottom: 40vw;
}
.gasstation .catch{
	padding-bottom: 50vw !important;
}
.gasbusiness .catch{
	padding-bottom: 48vw !important;
}
.cleaningcenter .catch{
	padding-bottom: 54vw !important;
}
.villamanagement .catch{
	padding-bottom: 52vw !important;
}
.contact .catch{
	padding-bottom: 0vw !important;
	height:0 !important;
}
	@media screen and (max-width:1024px) {		
		.gasbusiness .catch{
			height:600px;
		}
	}
	/*画面幅900px以下指定*/
	@media screen and (max-width:900px) {
		.home .catch{
			padding-bottom: 90vw;
			padding-bottom: 130vw;
			height:800px;
			height:auto;
		}
		.gasstation .catch{
			padding-bottom: 60vw !important;
		}
		.gasbusiness .catch{
			padding-bottom: 70vw !important;
		}
		.villamanagement .catch{
			padding-bottom: 80vw !important;
		}
		.cleaningcenter .catch{
			padding-bottom: 80vw !important;
		}
	}
	/*画面幅800px以下指定*/
	@media screen and (max-width:800px) {
		.home .catch{
			padding-bottom: 130vw;
		}
	}
	/*画面幅700px以下指定*/
	@media screen and (max-width:700px) {
		.home .catch{
			padding-bottom: 140vw;
		}
		.gasstation .catch{
			padding-bottom: 80vw !important;
		}
		.gasbusiness .catch{
			padding-bottom: 90vw !important;
		}
		.villamanagement .catch{
			padding-bottom: 100vw !important;
		}
		.cleaningcenter .catch{
			padding-bottom: 100vw !important;
		}
	}
	/*画面幅500px以下指定*/
	@media screen and (max-width:500px) {
		.home .catch{
			padding-bottom: 190vw;
		}
		.gasstation .catch{
			padding-bottom: 10vw !important;
			height:660px;
		}
		.gasbusiness .catch{
			height:95vh;
			padding-bottom: 30vw !important;
		}
		.villamanagement .catch{
			padding-bottom: 180vw !important;
		}
		.cleaningcenter .catch{
			padding-bottom: 180vw !important;
		}
	}
	@media screen and (max-width: 480px) and (max-height: 1040px) {
		.gasbusiness .catch{
			height:60vh;
		}
	}
	@media screen and (max-width:430px) {		
		.gasbusiness .catch{
			height:81vh;
		}
	}
	@media screen and (max-width:390px) {		
		.gasbusiness .catch{
			height:76vh;
		}
	}
	@media screen and (max-width:390px) and (max-height: 780px) {
		.gasbusiness .catch{
			height:85vh;
		}
	}
	@media screen and (max-width:375px) {
		
		.gasbusiness .catch{
			height:100vh;
		}
	}
	/*画面幅350px以下指定*/
	@media screen and (max-width:360px) {
		.gasbusiness .catch{
			height:90vh;
		}
		/* .gasstation .catch{
			padding-bottom: 120vw !important;
			padding-bottom: 150vw !important;
		}
		
		.villamanagement .catch{
			padding-bottom: 180vw !important;
		}
		.cleaningcenter .catch{
			padding-bottom: 180vw !important;
		} */
	}
	/*画面幅350px以下指定*/
	@media screen and (max-width:345px) {
		.gasbusiness .catch{
			height:80vh;
		}
	}

.catch .en{
	font:var(--font_4);
	padding-bottom: 70px !important;
}
body:not(.home) .catch .en {
	color:var(--primary-st-color);
	padding-top: 30px;
	padding-bottom: 30px !important;
	font:var(--font_0);
	font-size:20px;
}
@media screen and (max-width:500px) {
	
body:not(.home) .catch .en {
	padding-top: 0px !important;
	margin-top: 0px !important;
	padding-bottom: 0px !important;
}
}
.cleaningcenter .catch .en{
	padding-top: 0px !important;
}
.catch .jp{
	font:var(--font_0);
}
body:not(.home) .catch .jp {
	font-size:30px;
}
.ft20{
	font-size:20px !important;

	/* letter-spacing: -0.07em !important; */
}

@media screen and (max-width:500px) {
.home .catch .en{
	font-size:21px;
	padding-bottom: 10px !important;
}
}

.catch .text{
	font-size:16px;
	line-height:1.7;
	letter-spacing: 0.1em;
	width:calc(100% - 40px);
	width:640px;
	width:687px;
	margin-right:auto;
	margin-left:auto;
	text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px, rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px -1px 0px;
}
@media screen and (max-width:800px) {

	.catch .text{
		width:100%;
		font-size:13px ;
		line-height:1.5 !important;
		padding:0 27px !important;
	}
	.cleaningcenter .catch .text{
		width: 80%;
	}
}
@media screen and (max-width:500px) {

	.catch .text{
		font-size:15px ;

		width:100%;
		
		line-height:1.5 !important;
		padding:0 20px !important;
	}
	.cleaningcenter .catch .text{
		width: 80%;
	}
}

body:not(.home) .catch .text {
	letter-spacing: 0em;
	text-shadow: none !important;
	line-height:1.4;
}

.cleaningcenter .catch .text{
	width:780px;
	margin-right:auto;
}
@media screen and (max-width:700px) {
	.cleaningcenter .catch .text{
		width:100%;
	}
}

.hm-comp-rm{
	display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	padding:80px 0 0;
}
.hm-comp-rm img{
	margin: -50px auto 0;
	display: flex;
    justify-content: center;
    align-items: center;
}
.hm-comp-rm h2 span{
	letter-spacing: 0em;
}
.hm-comp-rm .btn a {
	display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal !important;
    text-align: center;
    border: var(--primary-inverse-color2) 1px solid !important;
    background: none !important;
    color: var(--primary-inverse-color2) !important;
	padding:5px 30px !important;
    margin: 50px auto  0 !important;
}
.hm-comp-rm .btn a:hover {
	color:#fff !important;
	border-color: #fff !important;
}


@media screen and (max-width:500px) {

.hm-comp-rm{
	display: block;


    /* justify-content: center;
    align-items: center;    
	position: relative;
	padding:80px 0 0; */
}
.hm-comp-rm .wd50 {
    width: 100% !important;
	text-align: center;
}



.hm-comp-rm img{
	margin: -50px auto 0;
	display: flex;
    justify-content: center;
    align-items: center;
}
.hm-comp-rm h2 span{
	letter-spacing: 0em;
}
.hm-comp-rm .btn a {
	display: inline-block;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: normal !important;
    text-align: center;
    border: var(--primary-inverse-color2) 1px solid !important;
    background: none !important;
    color: var(--primary-inverse-color2) !important;
	padding:5px 30px !important;
    margin: 20px auto  0 !important;
	font-weight:500 !important;
}
.hm-comp-rm .btn a:hover {
	color:#fff !important;
	border-color: #fff !important;
}
}


/*サムネイル
---------------------------------------------------------------------------*/
.thumbnail-view-parts {
	max-width: 1000px;
	margin: 0 auto 1rem;
	text-align: center;
}

.thumbnail-parts {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

/*サムネイル画像*/
.thumbnail-parts img {
	width: 100px;
	margin: 2px;
	cursor: pointer;
	transition: 0.3s;
}
.thumbnail-parts img:hover {
	opacity: 0.8;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
.ta1 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: var(--primary-color);
	margin-bottom: 1rem;
	border-radius: 5px;
}

.ta1 {
	table-layout: fixed;
	border-top: 1px solid #ccc;
	width: 100%;
	margin-bottom: 5rem;
}
.ta1 tr {
	border-bottom: 1px solid #ccc;
}

.ta1 th, .ta1 td {
	padding: 1rem;
	word-break: break-all;
}

.ta1 th {
	width: 30%;
	text-align: left;
}

	/*画面幅900px以上指定*/
	@media screen and (min-width:900px) {

		.ta1 th {
			width: 20%;
		}

	}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}


.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.m0 {margin: 0px !important;}
.mt0 {margin-top: 0px !important;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb100 {margin-bottom: 100px !important;}
.mb150 {margin-bottom: 150px !important;}
.mb170 {margin-bottom: 170px !important;}
.mb210 {margin-bottom: 210px !important;}
.ml-20 {margin-left: -20px !important;}

.p0 {padding: 0px !important}
.pt25 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt80 {padding-top: 80px !important;}
.pt120 {padding-top: 120px !important;}
.pt110 {padding-top: 110px !important;}
.pt0 {padding-top: 0px !important;}
.pt5 {padding-top: 5px !important;}
.pt30 {padding-top: 30px !important;}
.pt50 {padding-top: 50px !important;}
.pt80 {padding-top: 80px !important;}

.pr20 {padding-right: 20px !important;}

.pb0 {padding-bottom: 0px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb50 {padding-bottom: 50px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb80 {padding-bottom: 80px !important;}

.pl40 {padding-left: 40px !important;}
.pl60 {padding-left: 60px !important;}
.pl100 {padding-left: 100px !important;}

.prl0 {padding-right: 0px !important;padding-left: 0px !important;}
.prl30 {padding-right: 30px !important;padding-left: 30px !important;}
.prl40 {padding-right: 40px !important;padding-left: 40px !important;}
.prl50 {padding-right: 50px !important;padding-left: 50px !important;}
.prl60 {padding-right: 60px !important;padding-left: 60px !important;}
.prl80 {padding-right: 80px !important;padding-left: 80px !important;}
.prl90 {padding-right: 90px !important;padding-left: 90px !important;}
.prl120 {padding-right: 120px !important;padding-left: 120px !important;}
.prl150 {padding-right: 200px !important;padding-left: 200px !important;}

.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look2 {padding: 10px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 150px 200px 0!important; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.large2 {font-size: 40px;}
.fnt20{font-size: 20px !important;}
.fnt15{font-size: 15px !important;}
.fnt16{font-size: 16px !important;}
.fnt18{font-size: 18px !important;}
.fnt25{font-size: 25px !important;}
.fnt22{font-size: 22px !important;}
.fnt29{font-size: 29px !important;}
.fnt30{font-size: 30px !important;}
.fnt37{font-size: 37px !important;}
.fnt38{font-size: 38px !important;}
.bold{font-weight:bold !important;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.flex {display: flex !important;}
img.r{float:right}
.vw400{width: 36vw !important;}
.wd50{width:50% !important}
.red{color:#f00;}
.col-C1DA74{color:#C1DA74;}
.col-fff{color:#fff;}

.lh1{line-height:1em !important}
.lh2{line-height:1.8em !important}
.lh3{line-height:2.2em !important}
.lh4{line-height:1.4em !important}
.lh5{line-height:0.8em !important}
.lh6{line-height:0.9em !important}
.lh7{line-height:1.6em !important}

.normal{font-weight:normal;}

.ls1{letter-spacing: 0 !important;}

.filt{
	filter: brightness(50%);
}
.filt70{
	filter: brightness(70%);
}
.filt80{
	filter: brightness(80%);
}

.tel{
	font-family: "Roboto", sans-serif;
	font-size: 28px;
	letter-spacing: 0.05em;
}
.tel a{
	text-decoration: none;
}
.material-icons {
    font-size: 30px;
	padding-right:10px;
}

p.brd100{
	padding-bottom:10px !important;
	margin-top:0 !important;
	position: relative;
}
p.brd100::after {
	position: absolute;
	content: "";
	background-color: var(--primary-inverse-color2);
	width: 100%;
	height: 1px;
	bottom: -5px;
	left: 0;
}
p.brd100-2{
	padding-bottom:10px !important;
	margin-top:0 !important;
	position: relative;
}
p.brd100-2::after {
	position: absolute;
	content: "";
	background-color: var(--color_11);
	width: 100%;
	height: 1px;
	bottom: -5px;
	left: 0;
}
p.brd100-3{
	padding-bottom:10px !important;
	margin-top:0 !important;
	position: relative;
}
p.brd100-3::after {
	position: absolute;
	content: "";
	background-color: var(--color_11);
	width: 90%;
	height: 2px;
	bottom: -5px;
	left: 5%;
}

	/*画面幅900px以上指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}
		.sp {display: none;}

	}
	/*画面幅500px以下指定*/
	@media screen and (max-width:500px) {
		.pc {display: none;}
		.sp {display: block;}
	}


.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.cenmid{
	display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
}

.h2text{
	font-size: 16px !important;
	padding-right:20px !important;
	padding-left:20px !important;
	line-height: 1.1 !important;
}

@media screen and (max-width:500px) {
	
	.home img.top_recicle{
		margin-top: 20px !important;
	}
	.home .circle {
		top: -25px;
		left: 10px;
	}
	.home .bg1 {
		padding-bottom: 0;
	}

	br.sp{
		display: block !important;
	}

	.sp-block{display: block !important;}
	.sp-none{display: none;}
	.sp-col1{color:var(--primary-color-hover) !important;}
	.sp-c{text-align: center !important;}
	.sp-l{text-align: left !important;}
	
	.sp-pt0{padding-top:0px !important;}	
	.sp-pt20{padding-top:20px !important;}	
	.sp-pl20{padding-left:20px !important;}	
	.sp-pl50{padding-left:65px !important;}	
	.sp-pl0 {padding-left: 0px !important;}
	.sp-pb0{padding-bottom:0px !important;}	
	.sp-pb30{padding-bottom:30px !important;}	
	.sp-pb50{padding-bottom:50px !important;}	
	.sp-prl0{padding-right: 0px !important;padding-left: 0px !important;}	
	.sp-prl5{padding-right: 5px !important;padding-left: 5px !important;}	
	.sp-prl20{padding-right: 20px !important;padding-left: 20px !important;}	
	.sp-prl25{padding-right: 25px !important;padding-left: 25px !important;}	
	.sp-prl30{padding-right: 30px !important;padding-left: 30px !important;}	
	.sp-prl45{padding-right: 45px !important;padding-left: 45px !important;}	

	.sp-mb0{margin-bottom: 0px !important;}
	.sp-mb20{margin-bottom: 40px !important;}
	.sp-mb115{margin-bottom: 115px !important;}
	.sp-mb80{margin-bottom: 80px !important;}

	.sp-fnt20{
		font-size:20px !important;
		line-height:1.5 !important;
		padding: 0 0px 20px;
		text-align: center;
	}
	.sp-fnt25{
		font-size:25px !important;
	}
	
	.sp-lh1{line-height:0.8 !important;}
	.sp-lh2{line-height:1.3 !important;}

	.pc{display: none !important;}
	.sp{display: block !important;}

	.sp-wd100{width:100% !important;}
	.sp-none{display: none !important;}

	.look2 {padding: 10px 10px;margin: 50px 0px !important;}

	.font_8 {
		font-size: 18px !important;
	}

}

@media screen and (max-width: 350px) {
	.list-grid1 .text p.wd2 {
		width: 90% !important;
		padding: 20px 0 30px !important;
	}
	.list-grid1 .text p.wd {
		width: 90% !important;
	}
}
.pc{display: block;}
.sp{display: none;}
br.sp{
	display: none;
}

