@charset "utf-8";
/* CSS Document */


/* コンディション表示切替 PC/SP共通 */
#condition{
	display:none;/* 表示"inline-block"  非表示"none" */
}

/* コンディションボタン PC/SP共通　*/
#condition label:after{
    content: '+ 事務所移転による休業のお知らせ';
}

/* コンディション文章 PC/SP共通 */
#condition p:before{
    content: 'オンラインストア事務所移転に伴い2023年5月25日（木）は配送及びお問合せを休業とさせていただきます。5月26日（金）より順次配送及び回答させていただきます。ご迷惑をお掛けして誠に恐れ入りますが、ご理解を賜りますよう何卒宜しくお願いいたします。';
}



/* PCコンディション */
@media screen and (min-width: 768px){
	
	#condition {
		position: absolute;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		bottom: -40px;
		width: 100%;
		box-sizing: border-box;
		z-index: 8888;
		margin: 0 auto;
		text-align: right;
		font-size: 13px;
	}
	
	.condition_wrap{
		width: 90%;
		min-width: 1400px;
		margin: 0 auto;
		position: relative;
	}
	
	
	#condition input {
		display: none;
	}

	#condition label {
		color: #900;
		font-weight: bold;
		padding:10px 0;
	}


	#condition .btm {
		position: absolute;
		right: 0;
		margin: 10px 0 0 auto;
		color: #900;
		text-align: left;
		padding: 20px;
		background: rgba(255,255,255,0.9);
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
		opacity: 0;
		display: none;
		-moz-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
		z-index: 999;
	}

	#condition input:checked + .btm {
		opacity: 1.0;
		display: block;
	}
	
	#condition p{
		padding: 0;
		margin: 0;
		line-height: 1.6em;
		white-space:pre-wrap;
		width: 400px;
	}
}

	/* SPコンディション */  
@media screen and (max-width: 768px){
	#condition {
		position:fixed;
		top:100px;
		z-index: 99;
		left: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 10px;
		width: 100%;
	}
	

	#condition input {
		display: none;
	}
	#condition label {
		color: #900;
		font-weight: bold;
		cursor: pointer;
		padding:0 25px;
		display: inline-block;
		height: 30px;
		box-sizing: border-box;
		line-height: 30px;
		font-size: 0.8rem;
	}
	#condition .btm {
		position: absolute;
		color: #900;
		width: 95%;
		margin: 0 2.5%;
		text-align: center;
		padding: 2.5%;
		box-sizing: border-box;
		background: rgba(255,255,255,0.9);
		opacity: 0;
		-moz-transition: opacity 0.5s ease;
		-o-transition: opacity 0.5s ease;
		-webkit-transition: opacity 0.5s ease;
		transition: opacity 0.5s ease;
		display: none;
	}
	#condition input:checked + .btm {
		opacity: 1.0;
		display: block;
	}
	#condition p{
		text-align: left;
		padding: 0;
		margin: 0;
		font-size: 0.8rem;
		line-height: 1.3rem;
		white-space: pre-wrap;
		width: 100%;
	}
	
	#condition p:before{
		white-space: pre-wrap;
	}
}



/* モーダルバナー */
.bg_onetime_popup{
    position: fixed;
    display: grid;
    top: 0px;
    left: 0px;
    z-index: 10001;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    justify-content: center;
}

.bg_onetime_popup.js_active{
    opacity: 1;
    visibility: visible;
}

.onetime_popup{
    background-color: #fff;
    cursor: pointer;
    width: auto;
    height: auto;
    align-self: center;
    position: relative;
    padding: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
	max-width: 80vw;
}

.onetime_popup_title {
    position: absolute;
    padding: 0;
    margin: 0;
    color: #000;
    text-align: center;
    height: 24px;
    width: 24px;
    display: inline-block;
    top: -40px;
    right: 0;
}

.onetime_popup_title::before,
.onetime_popup_title::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    content: "";
    z-index: 9999;
}

.onetime_popup_title::before {
    transform: rotate(45deg);
}
.onetime_popup_title::after {
    transform: rotate(-45deg);
}

.onetime_popup_content {
    padding:0;
    text-align: center;
    display: flex !important;

}

.onetime_popup_content img{
	vertical-align: bottom;
}




