@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
/* CSS Document */

/*header
====================================================================*/
#header{
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	z-index: 999;
}
.hlogo{
	height: 90%;
	margin: auto;
	margin-left: 20px;	
	width:clamp(200px,30%,350px) ;
}
.hlogo img{
	object-fit: contain;
	height: 100%;
	width: 100%;
}
.h_right{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: flex-end;
	align-items: center;
	
}

.gnav ul{
	display: flex;
	margin: 0 15px;
	line-height: 1.3;
	align-items: center;
}
.gnav ul li{
	height: 50px;
}

.gnav ul li a {
	display: block;
	padding: 0 15px;
	padding-bottom: 5px;
	text-decoration: none;
	line-height: 1.3;	
	text-align: center;
	font-size: 20px;
	text-shadow: 1px 1px 3px #fff;
}

.gnav ul li a span{
	display: block;	
	line-height: 1.3;
	font-size: 15px;
}
.gnav ul li a.caret{
	position: relative;
	padding-right: 25px;
}

.gnav ul li a.caret::after {
	position: absolute;
	content: '';
	background: #333;
	width: 10px;
	height: 5px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	transition: color 0.1s linear;
	right: 5px;
	top:50%;
}
.gnav ul li a:hover{
	color: #056852;
}
.gnav ul li:hover a.caret::after {
	background: #01AEA0;
}
/*下層に隠れたメニューの動き*/
.gnav ul li ul {
	background-color: #01AEA0;
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	transition: all 0.3s;
}
.gnav ul li:hover ul {
	display: block;
	opacity: 1;
	visibility: visible;
}
.gnav ul li ul li {
	border-radius: 0 0 4px 4px;
}
.gnav ul li ul li a {
	color: #fff;
	line-height: 50px;
	text-shadow: 0 0 0 transparent;	
}
.gnav ul li ul li:hover a {
	background-color: rgba( 255, 255, 255, 0.1);
	color: #fff;	
}

.hc_btn{
	text-align: center;
	height: 100%;
	font-size: 22px;
}
.htel a{
	display: block;
	width: 100%;
	line-height: 45px;
	background: #01AEA0;
	color: #fff;
	padding: 0 2rem;
}
.htel a:hover{
	background: #75E8DF;
}
.hmail a{
	display: block;
	width: 100%;
	line-height: 45px;
	background: #fff;
	color: #01AEA0;	
	padding: 0 2rem;
}
@media(max-width:879px){
	.h_right{
		display: none;
	}
	#header{
		height: 70px;
	}
}
/*MobileMenu
====================================================================*/
@media(min-width:880px){
	.openbtn{
		display: none;
	}
}
.openbtn{
	position:fixed;
    z-index: 999;/*ボタンを最前面に*/
	top:5px;
	right: 10px;
	cursor: pointer;
    width: 60px;
    height:60px;
	background: #01AEA0;
	border: 2px solid #fff;
	border-radius: 10px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 20%;
    height: 2px;
    border-radius: 2px;
	background-color: #fff;
  	width: 60%;
  }

.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:22px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:1px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

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

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

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

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 800;
	top:0;
    right: -200%;
	width:100%;
	max-width: 400px;
    height: 100vh;
	background:linear-gradient(140deg,#fff,#01AEA0,#056852);
	transition: all 0.6s;
}

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

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

/*ナビゲーション*/
.splogo{
	width: 40%;
	margin: 80px auto 20px;
}
.splogo img{
	width: 100%;
	object-fit: contain;
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#g-nav li{
	border-bottom: 1px solid #fff;
}
#g-nav .child{
	border-bottom: none;
	padding-left: 1.5rem;	
}
#g-nav .child a{
	padding-bottom: 5px;
}
.gtel,.gmail{
	margin: 0 auto;
	margin-top: 15px;
	width: 300px;
	border: 1px solid #fff;
	text-align: center;
	background: rgba(255,255,255,.8)
}
#g-nav li.gtel a,#g-nav li.gmail a{
	color: #01AEA0;
	text-shadow: none;
}
@media(max-width:620px){
	#g-nav{
		width:100%;
		max-width: 100%;
	}	
	#g-nav-list	{
		width: 100%;
	}
}
@media(max-width:450px){
	#g-nav{
		background:linear-gradient(160deg,#9AE2DB,#01AEA0,#056852);
	}
	.splogo img{
		display: none;
	}	
	#g-nav li a{
		text-shadow: 0 0 2px #056852;
	}
}
/*footer
====================================================================*/
.bg._cont{
   background-image: url(../img/cont_bg.jpg);
   background-size: cover;
   background-position: center;
}
.f_cbtn{
	display: flex;
	justify-content: center;
}
.fc_tel,.fc_mail{
	display: block;
	padding: 1rem 0;
	width: 40%;
	max-width: 320px;
	text-align: center;	
	background: #fff;
	outline: 2px solid #fff;
	margin: 10px;
	font-size: clamp(20px,2.5vw,25px);
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	transition: .4s;
}
.fc_tel:hover,.fc_mail:hover{
	background: rgba(255,255,255,.7);
	transition: .4s;
}
.fc_tel span,.fc_mail span{
	position: relative;
	padding-left: 2rem
}
.fc_tel span::before,
.fc_mail span::before{
	position: absolute;
	top: -5px;
	left: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
}
.fc_tel span::before{
	content: '\f095';
	
}
.fc_mail span::before{
	content: '\f1d8';
}

footer{
	background: #4CD6C9;
	padding: 40px 0 20px;

}
.f_info{
	width: 45%;
}
.flogo{
	width: 80%;
	max-width: 350px;
}

.f_nav{
	width: 52%;
	display: flex;	
	justify-content: flex-end;
}
.f_nav ul{
	margin-left: 30px;
}
.f_nav .child{
	margin-left: 15px;
	font-size: 16px;
}
.f_nav .child:hover a{
	color: #fff;
}
.copy{
	background: #4CD6C9;
	padding: 5px 2vw;
	font-size: 13px;
	color: #fff;
	text-align: end;
}
@media (max-width: 880px){
	.copy{
		padding-bottom: 50px;
	}
}
@media (max-width: 768px){
	.f_info{
		width: 100%;
		text-align: center;
	}	
	.flogo {
		margin: 0 auto 15px;
	}	
	.f_nav{
		display: none;
	}
}
@media (max-width: 570px){
	.f_cbtn{
		flex-direction: column;
	}
	.fc_tel,.fc_mail{
		width: 100%;
		margin: 10px auto;
	}	
}
/*GotoTOP
====================================================================*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	opacity: .7;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media (max-width: 500px){
#page-top a{
	width: 40px;
	height: 40px;	
	}
}
/*sp-footbtn
====================================================================*/
@media(min-width:880px){
	#spnavi{
		display: none;
	}
}
  #spnavi {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #fff;
	border-top: 2px solid #056852;
  }
  #spnavi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #spnavi ul li {
    width: 50%;
    border-right: 1px solid #fff;
  }
  #spnavi ul li:last-child {
    border-right: none;
	background: #056852; 
  }
  #spnavi ul li a {
    display: block !important;
    padding: 5px 0;
    text-align: center;
    color: #056852;
    font-size: 1rem;
    line-height: 2;
  }
  #spnavi ul li:last-child a{
    color: #fff; 
  }
  #spnavi ul li a.sp_tel:before {
    font-family: "Font Awesome 6 Free";
    content: "\f095";
    font-weight: 900;
  }
  #spnavi ul li a.sp_contact:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0e0";
    font-weight: 900;
  }
  #spnavi ul li a span {
    font-size: 1rem;
	margin-left: 5px;  
  }


/*index
====================================================================*/
/*topslide*/
.topfv{
	width: 100%;
	aspect-ratio: 5 / 4;
	max-height: 100vh;
	position: relative;
}

.t_slider {
  position:relative;
  z-index: 1;
	width: 100%;
	aspect-ratio: 5 / 4;
	max-height: 100vh;
	z-index: 1;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../img/slide01.jpg");
}

.slider-item02 {
    background:url(../img/slide02.jpg);
}

.slider-item03 {
    background:url(../img/slide03.jpg);
}

.slider-item {
    width: 100vw;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
	aspect-ratio: 5 / 4;
	max-height: 100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.catch{
	position: absolute;
	content: '';
	width: 90%;
	max-width: 600px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}

/*t-about*/
.aimg{
	width: 30%;
	position: relative;
}
.aimg::after{
	position: absolute;
	content: '';
	background: #fff;
	height: 100%;
	width: 2px;
	top: 0;
	right: -10%;
}
.atxt{
	width: 60%;
}
@media (max-width: 768px){
	.aimg{
		margin-bottom: 20px;
	}
	.aimg::after{
		height: 2px;
		width: 100%;
		top: auto;
		bottom: -5%;
		right: 0;
	}	
	.atxt{
		width: 100%;
	}	
}

/*linkbox*/
.house_box,.round_box{
	width: 48%;
	padding: 2rem;
	border: 3px solid #B2CDD6;
	border-radius: 30px;
	color: #fff;
}
.house_box{
	background: #01AEA0;
}
.round_box{
	background: #108CB2;
}

.house_box figure,.round_box figure{
	width: 100%;
	aspect-ratio: 3 / 1;
	overflow: hidden;
	margin-bottom: 20px
}
.linkbox{
	display: flex;
	justify-content: center;
}

.linkbox li{
	width: calc(100% / 3 - 10px);
	margin: 0 5px;
}
.house_box .linkbox li{
	width: calc(100% / 2 - 40px);
}
.linkbox li a{	
	display: block;
	background:#fff;
	border: 2px solid #B2CDD6;
	padding: 1rem .5rem;
	border-radius: 20px;
	height: 100%;
	font-size: 16px;
}
.linkbox dl{
	display: flex;
	justify-content: space-around;
	align-items:center;
	color: #01AEA0;
	height: 100%;
	
}
.linkbox li a dd:nth-child(2){
	transition: .3s;	
}
.linkbox li a:hover dd:nth-child(2){
	transform: scaleX(1.2) translateX(2px);
	transition: .3s;
}

@media (max-width: 1023px){
	.house_box,.round_box{
		width: 100%;
		margin-top: 20px;
	}	
}
@media (max-width: 500px){
	.house_box,.round_box{
		padding: 2rem 0.5rem;
		font-size: 15px;
	}
	.linkbox{
		flex-direction: column;
	}

	.linkbox li,.house_box .linkbox li{
		width: 100%;
		margin: 5px 0;
	}	
}
/*reason*/
.reason::before{
	position: absolute;
	content: '';
	background: #D7FBFF;
	width: 100%;
	height: 25vh;
	top:-25vh;
	left: 0;
	z-index: -2;
	border-radius: 80px 80px 0 0 ;
}
.listbox{
	display: flex;
	flex-wrap: wrap;
}
.list{
	width: calc(100% / 3 );
	position: relative;
	padding: 50px 20px;
	z-index: 0;
}
.list::before{
	position: absolute;
	content: '';
	background: url(../img/r_listbg.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 50%;
	height: 80%;
	top: 0;
	left: 0;
	z-index: -1;
}
.list:nth-child(2){
	margin-top: 50px;
}
.rtitle{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.rtitle .nmb{
	color: #00B400;
	font-family: "MonteCarlo", cursive;
	margin-right: 10px;
	font-size: 2rem;
}
.list p{
	text-align: center;
}

@media (max-width: 768px){
	.list{
		width:calc(100% / 2);
		max-width: 400px;
		margin: 0 auto;
	}
	.list:nth-child(2){
		margin-top: 80px;
	}	
}
@media (max-width: 540px){	
	.listbox{
		justify-content: flex-start;
	}	
	.list{
		width:80%;
		max-width: 400px;
		margin: 10px 0 0;
	}
	.list:nth-child(2){
		margin-top: 10px;
		margin-left: 10%;
	}	
	.list:nth-child(3){
		margin-left: 20%;
	}	
}

/*下層共通
====================================================================*/
.kfv{
	margin-top: 90px;
	padding:0 0 90px;
}
.kfv::after{
	position: absolute;
	content: '';
	width: 85%;
	height: 80%;
	bottom:0;
	right: 0;
	background: #D7FBFF;
	z-index: -1;
}
.pagetitle{
	position: relative;
	width: 80%;
	background: url(../img/kfv.jpg);
	background-position: center 70%;
	padding: 100px 0;
}
.pagetitle h2{
	position: absolute;
	content: '';
	right: -60px;
}
.pagetitle h2 span{
	background: #fff;
	padding: 1rem 2.5rem;
	color: #01AEA0;
}


.breadcrumb {
	z-index: 1;
	padding-left: 30px;
}
.breadcrumb li {
	display: inline;
	list-style: none;	
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #01AEA0;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:850px) {
	.breadcrumb {
		font-size: 0.9rem;
	}
}
@media(max-width:650px) {
	.breadcrumb {
		font-size: 0.75rem;
	}
}

/*Houscleaning
====================================================================*/
/*ハウスクリーニング*/
.dtitle{
	text-align: center;
	font-size: clamp(20px, 2.5vw ,25px);
	color:#01AEA0;
	margin-bottom: 30px;
}

.h_menulist{
	display: flex;
	flex-wrap: wrap;
}
.h_menulist li{
	width: calc(100% / 3 - 15px);
	margin-right: 15px;
}
.h_menulist li img{
	width: 100%;
	object-fit: contain;
}
.h_cont{
	background: url("../img/h_contactbg.jpg");
	background-size: cover;
	color: #fff;
}
.h_cont h2{
	text-shadow: 0 0 3px #333;
	margin-bottom: 30px;
	font-size: clamp(1.125rem, 0.951rem + 0.73vw, 1.5rem);
}
.hc_tel,.hc_mail{
	width: 48%;
	max-width: 380px;
	margin: 10px;
}

.hc_tel a{
	font-size: clamp(2rem, 1.768rem + 0.98vw, 2.5rem);
	font-weight: 600;
	color: #fff;
	text-shadow: 0 0 3px #333;
}
.hc_tel a span{
	font-size: clamp(1.3rem, 1.068rem + 0.98vw, 1.8rem);
}
.hc_mail .hc_mail_body{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	background: #01AEA0;
	padding: 5px 2rem;
	text-align: center;
	border: 3px solid #FFF;
}
.btn-main{
	font-size: clamp(1.3rem, 1.068rem + 0.98vw, 1.8rem);
	font-weight: 600;
}
.btn_arrow{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 70px;
    height: 100%;
    background-color: #08610d;
	background: #056852;
	padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;	
}
.hc_tel a:hover,.hc_mail .hc_mail_body:hover{
	opacity: .8;
}
@media (max-width: 768px){
	.hc_tel,.hc_mail{
		width: 90%;
		max-width: 380px;
		margin: 10px;
	}
	.hc_tel{
		text-align: center;
	}

}
@media(max-width:614px){
	.h_menulist li{
		width: calc(100% / 2 - 15px);
		margin: 7px;
	}	
}


/*エアコンクリーニング*/
.air-title{
	padding: 50px 0 75px;
    background: #D8F7FF url("../img/air_bg.png");
    background-repeat: no-repeat;
    background-position: right 58%;
	padding-left: 15px;
}
.airbg_sp{
	display: none;
}
.air-title .title{
	color: #29abe2;
	margin-bottom: 20px;
	font-size: clamp(23px,2.3vw,33px);	
}
.air-title h3{
	padding-left: 2rem;
	text-shadow: 0 0 2px #fff;
}
.air-price{
	background: #D7FBFF;
	padding-bottom: 20px;
}
.air-price table{
	width: 90%;
	margin: 20px auto;
}
.air-price tr{
	border-bottom: 1px dotted #333;
}
.air-price th{
	font-weight: 400;
	text-align: left;
	padding: 1rem 1rem 0 2rem;
}
.air-price th span{
	font-size: 14px;
	display: inline-block;
}
.air-price td{	
	padding: 1rem 1rem .5rem;
}
.air-price td.pnum{
	width: 30%;
	text-align: end;
	font-weight: 600;
	color: #056852
}
.air-price td:not(.pnum){	
	font-size: 16px;
}
.air-price tr:last-child{
	border-bottom: none;
}

@media(max-width:999px){
	.air-title{
		padding:0;
		background: #fff;
	}
	.airbg_sp{
		display: block;
		height: 30vh;
		overflow: hidden;
		margin-top: 20px;
	}	
}
@media(max-width:576px){
	.air-title h3{
		padding:0 1rem;
	}	
}
/*ROUNDcleaning
====================================================================*/
.eaet_img{
	position: relative;
}
.eaet_img::before{
	position: absolute;
	content: '';
	width:clamp(100px,30vw,200px);
	height: 200px;
	background: url("../img/logo03.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
	bottom:1%;
	right: 2%;
	transform-origin: center bottom;
    animation: yurayura 2s linear infinite;

}
@keyframes yurayura {
  0% , 100%{
      transform: rotate(5deg);
  }
  50%{
      transform: rotate(-5deg);
  }
}

.works_gallery{
	display: flex;
	align-items: flex-start;
    gap: 10px;
}

.works_gallery img{
	width: 100%;
	object-fit: cover;
}
.befoer{
	width: calc(100% / 3 - 30px);
	display: flex;	
	justify-content: space-between;
}
.befoer li {
	width: 90%;
}
.befoer li.arrow{
	width: 8%;
	max-width: 30px;
	min-width: 20px;
}
.befoer li.arrow img{
	width: 100%;
	object-fit: contain;
}
.works_gallery div{
	width: calc(90% / 3 );
}
.inst-link{
	max-width: 700px;
	margin: 0 auto;
}
@media(max-width:799px){
	.works_gallery{
		flex-wrap: wrap;
	}
	.befoer{
		width:40%;
	}
	.works_gallery div{
		width: calc(95% / 2 );
	}
}

/*PANEL cleaning
====================================================================*/
.wash-main{
	text-align: center;
	font-weight: 600;
	line-height: 2.5;
	font-size: 120%;
}

.demerit{
	background:url("../img/wash/solar-panel01.jpg");
	background-size: cover;
	background-position: left bottom;
	position: relative;	
	padding-bottom: 150px;
}
.demerit::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 200px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url("../img/wash/demerit_bottom.svg");
	background-size: cover;
	background-position: center bottom;
}
.demerit h2{
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
	text-shadow: 0 0 2px #333;
	font-size: clamp(1.438rem, 1.235rem + 0.85vw, 1.875rem);
}
.demerit h2 .yellow{
	color: #FFFD13;
}
.solar_img{
	max-width: 800px;
	margin: 0 auto;
}
.p-txt{
	text-align: center;
	line-height: 2;
	font-size: 110%;
}
.gallery{
	display: flex;
	justify-content: space-between;
}
.gallery li{
	width: calc(100% / 3 - 10px);		
}
.gallery li img{
	object-fit:contain;
	width: 100%;
	aspect-ratio: 4 / 3;
}

.block-baloon-top{
	display: table;
	padding: 2rem 3rem;
	margin-bottom: 1em;
	position: relative;
	background-color: #D7FBFF;
	border: 2px solid #0202aa;
	border-radius: 0.5em;
	width: 100%;
}
.block-baloon-top:before, .block-baloon-top:after	{
	content: '';
	position: absolute;
}
.block-baloon-top	{
	margin-top: 2.5em;
}
.block-baloon-top:first-child	{
	margin-top: 1.5em;
}
.block-baloon-top:before, .block-baloon-top:after	{
	top: -1.5em;
	left: 50%;
	transform: translateX(-50%);
	border-right: 10px solid transparent;
	border-bottom: solid 1.5em #0202aa;
	border-left: 10px solid transparent;
}
.block-baloon-top:after	{
	top: calc( 4px - 1.5em );
	border-bottom: solid 1.5em #D7FBFF;
}
.block-baloon-top h2{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 40px;
	color: #fff;
	text-shadow:1px 1px 0 #0202aa, -1px -1px 0 #0202aa,
              -1px 1px 0 #0202aa, 1px -1px 0 #0202aa,
              0px 1px 0 #0202aa,  0-1px 0 #0202aa,
              -1px 0 0 #0202aa, 1px 0 0 #0202aa;
}

.point-list {
	position: relative;
	padding-left: clamp(60px, 8vw, 80px);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;	
}

.point-list:nth-child(2){
	margin-left: 30px;
}
.point-list:nth-child(3){
	margin-left: 60px;
}
.point-list::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(63,193,201,0.3);
	font-size: 50px;
}

.point-list::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: rgba(63,193,201,1);
}

.w-footer-top{
	background: #2020aa;
	text-align: center;
	color: #fff;
}
.w-footer{
	text-align: center;
}
.w-footer h2{
	max-width: 600px;
	margin: 0 auto;
}
.w-footer p:first-child{
	font-size: 1.5rem;
}
@media(max-width:768px){
	.block-baloon-top {
		padding: 2rem 1rem;
	}	
	.block-baloon-top h2{
		margin-bottom: 30px;
		font-size: clamp(2.188rem, 1.881rem + 1.29vw, 2.5rem);
	}
	.point-list::before {
		font-size: clamp(2.188rem, 1.269rem + 3.87vw, 3.125rem);
	}	
	.point-list {
		font-size: clamp(1.125rem, 1.003rem + 0.52vw, 1.25rem);
	}	
}
@media(max-width:699px){
	.wash-main{
		line-height: 2;
		font-size: 100%;
	}	
	.p-txt{
		line-height: 1.7;
		font-size: 100%;
	}
}

@media(max-width:449px){
	.wash-main,.p-txt{
		text-align:left;
	}	
	.point-list:nth-child(2){
		margin-left: 15px;
	}
	.point-list:nth-child(3){
		margin-left: 30px;
	}	
}
/*Company
====================================================================*/
.gr_img{
	padding: 2rem;
}

.profilebox{
	background: #fff;
	padding: 3vh 5vh;
}
.profilebox tr{
	border-bottom: 1px dotted #999;
}
.profilebox th{
	width: 28%;
	padding: 1rem .5rem;
	color: #056852;
	position: relative;
}
.profilebox td{
	padding: 1rem .5rem;
	font-size: clamp(14px,2vw,18px);
}
.profilebox dl:first-child{
	margin-bottom: 15px;
}
.profilebox dt{
	color: #01AEA0;
}
.profilebox dd{
	padding-left: 1rem;
}
.profilebox p{
	font-size: clamp(18px,2.2vw,20px);
	color: #01AEA0;
	margin-bottom: 15px;
}
.map{
	width: 100%;
	height: 40vh;
}

@media(max-width:669px){
.profilebox th,.profilebox td{
	width: 100%;
	display: block;
}
	.profilebox th::before{
		position: absolute;
		content: '';
		width: 40px;
		height: 1px;
		background: #056852;
		bottom:10px;
		left: 50%;
		transform: translateX(-50%);
	}
}
/*Contact
====================================================================*/
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 900px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #005eb2;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #ccc;
	background: #fff;
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone .nb{
	font-weight: 600;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background-image: linear-gradient(90deg, rgba(144, 245, 154, 1), rgba(4, 202, 255, 1));
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone:hover{
	background: #f5f5f5;
}
@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 500px;
	}
	.phone_flex .phone{
		padding: 1rem;
	}
}
@media (max-width: 450px){
	.phone_flex .phone{
		width: calc(100%);
		margin: 15px 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #595757;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.95rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #01AEA0;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #595757;
	color: #595757 !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #595757;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
	color: #595757;
}
.mailform button {
    display: block;
	padding: .8rem 1.5rem;
	min-width: 280px;
	position: relative;
	background:#01AEA0;
	color: #fff;
	margin: 0 auto;
}
.mailform button::after{
	position: absolute;
	content: '';
	width: 30px;
	height: 1px;
	background: #fff;
	right: -5px;
	top: 50%;
	transform: translateY(-50%);
	transition: .4s all;
}
.mailform button:hover{
	background:#056852;	
}
.mailform button:hover::after{
	width: 50px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #595757;
	border-bottom: 3px solid #595757;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
/*ラジオボタン*/
.mailform input[type=radio] + label{
	margin-right: 10px;
}

.selectWrap div.selec{
	display: flex;
	align-items: baseline;
	margin-bottom: 5px;
	width: 100%!important;
}
.selectWrap p{
	width: 200px;
}

@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 6px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}


/*個人情報の取り扱いについて*/
.privacy_wrap {
	font-size: clamp(1.05rem, 0.9rem + 0.5333vw, 1.3rem);
	color: #595757;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1.5px solid #595757;
}
@media(max-width:450px) {
	.privacy_wrap {
		font-size: 1rem;
	}
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
}
.privacy_header i {
	color: #056852 !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	position: relative;
}
.privacy_text span::before {
	content: "■";
	display: inline-block;
	font-size: 0.7rem;
	margin-right: 0.35em;
	transform: translateY(-3px);
	color: #056852;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #056852;
}




