﻿/*--------------------------------
■2px大きく
--------------------------------*/
html{font-size: 16px;}
body{-webkit-text-size-adjust: 120%;font-size: 16px;}

.font_12{font-size: 14px;}
.font_14{font-size: 16px;}
.font_16{font-size: 18px;}
.font_18{font-size: 20px;}
.font_20{font-size: 22px;}
.font_22{font-size: 24px;}
.font_24{font-size: 26px;}
.font_26{font-size: 28px;}
.font_28{font-size: 30px;}
.font_30{font-size: 32px;}
.font_100per{
font-size: -webkit-calc(1rem + 2px);
font-size: calc(1rem + 2px);
}
.font_2up{
font-size: -webkit-calc(1rem + 4px);
font-size: calc(1rem + 4px);
}
.font_4up{
font-size: -webkit-calc(1rem + 6px);
font-size: calc(1rem + 6px);
}
.font_6up{
font-size: -webkit-calc(1rem + 8px);
font-size: calc(1rem + 8px);
}
.font_8up{
font-size: -webkit-calc(1rem + 10px);
font-size: calc(1rem + 10px);
}
.font_10up{
font-size: -webkit-calc(1rem + 12px);
font-size: calc(1rem + 12px);
}
.font_2dw{
font-size: -webkit-calc(1rem);
font-size: calc(1rem);
}

.shop_link .font_12{font-size: 12px;}
.tel_bt .font_26 {font-size: 26px;}
@media  screen and (max-width: 768px){
.font_12_tb{font-size: 14px;}
.font_14_tb{font-size: 16px;}
.font_16_tb{font-size: 18px;}
.font_18_tb{font-size: 20px;}
.font_20_tb{font-size: 22px;}
.font_22_tb{font-size: 24px;}
.font_24_tb{font-size: 26px;}
.font_26_tb{font-size: 28px;}
.font_28_tb{font-size: 30px;}
.font_30_tb{font-size: 32px;}
.font_100per_tb{
font-size: -webkit-calc(1rem + 2px);
font-size: calc(1rem + 2px);
}
.font_2up_tb{
font-size: -webkit-calc(1rem + 4px);
font-size: calc(1rem + 4px);
}
.font_4up_tb{
font-size: -webkit-calc(1rem + 6px);
font-size: calc(1rem + 6px);
}
.font_6up_tb{
font-size: -webkit-calc(1rem + 8px);
font-size: calc(1rem + 8px);
}
.font_8up_tb{
font-size: -webkit-calc(1rem + 10px);
font-size: calc(1rem + 10px);
}
.font_10up_tb{
font-size: -webkit-calc(1rem + 12px);
font-size: calc(1rem + 12px);
}
.font_2dw_tb{
font-size: -webkit-calc(1rem);
font-size: calc(1rem);
}
}

@media  screen and (max-width: 667px){
html{font-size: 15px;}
body{-webkit-text-size-adjust: 110%;font-size: 15px;}

.font_12_sp{font-size: 13px;}
.font_14_sp{font-size: 15px;}
.font_16_sp{font-size: 17px;}
.font_18_sp{font-size: 19px;}
.font_20_sp{font-size: 21px;}
.font_22_sp{font-size: 23px;}
.font_24_sp{font-size: 25px;}
.font_26_sp{font-size: 27px;}
.font_28_sp{font-size: 29px;}
.font_30_sp{font-size: 31px;}
.font_100per_sp{
font-size: -webkit-calc(1rem + 1px);
font-size: calc(1rem + 1px);
}
.font_2up_sp{
font-size: -webkit-calc(1rem + 3px);
font-size: calc(1rem + 3px);
}
.font_4up_sp{
font-size: -webkit-calc(1rem + 5px);
font-size: calc(1rem + 5px);
}
.font_6up_sp{
font-size: -webkit-calc(1rem + 7px);
font-size: calc(1rem + 7px);
}
.font_8up_sp{
font-size: -webkit-calc(1rem + 9px);
font-size: calc(1rem + 9px);
}
.font_10up_sp{
font-size: -webkit-calc(1rem + 11px);
font-size: calc(1rem + 11px);
}
.font_2dw_sp{
font-size: -webkit-calc(1rem - 1px);
font-size: calc(1rem - 1px);
}

.tel_bt .font_26{font-size: 23px;}
.intro_title.font_24_sp{font-size: 24px;}
#page8 .contact_tel p.font_14_sp{font-size: 14px;}
#page8 .contact_tel a.font_12{font-size: 11px;}
#page8 .contact_tel a span.font_16_sp{font-size: 16px;}
}

/*--------------------------------
疑似要素にオブジェクト
--------------------------------*/
#main_img,#contents3 li{position: relative;}
/*リピートなし*/
#main_img:before,#main_img:after,.obj,#contents3 li:before{
content: "";
display: block;
background-size: cover;
background-repeat: no-repeat;
position: absolute;
}

#main_img:before{
background-image: url(./Dup/img/obj1.png);
background-size: 100%;
width: 40vw;
height: 40vw;
top:47%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
-webkit-animation: rotate 15s linear infinite;
animation: rotate 15s linear infinite;
}
@keyframes rotate {
from{
top: 47%;
left: 50%;
-ms-transform: translate(-50%,-50%) rotate(0deg);
-webkit-transform: translate(-50%,-50%) rotate(0deg);
transform: translate(-50%,-50%) rotate(0deg);
}
to{
top: 47%;
left: 50%;
-ms-transform: translate(-50%,-50%) rotate(360deg);
-webkit-transform: translate(-50%,-50%) rotate(360deg);
transform: translate(-50%,-50%) rotate(360deg);
}
}
#main_img:after{
background-image: url(./Dup/img/catch.png);
background-size: 100%;
width: 50vw;
height: 8vw;
top:47%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
.obj2,.obj3{
background-size: 100%;
width: 19vw;
height: 17vw;
}
.obj2{
background-image: url(./Dup/img/obj2.png);
bottom: 0;
left: 0;
}
.obj3{
background-image: url(./Dup/img/obj3.png);
top: 0;
right: 0;
}

#contents3 li{padding-left: 30px;}
/* Font Awesome */
#contents3 li:before{
font-family: "Font Awesome 5 Free";
content: "\f058";
font-weight: 900;
color: #23691E;
position: absolute;
top: 0;
left: 0;
}
/*--------------------------------
全体
--------------------------------*/
.shop_link p{width: 90%;}
/*--------------------------------
TOP
--------------------------------*/
span.bg_box{opacity: 0.3;}
#contents_wrap .bg_container{
background-image: url(./Dup/img/bg2.jpg);
background-size: cover;
background-position: center center;
}
#contents_wrap .tab_content .box{top: 100px;}
#contents_wrap .con_item{opacity: 0.2;}

/* TOPお知らせ */
.topcms_news_type2 .cate_box {
	width: 46.33333%!important;
	margin-right: 1.5%;
	margin-left: 1.5%;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0);
	/* padding: 20px; */
	/* border-radius: 20px; */
	/* background-color: #f5f5f5; */
}
.topcms_news_type2 .cate_box:hover {
	transform: translateY(-5px);
}
.topcms_news_type2 .cate_box .box_item {
	cursor: pointer;
}
.topcms_news_type2 .txt_height {
	height: 5em
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
.topcms_news_type2 .cate_box {width: 100%!important;}
.topcms_news_type2 .txt_height {height: 3em}
}
/*--------------------------------
下層
--------------------------------*/
#page_title h2 span.font_anim{height: 60px;}
/* 回収の流れ */
.flow_type2 .cate_title {
    border-bottom: solid 3px #ccc;
    position: relative;
}
.flow_type2 .cate_title::after {
    content: '';
    display: block;
    background: #23691e;
    width: 30%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -3px;
}
.flow_type2 .box_wrap {
	border: 3px solid #82b95f;
}
.flow_type2 .cate_box {
	padding: 30px;
	width: 100%!important;
}
.flow_type2 .box_txt1 {
    background-color: #23691e;
    color: #ffffff;
    text-align: center;
}
.flow_type2 .cate_box:not(:last-child) {
	border-bottom: 3px solid #82b95f;
	position: relative;
}
.flow_type2 .cate_box:not(:last-child)::before,
.flow_type2 .cate_box:not(:last-child)::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 17%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flow_type2 .cate_box:not(:last-child)::before {
	border-width: 22px;
	border-top-color: #82b95f;
}
.flow_type2 .cate_box:not(:last-child)::after {
	border-width: 18px;
	border-top-color: #fff;
}
/*
.flow_type2 .cate{counter-reset: number 0;}

.flow_type2 .box_txt1::before {
    counter-increment: number 1;
    content: "step." counter(number);
    background-color: #23691E;
    padding: 5px 10px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin: 0px auto 10px;
    width: 50%;
}
*/

/* よくあるご質問 */
.qa_type5 .faq_no {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    top: -10px;
    left: 0;
	-webkit-background-clip: padding-box; 
	-moz-background-clip: padding; 
	background-clip: padding-box;
}
.qa_type5 .box_title1, .qa_type5 .box_txt1 {padding-left: 70px;line-height: 1.7;}


/*-------- スマートフォン --------*/
@media screen and (max-width: 667px){
.flow_type2 .cate_box:first-child {
    padding: 20px 20px 30px 20px;
}
.flow_type2 .cate_box:not(:first-child) {
    padding: 40px 20px 20px 20px;
}
.flow_type2 .cate_box:not(:last-child)::before, .flow_type2 .cate_box:not(:last-child)::after {
    left: 50%;
}
}
/*-------- FireFox --------*/
@-moz-document url-prefix(){
.flow_type2 .cate_box:not(:last-child)::before, .flow_type2 .cate_box:not(:last-child)::after {top: 98% !important;}
}

#page8 .tel_txt.bg_color2{background-color: #d2debe;}

/*タブレット用（768px以下）*/
@media  screen and (max-width: 768px){

#main_img:before{
width: 50vw;
height: 50vw;
top:50%;
-webkit-animation: rotate2 15s linear infinite;
animation: rotate2 15s linear infinite;
}
#main_img:after{
width: 80vw;
height: 13vw;
top: 50%;
}
.obj3{
top: auto;
bottom: 0;
transform: scale(1, -1);
}

}
@keyframes rotate2 {
from{
top: 50%;
left: 50%;
-ms-transform: translate(-50%,-50%) rotate(0deg);
-webkit-transform: translate(-50%,-50%) rotate(0deg);
transform: translate(-50%,-50%) rotate(0deg);
}
to{
top: 50%;
left: 50%;
-ms-transform: translate(-50%,-50%) rotate(360deg);
-webkit-transform: translate(-50%,-50%) rotate(360deg);
transform: translate(-50%,-50%) rotate(360deg);
}
}
/*スマホ用（667px以下）*/
@media  screen and (max-width: 667px){

#logo{padding: 0;padding-left: 10px;}
.shop_link{width: 90px;}
.overlay.open .menu_bg_box{backdrop-filter: blur(3px);}
.overlay .menu_box{backdrop-filter: none;}
footer .sns_links li{max-width: 40px;}
#main_img:after{
width: 95vw;
height: 15vw;
}
#page_title h2 span.font_anim{height: 40px;}

}

/*IE*/
@media all and (-ms-high-contrast: none) {}




/*--------------------------------
自動リンク
--------------------------------*/
/* color */
.linkStyle{color: #23691E; text-decoration: underline;}
.txt_color_nomal .linkStyle{color: #23691E;}
.txt_white .linkStyle{color: white;}
.txt_red .linkStyle{color: red;}
.bg_color1 .linkStyle{color: #fff;}
.bg_color2 .linkStyle{color: #23691E;}
.bg_color3 .linkStyle{color: #fff;}
.bg_color4 .linkStyle{color: #82B95F;}

/*IEのみ*/
@media all and (-ms-high-contrast: none) {
.linkStyle{display: inline-block;}
}

/*--------------------------------
カラー
--------------------------------*/
body,.txt_color_nomal,.hvr_txt_color_nomal:hover{color: #333333;}
.txt_black,.hvr_txt_black:hover{color: black;}
.txt_white,.hvr_txt_white:hover{color: white;}
.txt_red,.hvr_txt_red:hover{color: red;}
.txt_color1,.hvr_txt_color1:hover{color: #23691E;} /* メインカラー */
.txt_color2,.hvr_txt_color2:hover{color: #A5BE7D;} /* サブカラー */
.txt_color3,.hvr_txt_color3:hover{color: #82B95F;} /* アクセントカラー1 */
.txt_color4,.hvr_txt_color4:hover{color: #E6E1C3;} /* アクセントカラー2 */

/* background-color */
.bg_white,.hvr_bg_white:hover{background-color: white;} /* 白背景 */
.bg_black,.hvr_bg_black:hover{background-color: black;} /* 黒背景 */
.bg_color1,.hvr_bg_color1:hover{background-color: #23691E;} /* メインカラー */
.bg_color2,.hvr_bg_color2:hover{background-color: #A5BE7D;} /* サブカラー */
.bg_color3,.hvr_bg_color3:hover{background-color: #82B95F;} /* アクセントカラー1 */
.bg_color4,.hvr_bg_color4:hover{background-color: #E6E1C3;} /* アクセントカラー2 */
.bg_color_clear,.hvr_bg_color_clear:hover{background-color: transparent!important;}

/* border-color */
.border_white,.hvr_border_white:hover{border-color: white;}
.border_black,.hvr_border_black:hover{border-color: black;}
.border_color1,.hvr_border_color1:hover{border-color: #23691E;}
.border_color2,.hvr_border_color2:hover{border-color: #A5BE7D;}
.border_color3,.hvr_border_color3:hover{border-color: #82B95F;}
.border_color4,.hvr_border_color4:hover{border-color: #E6E1C3;}