@charset "utf-8";
/* CSS Document */
blockquote {
	display: none !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	margin-inline-start: 0 !important;
	margin-inline-end: 0 !important;
}


@media screen and (max-width: 750px) {
	#product_container .option_types,
	#product_container .option_types .option_type label {
		margin-left: 0 !important;
		padding-left: 0 !important;
	}
	#product_container .option_types .quantity_number {
		width: 3em;
	}
	#product_container .input_option_type {
		height: 50px !important;
		padding: 8px 4px;
		line-height: 2.4;
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
	}
	#scheduled_1st_delivery_date_text {
		padding-top: 15px;
	}
}
/*-------------------------------------*
 * 画像・横線防止
 *-------------------------------------*/
 .imgbox img {
	border: 0;
	object-fit: cover;
	vertical-align: top !important;
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
/*-------------------------------------*
 * フォーム以外
 *-------------------------------------*/
#container {
	width: 100%;
	text-align: center;
}
#container img {
	width: 100%;
	vertical-align: bottom;
}
#contents {
	width: min(100%, 750px);
	margin: 0 auto;
	text-align: left;
}
#main {
	/*padding-bottom: 50px;*/
	position: relative;
}

/* CTA */
.btn_box {
	position: relative;
}
.btn_box a {
	position: absolute;
	margin: auto;
	/* right: 0; */
	bottom: 66px;
	left: 22px;
	display: block;
	width: 726px;
	height: auto;
}
@media screen and (max-width: 750px) {
	.btn_box a {
		width: calc(726*100vw/750);
		left: calc(22*100vw/750);
		bottom: calc(66*100vw/750);
	}
}
/* footer */
#footer {
	padding: 65px 48px 50px;
}

@media screen and (max-width: 750px) {
	#footer {
		padding: calc(65 * 100vw / 750) calc(48 * 100vw / 750) calc(50 * 100vw / 750);
	}
}


/*-------------------------------------*
* フローティングバナー
*-------------------------------------*/
.floating {
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	min-height: 100px;
}
.floating_inner {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.floating img.floating_txt {
	position: absolute;
	width: calc(468 * 100vw / 1200) !important;
	height: calc(48 * 100vw / 1200);
	max-width: 468px;
	max-height: 48px;
	left: min(calc(30 * 100vw / 1200),30px);
	bottom: min(calc(30 * 100vw / 1200),30px);
	margin:0;
}
.floating a {
	display: block;
	margin: calc(24 * 100vw / 750) calc(30 * 100vw / 750);
	position: absolute;
	margin: auto;
	right: min(calc(30 * 100vw / 1200),30px);
	bottom: min(calc(30 * 100vw / 1200),30px);
	left: auto;
	display: block;
	width: 400px;
	height: auto;
}
@media screen and (max-width: 750px) {
	.btn_box.floating {
		display: flex;
		min-height: calc(200* 100vw / 750);
	}
	.floating_inner {
		display: flex;
		flex-wrap: wrap;
	}
	.floating img.floating_txt {
		position: relative;
		left: 0;
		bottom: 0;
		width: calc(468 * 100vw / 750) !important;
		height: calc(48 * 100vw / 750);
		margin: calc(20 * 100vw / 750) auto calc(40 * 100vw / 750);
	}
	.btn_box.floating a {
		position: relative;
		left:0;
		display: block;
		margin: 0 auto;
		bottom: calc(20* 100vw / 750);
		width: calc(660*100vw/750);
	}
}    
/*-------------------------------------*
* モーダル
*-------------------------------------*/
/* モーダル */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    /* transition: opacity 0.25s, visibility 0.25s; */
	transition: opacity .25s ease;
}
.modal.is-open {
    visibility: visible;
    opacity: 1;
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0;
    border: 0;
	background: none;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.modal-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.imgbox{
	position: relative;
}
.modal-close {
	position: absolute;
    bottom: 43px;
    left: 50%;
    z-index: 2;
    padding: 0;
    border: none;
    cursor: pointer;
    transform: translateX(-50%);
    margin: 0;
    width: 164px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
}
.modal-content {
    padding: 40px 24px 24px;
}
.modal.is-closing {
	opacity: 0;
	visibility: visible;
	pointer-events: none;
  }
/*商品詳細ボタン*/
.btn_box button {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
	cursor: pointer;
}
@media screen and (max-width: 750px) {
	.modal{
		padding: calc(20* 100vw / 750);
	}
	.modal-close {
		bottom: calc(41* 100vw / 750);
		width: calc(164* 100vw / 750);
		height: calc(48* 100vw / 750);
		border-radius: calc(6* 100vw / 750);
	}
	.modal-content {
		padding: calc(40* 100vw / 750) calc(24* 100vw / 750) calc(24* 100vw / 750);
	}
	/*商品詳細ボタン*/
	.btn_box button {
		top: calc(16* 100vw / 750);
		width: calc(164* 100vw / 750);
		height: calc(48* 100vw / 750);
	}
}