@charset "utf-8";
/* CSS Document */
/*-------------------------------------------------------------
---------------------------------------------------------------
                           共 通
---------------------------------------------------------------
-------------------------------------------------------------*/
.pcNone { display: none !important; }
.spNone { display: block !important; }

/*----------------------------------------------------
 floatingbanner
----------------------------------------------------*/
.add-control {
    box-sizing: border-box;
    position: fixed;
	bottom: 1.5%;
    right: 1.5%;
    z-index: 11;
	opacity: 0;
	transform: translate(0, 100px); /* フェードインで動く高さを指定 */
	transition: all 2000ms; /* フェードインにかかる時間を指定 */
}
.effect-fade {
}
.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.add-control .box{
	width: 292px;
    height: 251px;
}
.add-control .box img {
	width: 100%;
}
.btn {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
}
.btn span::before,
.btn span::after {
	display: block!important;
    content: "";
    position: absolute;
    top: 50%;
    left: 53%;
    width: 80%;
    height: 13%;
    margin: -8% 0 0 -42%;
    background: #727171;
}
.btn span::before {
	transform: rotate(-45deg);
}
.btn span::after {
	transform: rotate(45deg);
}
.btn:hover {
    cursor: pointer;
}
.btn:active {
    background: #dcdddd;
}

/* close button */
.btn {
    color: #fff;
    background: #dcdddd;
    border-radius: .50em;
    text-align: center;
    display: table;
    cursor: pointer;
}
.btn:hover {
    cursor: pointer;
}
.btn:active {
    background: #727171;
}

/* close button */
.action-close {
    position: relative;
    margin-top: 2em;
}
.action-close .btn {
    position: absolute;
    right: -1em;
    top: -1em;
}
.action-close .box {
    margin-bottom: 2em;
}

/* checkbox 非表示 */
.add-control .checkbox {
    display: none!important;
}


/* close button's control */
.add-control .action-close #close:checked ~ .btn {
    display: none!important;
}
.add-control .action-close #close:checked ~ .box {
    display: none!important;
}
.action-close #close:checked > .add-control {
    display: none!important;
}






@media screen and (max-width: 1099px) {
.pcNone { display: none !important;}
.spNone { display: block !important;}

	
	
}

@media screen and (max-width:767px) {
.pcNone { display: block !important; }
.spNone { display: none !important; }



}

