@charset "shift_jis";
/* CSS Document */

/*-----------------------------------------------*/
/*ベース*/
/*-----------------------------------------------*/
#cleaning2023{
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
	background: #f6fafa;
    }
    
#cleaning2023 .pc_none{
    display: none !important;
    }
    
#cleaning2023 img{
    width: 100%
    }
#cleaning2023 a{
    display: block;
    position: relative;
    
}  
#cleaning2023 a:hover{
    opacity: 0.9;
    color:#222 !important;
}

/*-----------------------------------------------*/
/*全体枠*/
/*-----------------------------------------------*/
#cleaning2023 .inner{
    margin:2% auto 0 auto;
    padding: 0;

}
#cleaning2023 section{
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    padding:3% 12%;
}
#cleaning2023 section:nth-of-type(2n){
    background:#e7f1f6;
}
#cleaning2023 section:nth-of-type(2n+1){
    background:#f6fafa;
}

/*-----------------------------------------------*/
/*見出し*/
/*-----------------------------------------------*/
/*h3*/
#cleaning2023 h3{
    font-size: 33px;
    position: relative;
    letter-spacing: 2px;
    /*border-bottom: 2px solid;*/
    margin-bottom: 4%;
    /*display: inline-block;*/
    color:#4f575a;
    
}

/*見出しアイコン*/
#cleaning2023 h3::after {
    background-image: url(/IMAGE/CLEANING2023/cl23_icon1.png);
}
#cleaning2023 h3::before {
    background-image: url(/IMAGE/CLEANING2023/cl23_icon2.png);
}

#cleaning2023 h3::after,
#cleaning2023 h3::before {
    content: "";
    position: absolute;
    top: -2%;
    background-repeat: no-repeat;
    width: 40px;
    height: 50px;

    background-size: 100%;
    animation: yureru-updown 3s infinite;
}
@keyframes yureru-updown {
	0% {
		transform: translate(0px, 1px);
	}
	5% {
		transform: translate(0px, -1px);
	}
	10% {
		transform: translate(0px, 1px);
	}
	15% {
		transform: translate(0px, -1px);
	}
	20% {
		transform: translate(0px, 1px);
	}
	25% {
		transform: translate(0px, -1px);
	}
	30% {
		transform: translate(0px, 0px);
	}
}

/*共通*/
#cleaning2023 h3::after {
    left: 35%;

}
#cleaning2023 h3::before {
    right: 35%;

}
/*バストイレ*/
#cleaning2023 section#bathroom h3::after {
    left: 31%;

}
#cleaning2023 section#bathroom h3::before {
    right: 33%;

}
/*寝室*/
#cleaning2023 section#bedroom h3::after {
    left: 39%;

}
#cleaning2023 section#bedroom  h3::before {
    right: 40%;

}
/*玄関*/
#cleaning2023 section#garden h3::after {
    left: 34%;

}
#cleaning2023 section#garden  h3::before {
    right: 34%;

}
/*車*/
#cleaning2023 section#car h3::after {
    left: 40%;

}
#cleaning2023 section#car  h3::before {
    right: 40%;

}
/*その他*/
#cleaning2023 section#sonota h3::after {
    left: 22%;

}
#cleaning2023 section#sonota  h3::before {
    right: 22%;

}

/*h4*/
#cleaning2023 h4 {
     font-size:4vw;
     color:#fff;
     margin:0 0 2vw 0;
     font-weight: normal;
}

/*-----------------------------------------------*/
/*アンカー*/
/*-----------------------------------------------*/
#cleaning2023 .navi {
    padding: 2% 14% 0 14%;
    position: relative;
    z-index: 3;
}

#cleaning2023 .navi ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin:0 auto;
}

#cleaning2023 .navi ul li{
    text-align: center;
    margin:0 1% 1% 0;
    box-sizing: border-box;
    position: relative;
   
}
/*3カラム*/
#cleaning2023 .type1 .navi ul li{
    width: calc((100% - 2% )/ 3);
   
}
/*4カラム*/
#cleaning2023 .type2 .navi ul li{
    width: calc((100% - 3% )/ 4);
   
}
#cleaning2023 .type1 .navi ul li:nth-child(3n),
#cleaning2023 .type2 .navi ul li:nth-child(4n){
    margin-right:0;

}

#cleaning2023 .navi ul li a{
    padding: 18px 0;
    display: flex;
    color: #fff;
    font-size: 16px;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
    line-height: 1.3em;
    box-shadow: 0 3px 0 #ccd5df9e;
    
}

#cleaning2023 .navi ul li a:hover{
    color: #fff !important;
    opacity: 0.8;
    box-shadow: none;
    transform:translateY(3px)  

}

#cleaning2023 .navi ul li a::after {
    font-family: 'Material Icons';
    font-size: 1.1em;
    position: absolute;
    content: "expand_more";
    bottom: 30%;
    right:6%;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s;
    transform: rotate(0deg);

}

/*場所で選ぶ 背景色*/
#cleaning2023 .type1 .navi ul li a{
    background: #6fbcd8;
}
/*汚れで選ぶ 背景色*/
#cleaning2023 .type2 .navi ul li a{
    background:#6bb3b5;
}


/*-----------------------------------------------*/
/*タブ - js版 */
/*-----------------------------------------------*/
#cleaning2023 .wrap_tab {
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 3%;
}

/* メニューボタン */
#cleaning2023 .tab-container {
  	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-bottom: 3px solid #b3d5dc;
	margin: 0 10%;
}

#cleaning2023 .tab-container > li.tab {/*3カラム*/
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 65px;
	text-align: center;
	cursor: pointer;
	margin:0 4px;
	transition: 0.5s all;
	width: 47%;
	font-size: 19px;
	border-radius: 6px 6px 0 0;
	background: #a7abb0;
}


#cleaning2023 .tab-container > li.tab span{
	color: #ffe681;
	font-size:27px;
    margin-right: 0.2vw;
    letter-spacing: 3px;
}


/*選択中*/
#cleaning2023 .tab-container > li.tab.current {
    color: #fff;
	height: 80px;
	margin-top: -15px;
	transition: 0.5s all;
}


/*場所で選ぶ 背景色*/
#cleaning2023 .tab-container > li.tab.current.type1{
    background: #6fbcd8;
}
/*汚れで選ぶ 背景色*/
#cleaning2023 .tab-container > li.tab.current.type2{
    background:#6bb3b5;
}


#cleaning2023 .tab-container > li.tab:hover,
#cleaning2023 .tab-container > li.tab.current:hover {
    opacity: 1;
}


#cleaning2023 .menu-container {
    position: relative;
    width: 100%;
	padding: 0;
}
#cleaning2023 .menu-container > .menu-box {
    display: none;
}
#cleaning2023 .menu-container > .menu-box.current {
    display: block;
}

#cleaning2023 .menu-btn {
    position: fixed;
    bottom: 18vw;
    right: 10px;
    display: flex;
    border-radius: 90px;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #222222;
}
#cleaning2023 .menu-btn span,
#cleaning2023 .menu-btn span:before,
#cleaning2023 .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
#cleaning2023 .menu-btn span:before {
    bottom: 8px;
}
#cleaning2023 .menu-btn span:after {
    top: 8px;
}
#cleaning2023 #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#cleaning2023 #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#cleaning2023 #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}
#cleaning2023 .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #cde5e2;
}
#cleaning2023 .menu-content ul {
    padding: 70px 10px 0;
}

#cleaning2023 .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}

#cleaning2023 .menu-content ul li{    border-bottom: 1px solid;}


#cleaning2023 .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #cde5e2;
    transition: all 0.5s;/*アニメーション設定*/
}
#cleaning2023 .menu-content h4{color: #222222;}
#cleaning2023 .menu-content {
    width: 50%;    margin-left: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #cde5e2e3;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}


/*-----------------------------------------------*/
/*商品*/
/*-----------------------------------------------*/

/*商品ラインナップ*/
#cleaning2023 .item_list ul {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
#cleaning2023 .item_list ul > li{/*3カラム*/
    transition: all 0.3s;
    width: calc((100% - 3% )/ 3);
    margin:0 1.5% 2% 0;
}
/*
#cleaning2023 .type2 #benki .item_list ul > li,
#cleaning2023 .type2 #sonota .item_list ul > li{
    width: calc((100% - 4% )/ 4);
    margin:0 1% 2% 0;
}
*/

#cleaning2023 .item_list ul > li a{
    display: block;
    padding:5px 5px 15px 5px;
    position: relative;
    transition: all 0.3s;
    background:#fff;
    border-radius: 5px;
    box-shadow:0 5px 12px #d3e7edc4;

}
#cleaning2023 .item_list ul > li a img{
    border-radius: 4px;

}
#cleaning2023 .item_list ul > li:nth-child(3n){
    margin-right: 0;
}


/*商品名*/
#cleaning2023 .item_list ul > li dd.txt{
    line-height: 1.3em;
    color: #222;
    font-size:16px;
    letter-spacing: 0em;
    padding:0;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #f1e289;
    margin-bottom: 10px;

}

/*商品説明文*/
#cleaning2023 .item_list ul > li dd.txt_com{
    font-size: 14px;
    line-height: 1.3em;
    color: #555;
    height:45px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}


/*アイコン*/
#cleaning2023 .item_list ul > li dd.icon ul > li{
    display: flex;
    font-size:15px;
    padding: 10px;
    width: auto;
    line-height: 1.3em;
    margin: 0;
    justify-content: center;
    align-items: center;
    color:#d04848;
    background:#999;
    width: 90%;
    margin: 10px auto 0 auto; 
    
}
#cleaning2023 .item_list ul > li dd.icon ul > li span{
    font-size: 20px;
    font-family: 'Lato';
    font-weight: 800;
}
    
/*ご購入はこちら*/   
#cleaning2023 .item_list ul > li dd.item_btn{
    margin:10px auto 0 auto;
    padding:5px 0;
    border-radius: 50px;
    font-size: 14px;
    position: relative;
    color: #fff;
    transition: all 0.3s;
    width: 90%;
}
/*場所で選ぶ 背景色*/
#cleaning2023 .type1 .item_list ul > li dd.item_btn{
    background: #6fbcd8;
}
/*汚れで選ぶ 背景色*/
#cleaning2023 .type2 .item_list ul > li dd.item_btn{
    background:#6bb3b5;
}
  
#cleaning2023 .item_list ul > li dd.item_btn::after {
    font-family: 'Material Icons';
    font-size: 1.3em;
    position: absolute;
    content: "expand_more";
    transform: rotate(270deg);
    bottom:16%;
    right:5%;
    color: #fff;
    transition: all 0.3s;
}

/*hover*/
#cleaning2023 .item_list ul > li a:hover{
    color: #fff;
    box-shadow: none;
    transform:translateY(-3px);
}
#cleaning2023 .item_list ul > li a:hover dd.item_btn::after{
    right:3%;
}
#cleaning2023 .item_list ul > li a:hover dd.item_btn {
    color:#fff !important;
    
}


/*-----------------------------------------------*/
/*価格プロ*/
/*-----------------------------------------------*/

#cleaning2023 .buy_price li{
	display: inline;
 }
#cleaning2023 li.motoprice,
#cleaning2023 span.spesicalprice {
	display: none;
}

#cleaning2023 .item_list ul > li.price {
	color:#dd5550 !important;
	border: none;
	font-weight: bold;
	margin:0 !important;
	background: none;
	font-size: 26px;
	width: auto !important;
}
#cleaning2023 li.intax  {
	display:none;

}

#cleaning2023 dd.price_w .buy_price{
   width:auto !important;

}


/*-----------------------------------------------*/
/*その他はこちら*/
/*-----------------------------------------------*/
#cleaning2023 ul[class^="cate-link_"]{
	display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin:1% 7% 0 7%;
}

#cleaning2023 ul[class^="cate-link_"] li a{
	font-size: 17px;
    display: block;
    padding:14px 0;
    color: #fff;
    position: relative;
    border-radius:5px;
    background: #7b95b1;
    box-shadow: 0 3px 0 #c1d3d58a;
}

#cleaning2023 .cate-link_1 li {/*1カラム*/
	 width: 70%;
     margin-bottom:1vw;
}
#cleaning2023 .cate-link_2 li {/*2カラム*/
	 width: calc((100% - 2.5%) /2);
	 margin:0 10px 10px 0;
}
#cleaning2023 .cate-link_3 li {/*3カラム*/
	 width: calc((100% - 19px) /3);
	 margin-right:10px;
}


#cleaning2023 ul[class^="cate-link_"] li a::after{
	font-family: 'Material Icons';
    font-size: 1.3em;
    position: absolute;
    content: "expand_more";
    transform: rotate(270deg);
    bottom:22%;
    right:4%;
    color: #fff;
    transition: all 0.3s;
}

#cleaning2023 ul[class^="cate-link_"] li a:hover{
    color:#fff!important;
    transform:translateY(3px);
    box-shadow: none;

}
#cleaning2023 ul[class^="cate-link_"] li a:hover::after{
    right:2%;
}
#cleaning2023 .cate-link_2 li:nth-child(2n),
#cleaning2023 .cate-link_3 li:nth-child(3n) {
	 margin-right:0;
}

/*-----------------------------------------------*/
/*ページトップ*/
/*-----------------------------------------------*/
#cleaning2023 .pagetop{
	position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    transition: 0.3s;
}
#cleaning2023 .pagetop a{
	display: flex;
    width: 70px;
    height:70px;
    color: #fff;
    font-size: 12px;
    line-height: 1.3em;
    background-color: rgb(176 185 116 / 70%);
    border-radius: 10vw;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

#cleaning2023 .pagetop a:hover{
    color: #fff !important;

}