@charset "utf-8" ;

/* 基本 */
body {
	/* font-family: "Kiwi Maru", serif; */
	/* weight: 300,400,500 */
	font-family: "Zen Maru Gothic", serif;
	/* weight 300,400,500,700,900 */
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: #191919;
	line-height: 1.5;
	background-color: #fff;
	letter-spacing: 0.01em;
	text-align: center;
}

ul, ol  {
	list-style: none ;
}

a  {
	color: inherit;
	text-decoration: none;
}

img {
  width: 100%;
}

.web {
	display: block;
}

.sp {
	display: none;
}

/* h2 */
h2 {
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-size: 35px;
}
h2::before {
	content: '-';
	padding-right: 10px;
}

h2::after {
	content: '-';
	padding-left: 10px;
}

/* 下部ボタン固定 */
.btn-fixed {
	position: sticky;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.sticky_form {
	width: 65%;
	margin: 0 auto;
	display: flex;
	/* justify-content: center; */
}

.sticky_form img {
	margin-bottom: -5.5px;
}

/* 料金表プラン用ボタン */
.btn-txt {
	margin-bottom: 10px;
}
.c-button {
	color: #000;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-size: 20px;
	text-decoration: none;
	padding: 0.9em 1.6em;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 1;
}
  
.c-button--gooey {
	color: #026497;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 4px solid #026497;
	background-color: #fff;
	border-radius: 0;
	position: relative;
	transition: all 700ms ease;
}
  
.c-button--gooey .c-button__blobs {
	height: 100%;
	filter: url(#goo);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	bottom: -3px;
	right: -1px;
	z-index: -1;
}
  
.c-button--gooey .c-button__blobs div {
	background-color: #026497;
	width: 34%;
	height: 100%;
	border-radius: 100%;
	position: absolute;
	transform: scale(1.4) translateY(125%) translateZ(0);
	transition: all 700ms ease;
}
  
.c-button--gooey .c-button__blobs div:nth-child(1) {
	left: -5%;
}
  
.c-button--gooey .c-button__blobs div:nth-child(2) {
	left: 30%;
	transition-delay: 60ms;
}
  
.c-button--gooey .c-button__blobs div:nth-child(3) {
	left: 66%;
	transition-delay: 25ms;
}
  
.c-button--gooey:hover {
	color: #fff;
}
  
.c-button--gooey:hover .c-button__blobs div {
	transform: scale(1.4) translateY(0) translateZ(0);
}

/* ヘッダー */
.header {
	height: 100px;
}

.header-inner {
	height: 100%;
	padding: 10px 2%;
	display: flex;
	align-items: center;
}

/* ハンバーガーボタン固定 */
.background {
	position: fixed;
	top: 20px;
	left: 2%;
	right: 0;
	z-index: 10;
}

/* ハンバーガーボタン開いた時のメニュー */
.header-site-menu {
	width: 38%;
	height: 100vh;
	padding: 100px 0 50px 3%;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	background-color: #026497;
	display: none;
	font-size: 16px;
}

/* メニュー開いた時のポジション */
.header-site-menu.is-show {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;	
}

.tel-header {
	width: 25%;
	margin-left: auto;
}

.site-menu li {
	margin-top: 20px;
	text-align: left;

	padding-bottom: 5px;
	position: relative;
}

.site-menu li ::before {
	background: #DFF1FF;
	content: '';
	width: 80%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.site-menu li:hover {
	opacity: 0.7;
}

.site-menu li :hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* ハンバーガーボタン */
/* <reset-style> ============================ */
button {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-family: inherit;
  }
/* ============================ */
/* <style for bg> ======== */
.background {
	border-radius: 16px;
	border: 1px solid #1a1a1a;
	background: rgba(234, 234, 234, 0.39);
	mix-blend-mode: luminosity;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20);
	backdrop-filter: blur(15px);
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
  
  /* <style for toggle-menu-button> ======== */
.toggle-menu-button {
	width: 32px;
	height: 32px;
	padding: 4px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
	transition: transform .4s;
}
  
.toggle-menu-button span {
	width: 100%;
	height: 0.25rem;
	border-radius: 0.125rem;
	background-color: #026497;
	box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
	transition: width .4s, transform .4s, background-color .4s;
}
  
.toggle-menu-button :nth-child(2) {
	width: 75%;
}
  
.toggle-menu-button :nth-child(3) {
	width: 50%;
}
  
.toggle-menu-button:hover {
	transform: rotate(-90deg);
}
  
.toggle-menu-button:hover span {
	width: .25rem;
	transform: translateX(-10px);
	background-color: #026497;
}

/* firstview */
.first-view {
      position: relative;
	  width: 100%;
      height: 100vh;
}
/*@media screen and (max-width: 768px) {	
.first-view {
      height: 50vh;
}
}*/


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
	position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.first-logo {
	width: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* firstview end */

/* ピカットクリーンとは */
#aboutus {
	margin: 120px 0;
}

#aboutus h2 {
	color: #026497;
}

.about-icon {
	margin: 50px 25%;
	display: flex;
	justify-content: center;
}

.about-title-p {
	margin: 5px 0;
	font-weight: 500;
}

/* 代表上田の紹介 */
.history {
	background: url(../images/history-bg.jpg) no-repeat;
	background-size: cover;
	padding: 80px 12%;
	text-align: left;
}

.history h2 {
	color: #E40C96;
}

.history-title-p {
	margin: 5px 0 30px 20px;
	font-weight: 500;
	color:#fff;
	text-shadow: 1px 2px 3px #000;
}

.history-list li {
	margin-bottom: 10px;
	color:#fff;
	text-shadow: 1px 2px 3px #000;
}

.history-list li::before {
	content: url(../images/history-icon.png);
	vertical-align: middle;
	padding-right: 20px;
}

/* ピカットクリーンの強み */
#advantage {
	padding: 120px 10%;
}

#advantage h2 {
	color: #026497;
}

.advantage-title-p {
	margin: 5px 0 50px;
	font-weight: 500;
}

.advantage-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	column-gap: 20px;
	row-gap: 20px;
}

/* サービス内容について */
#service {
	padding: 120px 0 50px;
	background-color: #DFF1FF;
}

#service h2 {
	color: #E40C96;
}

.service-title-p {
	margin: 5px 0 25px;
	font-weight: 500;
}

/* 害虫駆除 */
.extermination {
	background-color: #DFF1FF;
}

.extermination h2 {
	color: #026497;
	margin-bottom: 50px;
}

.price-wrap {
	padding: 0 5%;
}

.price-list {
	display: flex;
	justify-content: space-around;
}

.price-list li {
	margin: 0 10px;
	padding-bottom: 20px;
	background-color: #fff;
	border: 1px solid #888;
}

.price-list dl {
	padding: 0 10px;
}

.price-list dt {
	font-weight: 500;
	margin: 20px 0 4px;
}

.price-list dd {
	font-size: 16px;
}

.price-list p {
	margin-top: 10px;
	font-size: 12px;
}

.annotation {
	margin: 10px 0 50px 10px;
	text-align: left;
	font-size: 16px;
}

.service-recommend {
	margin-bottom: 45px;
	font-size: 28px;
	font-weight: 700;
}

.service-recommend::before {
	content: url(../images/goodtext.png);
	vertical-align: middle;
	padding-right: 10px;
}

/* 床洗浄ワックス */
.floorwax {
	padding: 120px 0;
}

.floorwax h2 {
	color: #026497;
	margin-bottom: 50px;
}

/* ハウスクリーニング */
.housecleaning {
	background-color: #DFF1FF;
}

.housecleaning h2 {
	padding: 120px 0 50px;
	color: #026497;
}

/* エアコンクリーニング */
.airconcleaning {
	padding: 120px 0;
}

.airconcleaning h2 {
	color: #026497;
	margin-bottom: 50px;
}

/* その他メニュー */
.othermanu {
	padding-bottom: 120px;
}

.othermanu  h2 {
	color: #026497;
	margin-bottom: 50px;
}

/* 実際の作業風景 */
.working-photos h2 {
	color: #E40C96;
}


/* よくある質問 */
.faq {
	margin: 120px 15% 100px;
	padding: 50px 5%;
	border: 1px solid #026497;
}

.faq h2 {
	margin-bottom: 30px;
}

/* 会社概要 */
.company {
	margin: 120px auto;
}

.company h2 {
	margin-bottom: 50px;
}

.company-logo {
	width: 30%;
	margin: 0 auto 20px;
}

.company-logo img {
	text-align: center;
}

.company-table {
	text-align: left;
}

.company-table table {
	width: 70%;
	margin:auto;
	border-collapse:  collapse;
}

.company-table th {
	padding: 10px;
	border: solid 1px #888;
}

.company-table td {
	padding:10px;
	border: solid 1px #888;
}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border-radius: 15px;
  	background-color: #DFF1FF;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: bold;
	text-align: left;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
  	margin:0 3% 0 3%;
    padding: 3%;
	text-align: left;
}

.footer {
	background-color: #000;
	font-size: 15px;
	color: #fff;
}




/* スマホ用CSS 450pxまで */
@media (max-width: 450px) {
	body {
		margin: 0 auto;
		font-size:16px;
	}

	.sp {
		display: block;
	}

	.web {
		display: none;
	}

	/* h2 */
	h2 {
		font-weight: 400;
		font-size: 28px;
	}

	/* 下部ボタン固定 */
	.sticky_form {
		width: 100%;
	}

	/* 料金表プラン用ボタン */
	.btn-txt {
		margin-bottom: 5px;
		font-size: 15px;
	}
	.c-button {
		padding: 0.7em 1.4em;
	}
	
	.c-button--gooey {
		letter-spacing: 1px;
	}

	/* ヘッダー */
	.header {
		height: 75px;
	}

	/* ハンバーガーボタン固定 */
	.background {
		position: fixed;
		top: 10px;
		left: 2%;
	}

	/* ハンバーガーボタン開いた時のメニュー */
	.header-site-menu {
		width: 75%;
		padding: 80px 0 50px 5%;
		top: 0;
	}

	.header-site-menu.is-show {
		top: 0;
	}

	.tel-header {
		width: 43%;
	}

	.site-menu li {
		margin-top: 18px;
	}

	/* ボタンメニュー */
	.background {
		width: 63px;
		height: 63px;
	}

	/* firstview */
	.first-view {
		position: relative;
		width: 100%;
		height: 75vh;
	}

	/* .swiper {
	width: 100%;
	height: 100%;
	}

	.swiper-slide {
	position: relative;
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	}

	.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	} */

	.first-logo {
	width: 85%;
	}
	/* firstview end */

	/* ピカットクリーンとは */
	#aboutus {
		margin: 50px 0;
	}

	.about-icon {
		margin: 25px 15%;
	}

	.about-title-p {
		margin: 5px 0;
	}

	.about-txt {
		margin: 0 4%;
		text-align: left;
		line-height: 1.7;
		letter-spacing: 0;
	}



	/* 代表上田の紹介 */
	.history {
		height: 650px;
		background: url(../images/history-bg-sp.jpg) no-repeat;
		background-size: cover;
		padding: 120px 0 0 2%;
		font-size: 16px;
	}

	.history-title-p {
		margin: 5px 0 20px 20px;
	}

	.history-list li::before {
		padding-right: 10px;
	}

	/* ピカットクリーンの強み */
	#advantage {
		padding: 20px 2% 30px;
	}

	.advantage-title-p {
		margin: 5px 0 20px;
	}

	.advantage-list {
		display: block;
	}

	.advantage-list li {
		margin-bottom: 20px;
	}

	/* サービス内容について */
	#service {
		padding: 50px 0;
	}

	.service-title-p {
		margin: 5px 0 20px;
	}

	.service-txt {
		margin: 0 auto;
	}

	/* 害虫駆除 */
	.extermination h2 {
		margin-bottom: 25px;
	}

	.price-wrap {
		padding: 0 2%;
	}

	.price-list {
		display: block;
	}

	.price-list li {
		margin: 25px 0 0;
	}

	.price-list dt {
		font-size: 18px;
	}

	.price-list dd {
		font-size: 18px;
	}

	.price-list p {
		font-size: 15px;
	}

	.annotation {
		margin: 5px 0 30px;
		font-size: 14px;
	}

	.annotation li {
		margin-bottom: 5px;
	}

	.service-recommend {
		margin: 0 auto 20px;
		font-size: 18px;
		font-weight: 500;
	}

	.service-recommend::before {
		content: url(../images/goodtext-sp.png);
		vertical-align: middle;
		padding-right: 0;
	}

	/* 床洗浄ワックス */
	.floorwax {
		padding: 50px 0;
	}

	.floorwax h2 {
		margin-bottom: 0;
	}

	/* ハウスクリーニング */
	.housecleaning h2 {
		padding: 50px 0 0;
	}

	/* エアコンクリーニング */
	.airconcleaning {
		padding: 50px 0 80px;
	}

	.airconcleaning h2 {
		margin-bottom: 0;
	}

	/* その他メニュー */
	.othermanu {
		padding-bottom: 50px;
	}

	.othermanu  h2 {
		margin-bottom: 0;
	}
	
	/* よくある質問 */
	.faq {
		margin: 50px 2% 60px;
		padding: 25px 2%;
		border: 1px solid #026497;
	}

	.faq h2 {
		margin-bottom: 25px;
	}

	/* 会社概要 */
	.company {
		margin: 60px auto;
	}

	.company h2 {
		margin-bottom: 18px;
	}

	.company-table {
		margin: 20px 2%;
	}

	.company-logo {
		width: 75%;
		margin: 0 auto;
	}

	.company-table table {
		width: 96%;
	}

	.company-table th {
		width: 90px;
		vertical-align: text-top;
	}
	/*アコーディオンタイトル*/
	.title {
		font-weight: 400;
		padding: 3% 3% 3% 40px;
	}

	.footer {
		background-color: #000;
		font-size: 15px;
		color: #fff;
	}

}

@media (min-width: 450px) {
	/* 電話リンク非表示 */
	a[href^="tel:"] {
        pointer-events: none;
    }
	}