/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: var(--BROWN01_OP80);
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
}

@media screen and (min-width: 768px){
	.modal-container{
		padding: 40px 20px;
	}
}

@media screen and (max-width: 767px){
	.modal-container{
		padding: 40px 20px 85px;
	}
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
	z-index: 999;
}

/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 700px;
	width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	width: fit-content;
	display: flex;
	align-items: center;
	z-index: 999;
	color: var(--TXT_COLOR_BASE);
	cursor: pointer;
}
.modal-close::after{
	content: "";
	display: inline-block;
	background: url(/asset2024/images/common/clsoe.svg) no-repeat center center / 100%;
	aspect-ratio: 1 / 1;
}
@media screen and (min-width: 768px){
	.modal-close{
		top: 16px;
		right: 12px;
		font-size: 14px;
		gap: 10px;
	}
	.modal-close::after{
		width: 20px;
	}
}
@media screen and (max-width: 767px){
	.modal-close{
		top: 8px;
		right: 12px;
		font-size: 13px;
		gap: 10px;
	}
	.modal-close::after{
		width: 18px;
	}
}

/*モーダル内のコンテンツの指定*/
.modal-content{
	background: rgba(255,254,248,0.95);
	text-align: left;
	padding: var(--GAP_40) var(--GAP_30);
	color: var(--TXT_COLOR_BASE);
}

/* ギャラリー一覧ページ用 */
.sg-gallery-page{
	font-family: "Noto Sans JP", serif !important;
}
.sg-detail-page{
	font-family: "Noto Sans JP", serif !important;
}

.sg-gallery-page .sort_area a{
	text-decoration: none;
}

.sg-gallery-page .sort_area a.active{
	text-decoration: underline;
	font-weight: bold;
}

.sg-gallery-page .search_btn_div{
	margin-left: 5%;
	position: fixed;
	z-index: 100;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .search_btn_div{
		top: 15%;
		width: 120px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .search_btn_div{
		bottom: 12%;
		width: 85px;
	}
}

.sg-gallery-page .search_btn_div a{
	content: "";
	display: block;
	background: url(../../images/common/search_btn_bg.png) no-repeat center center / cover;
	aspect-ratio: 1/1;
}

.sg-gallery-page .favorite_area{
	display: flex;
	justify-content: end;
	margin-top: 10px;
}

.sg-gallery-page .favorite_area .favorite_link a{
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: var(--FZ_16);
	line-height: 1;
	border: 1px solid;
}
@media screen and (min-width: 768px){
	.sg-gallery-page .favorite_area .favorite_link a{
		padding: 15px 25px;
	}
}
@media screen and (max-width: 767px){
	.sg-gallery-page .favorite_area .favorite_link a{
		padding: 10px 15px;
	}
}

.sg-gallery-page .favorite_area .favorite_link a svg{
	transform: translateY(2px);
}

.sg-gallery-page .free_area{
	background: var(--YELLOW04);
	width: var(--INNER_WIDTH);
	margin-inline: auto;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .free_area{
		padding: var(--GAP_30);
		max-width: 950px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .free_area{
		padding: 20px 10px;
	}
}

.sg-gallery-page .keyword_form_title{
	margin-top: 10px;
	margin-left: 25%;
}

.sg-gallery-page .keyword_form{
	display: flex;
	justify-content: center;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .keyword_form{
		margin-block: var(--GENERALSEC_HALF) var(--GAP_70);
	}
	.sg-gallery-page .g-search__searchForm{
		max-width: 600px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .keyword_form{
		margin-block: 30px 30px;
	}
}

.sg-gallery-page .keyword_form .keyword_form_div{
	display: flex;
	justify-content: center;
	width: 50%;
}

.sg-gallery-page .keyword_form .keyword_form_div #keyword_search{
	background: #fff;
	border: 1px solid #ccc;
	border-radius: initial;
}

.sg-gallery-page .keyword_form .keyword_form_div button{
	display: inline-block;
	padding: 4px;
	background-color: #fff;
	cursor: pointer;
	position: absolute;
	right: 25%;
	border: 1px solid #ccc;
	border-left: none;
	border-bottom: none;
}

.sg-gallery-page .keyword_form .keyword_form_div button svg{
	vertical-align: middle;
}

.sg-gallery-page .sg-item__link{
	position: relative;
}

.sg-gallery-page .sg-item__link .postage_area{
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 0 0 0 10px;
	background: var(--PINK05);
	color: var(--WHITE);
	padding: 4px 10px;
	font-size: var(--FZ_12);
	z-index: 2;
}
.sg-gallery-page .sg-item__link .postage_area.postage_plus{
	background: var(--PURPLE01);
}

/* 商品詳細 - 送料 */
.sg-gallery-page .price_postage_area--product{
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	align-items: center;
}
.sg-gallery-page .price_postage_area--product .postage_area{
	display: inline-block;
	background: var(--PINK05);
	color: var(--WHITE);
	padding: 2px 5px;
	font-size: var(--FZ_11);
}
.sg-gallery-page .price_postage_area--product .postage_area.postage_plus{
	background: var(--PURPLE01);
}
@media screen and (min-width: 768px){
	.sg-gallery-page .price_postage_area--product{
		gap: 10px;
	}
}
@media screen and (max-width: 767px){
	.sg-gallery-page .price_postage_area--product{
		gap: 5px;
	}
}

/* No. */
.sg-gallery-page .number_area{
	margin: 10px 0 5px 0;
	font-weight: bold;
	padding: 3px 5px;
	border: 1px solid;
	width: fit-content;
}
.sg-gallery-page .number_area .number{
	letter-spacing: 0.02em !important;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .number_area{
		font-size: 12px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .number_area{
		font-size: 11px;
	}
}

.sg-gallery-page .item_title{
	font-weight: bold;
	font-size: 1.4rem;
	padding: 5px;
	background: var(--PINK03);
}

.sg-gallery-page .item_description{
	font-size: 1.2rem;
	padding: 5px 0;
}

/* 価格 */
.sg-gallery-page .price_postage_area{
	margin-bottom: 7px;
	text-align: right;
}
.sg-gallery-page .price_postage_area .price_area{
	border-bottom: dotted 2px #87CEFA;
	line-height: 1.4;
}
@media screen and (min-width: 768px){
	.sg-gallery-page .price_postage_area .price_area{
		font-size: var(--FZ_20);
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .price_postage_area .price_area{
		font-size: 18px;
	}
}

.sg-gallery-page .price_postage_area .tax_area{
	font-size: 1rem;
}

/* タグ */
.sg-gallery-page .tag_area{
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 7px;
}

.sg-gallery-page .tag_area a{
	background: var(--PINK03);
	text-align: center;
	font-size: var(--FZ_11);
	font-weight: 400;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .tag_area a{
		padding: 2px 15px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .tag_area a{
		padding: 2px 5px;
	}
}

/* オプション */
.sg-gallery-page .option_area{
	margin-bottom: 7px;
}

.sg-gallery-page .option_area .option_title{
	background: #F5F2E5;
	width: auto;
	padding: 2px 10px;
	display: inline-block;
	font-weight: bold;
	margin-bottom: 3px;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .option_area .option_title{
		font-size: 12px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .option_area .option_title{
		font-size: 11px;
	}
}

.sg-gallery-page .option_area .option_name{
	font-size: 1.2rem;
}

/* ボタン */
.sg-gallery-page .btn_area a{
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	padding: 5px;
	text-align: center;
	font-weight: bold;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .btn_area a{
		margin: 7px 0;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .btn_area a{
		margin: 5px 0;
	}
}

.sg-gallery-page .btn_area a.open_link{
	background: var(--PINK02);
}

.sg-gallery-page .btn_area a.open_tel_modal{
	background: var(--YELLOW02);
}

.sg-gallery-page .btn_area a.open_product{
	background: var(--GREEN02);
}

.sg-gallery-page .btn_area a::before{
	content: "";
	display: inline-block;
	background: no-repeat center center / 100%;
	width: 14px;
}

.sg-gallery-page .btn_area a .btn_area_title{
	width: fit-content;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .btn_area a .btn_area_title{
		font-size: 12px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .btn_area a .btn_area_title{
		font-size: 11px;
	}
}

.sg-gallery-page .btn_area .open_link::before{
	background-image: url(/sg/images/common/open_link.svg);
	aspect-ratio: 16/15;
}

.sg-gallery-page .btn_area .open_tel_modal::before{
	background-image: url(/sg/images/common/open_tel_modal.svg);
	aspect-ratio: 1/1;
}

.sg-gallery-page .btn_area .open_product::before{
	background-image: url(/sg/images/common/open_product.svg);
	aspect-ratio: 14/20;
}

.sg-gallery-page .tel_modal .tel_modal_top{
	background: var(--YELLOW04);
	text-align: center;
	padding: 10px;
	margin: 10px;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .tel_modal .tel_modal_top .tel_modal_top_tel{
		font-weight: bold;
		font-size: 3rem;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .tel_modal .tel_modal_top .tel_modal_top_tel{
		font-weight: bold;
		font-size: 2.5rem;
	}
}

.sg-gallery-page .tel_modal .tel_modal_top .tel_modal_top_other{
	font-size: 1.2rem;
}

.sg-gallery-page .tel_modal .tel_modal_sales{
	border: 1px solid var(--PINK01);
	padding: 20px 15px;
	margin-block: 20px;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .tel_modal .tel_modal_sales{
		width: 85%;
		margin-inline: auto;
	}
}

@media screen and (min-width: 768px){
	.sg-gallery-page .tel_modal .tel_modal_sales .tel_modal_sales_inner{
		width: fit-content;
		margin-inline: auto;
	}
}

.sg-gallery-page .tel_modal .tel_modal_sales .tel_modal_sales_inner .tel_modal_sales_hour{
	font-weight: bold;
	margin-bottom: 10px;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .tel_modal .tel_modal_sales .tel_modal_sales_inner .tel_modal_sales_hour{
		font-size: var(--FZ_18);
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .tel_modal .tel_modal_sales .tel_modal_sales_inner .tel_modal_sales_hour{
		font-size: 12px;
		text-align: center;
		white-space: nowrap;
	}
}

.sg-gallery-page .tel_modal .tel_modal_sales .tel_modal_sales_inner .tel_modal_sales_other{
	font-size: 1rem;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .tel_modal .tel_modal_detail{
		display: flex;
		gap: 20px;
	}
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_img{
	flex: 1.2;
}

@media screen and (max-width: 767px){
	.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_img{
		width: 75%;
		margin: 0 auto 20px;
	}
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data{
	flex: 2;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_data_other{
	font-size: 1rem;
	text-align: center;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_data_number{
	background: var(--PINK05);
	color: var(--WHITE);
	font-weight: bold;
	font-size: 2.5rem;
	padding: 5px;
	text-align: center;
	margin-bottom: 20px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_description_2{
	font-size: 1rem;
	color: #3B7BDD;
	padding-bottom: 10px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_description{
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_postage_price{
	text-align: right;
	margin-bottom: 5px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_postage_price span:nth-child(1){
	font-size: 12px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_postage_price .price{
	font-size: 18px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_postage_price .tel_modal_detail_postage_price_tax{
	font-size: 1rem;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_postage_price .postage_free{
	padding: 2px 5px 2px 5px;
	margin-right: 10px;
	background: var(--PINK05);
	color: var(--WHITE);
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_postage_price .postage_plus{
	padding: 2px 5px 2px 5px;
	margin-right: 10px;
	background: var(--PINK05);
	color: var(--WHITE);
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_option_area{
	margin-top: 20px;
	background: var(--YELLOW04);
	padding: 15px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_option_area .tel_modal_detail_option_title{
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_option_area .tel_modal_detail_option_name{
	font-size: 1.1rem;
}

.sg-gallery-page .tel_modal .tel_modal_detail .tel_modal_detail_data .tel_modal_detail_description_3{
	font-size: 1rem;
	color: var(--TXT_COLOR_BASE);
	margin-top: 10px;
}

.sg-gallery-page .order_guide_area{
	width: var(--INNER_WIDTH);
	margin-inline: auto;
	border: 2px solid;
	background: var(--WHITE);
	letter-spacing: 0.1em;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .order_guide_area{
		max-width: 950px;
		padding: var(--GAP_30);
		font-size: var(--FZ_18);
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .order_guide_area{
		padding: 10px;
		font-size: 14px;
	}
}

.sg-gallery-page .order_guide_area .order_guide_area_title{
	font-weight: bold;
	margin-bottom: 10px;
}

.sg-gallery-page .order_guide_area .order_guide_area_body{
	counter-reset: original-counter;
	color: var(--TXT_COLOR_BASE);
}

.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail{
	counter-increment: original-counter;
	position: relative;
	font-weight: 500;
}

.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail .pink{
	color: var(--PINK01);
}

@media screen and (min-width: 768px){
	.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail{
		padding-left: 30px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail{
		padding-left: 22px;
	}
}

.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail::before{
	content: counter(original-counter);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	border-radius: 50%;
	font-weight: bold;
	border: 1px solid;
	aspect-ratio: 1/1;
	font-size: var(--FZ_15);
	line-height: 1;
	letter-spacing: 0em;
}

@media screen and (min-width: 768px){
	.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail::before{
		top: 10%;
		width: 20px;
		height: 20px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail::before{
		top: 4px;
		width: 15px;
		height: 15px;
	}
}

.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_detail:nth-child(3){
	margin-bottom: var(--GAP_15);
}

.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_alert{
	font-weight: 400;
	color: var(--TXT_COLOR_BASE);
}

@media screen and (min-width: 768px){
	.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_alert{
		font-size: 12px;
	}
}

@media screen and (max-width: 767px){
	.sg-gallery-page .order_guide_area .order_guide_area_body .order_guide_area_body_alert{
		font-size: 11px;
	}
}

.sg-gallery-page .data-not-found{
	text-align: center;
	font-size: 1.8rem;
}

/* ご注文情報ページ用 */
.sg-detail-page .c-upper{
	margin-bottom: var(--GAP_30);
}

.sg-detail-page .page_delete_btn{
	display: flex;
	justify-content: end;
}

.sg-detail-page .page_delete_btn a{
	padding: 10px 20px;
	color: var(--TXT_COLOR_BASE);
	background: var(--FS_MARK_BG);
	display: flex;
	align-items: center;
	gap: 5px;
}
.sg-detail-page .page_delete_btn a::after{
    content: "";
    display: inline-block;
    background: url(/asset2024/images/common/clsoe.svg) no-repeat center center / 100%;
    aspect-ratio: 1 / 1;
		width: 14px;
}

/* 上部 */
.sg-detail-page .content_area{
	margin-bottom: var(--GAP_30);
	padding-bottom: var(--GAP_30);
	border-bottom: 2px solid;
}

@media screen and (min-width: 768px){
	.sg-detail-page .content_area{
		display: flex;
	}
}

@media screen and (max-width: 767px){
	.sg-detail-page .content_area{
		display: grid;
		grid-template-columns: auto;
		gap: 0;
	}
}

/* sp時並び替え */
@media screen and (max-width: 767px){
	.sg-detail-page .content_area .detail_area{
		display: contents;
	}
	.sg-detail-page .content_area .detail_area_number{
		order: 1;
	}
	.sg-detail-page .content_area .img_area{
		order: 2;
	}
	.sg-detail-page .content_area .detail_area_postage_price{
		order: 3;
	}
	.sg-detail-page .content_area .detail_area_item{
		order: 4;
	}
	.sg-detail-page .content_area .detail_area_option{
		order: 5;
	}
	.sg-detail-page .content_area .detail_area_alert{
		order: 6;
	}
	.sg-detail-page .content_area .detail_area_item_description_2{
		order: 7;
	}
	.sg-detail-page .content_area .detail_area_btn{
		order: 8;
	}
}

@media screen and (min-width: 768px){
	.sg-detail-page .content_area .img_area{
		flex: 1;
	}
}

@media screen and (max-width: 767px){
	.sg-detail-page .content_area .img_area{
		width: 90%;
		margin-inline: auto;
	}
}

@media screen and (min-width: 768px){
	.sg-detail-page .content_area .detail_area{
		flex: 1.5;
	}
}


.sg-detail-page .content_area .detail_area .detail_area_number{
	margin-bottom: 10px;
	background: var(--PINK05);
	padding: 5px 10px;
	width: auto;
	display: inline-block;
	color: var(--WHITE);
}

@media screen and (min-width: 768px){
	.sg-detail-page .content_area .detail_area .detail_area_number{
		font-size: 3rem;
	}
}

@media screen and (max-width: 767px){
	.sg-detail-page .content_area .detail_area .detail_area_number{
		display: block;
		width: fit-content;
		margin-inline: auto;
		font-size: 2rem;
		margin-block: 15px;
	}
}

.sg-detail-page .content_area .detail_area .detail_area_item_description_2{
	font-size: 1.2rem;
	color: #3B7BDD;
	padding-bottom: 5px;
}

@media screen and (min-width: 768px){
	.sg-detail-page .content_area .detail_area .detail_area_item{
		margin-top: 20px;
	}
}

@media screen and (max-width: 767px){
	.sg-detail-page .content_area .detail_area .detail_area_item{
		margin-top: 5px;
	}
}

.sg-detail-page .content_area .detail_area .detail_area_item .detail_area_item_set{
	font-weight: bold;
	font-size: 1.8rem;
	padding-bottom: 5px;
}
.sg-detail-page .content_area .detail_area .detail_area_item .detail_area_item_title{
	font-weight: 700;
	font-size: 1.8rem;
	padding: 5px 10px;
	background-color: #f8eaeacf;
	margin-bottom: 10px;
}
@media screen and (min-width: 768px){
	.sg-detail-page .content_area .detail_area .detail_area_item .detail_area_item_title{
		padding: 20px;
	}
}
@media screen and (max-width: 767px){
	.sg-detail-page .content_area .detail_area .detail_area_item .detail_area_item_title{
		padding: 15px;
	}
}

.sg-detail-page .content_area .detail_area .detail_area_postage_price{
	margin-top: 20px;
	display: flex;
	justify-content: end;
	align-items: center;
}

@media screen and (max-width: 767px){
	.sg-detail-page .content_area .detail_area .detail_area_postage_price{
		margin-bottom: 10px;
	}
}

.sg-detail-page .content_area .detail_area .detail_area_postage_price .price_area{
	font-size: 25px;
}

.sg-detail-page .content_area .detail_area .detail_area_postage_price .postage_area{
	padding: 2px 5px 2px 5px;
	margin-right: 10px;
	color: var(--WHITE);
	font-size: 13px;
}

.sg-detail-page .content_area .detail_area .detail_area_postage_price .postage_free{
	background: var(--PINK05);
}

.sg-detail-page .content_area .detail_area .detail_area_postage_price .postage_plus{
	background: var(--PINK05);
}

.sg-detail-page .content_area .detail_area .detail_area_postage_price .tax_area{
	font-size: 1.2rem;
}

.sg-detail-page .content_area .detail_area .detail_area_option{
	margin-top: 20px;
	background: var(--YELLOW04);
	padding: 15px;
}
@media screen and (min-width: 768px){
	.sg-detail-page .content_area .detail_area .detail_area_option{
		width: 80%;
	}
}

.sg-detail-page .content_area .detail_area .detail_area_option .detail_area_option_title{
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 5px;
}

.sg-detail-page .content_area .detail_area .detail_area_alert{
	margin-top: 10px;
	padding-bottom: 5px;
}

.sg-detail-page .content_area .detail_area .detail_area_alert p{
	color: var(--TXT_COLOR_BASE);
	font-size: 1.2rem;
}

.sg-detail-page .content_area .detail_area .detail_area_alert .option{
	display: none;
}

.detail_area_option + .detail_area_alert .option{
	display: block!important;
}

.sg-detail-page .content_area .detail_area .detail_area_btn{
	text-align: center;
}

.sg-detail-page .content_area .detail_area .detail_area_btn .detail_area_btn_note{
	margin-top: 5px;
	font-size: var(--FZ_12);
}

/* 下部 */
.sg-detail-page .order_how_hd{
	font-size: var(--FZ_18);
	margin-bottom: 15px;
}

.sg-detail-page .order_how_hd .purple{
	color: #D26DFD;
	font-size: var(--FZ_20);
}

.sg-detail-page .order_howorder_how_list{
	display: grid;
}

@media screen and (min-width: 768px){
	.sg-detail-page .order_howorder_how_list{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_50);
	}
}

@media screen and (max-width: 767px){
	.sg-detail-page .order_howorder_how_list{
		gap: 25px;
	}
}

.sg-detail-page .order_howorder_how_list .order_howorder_how_list__pic{
	margin-bottom: 10px;
}

@media screen and (max-width: 767px){
	.sg-detail-page .order_howorder_how_list .order_howorder_how_list__pic{
		margin-inline: auto;
		max-width: 500px;
	}
}

.sg-detail-page .order_howorder_how_list .order_howorder_how_list__pic img{
	width: 100%;
	height: auto;
	border: 1px solid #000;
	aspect-ratio: 800/229;
	object-fit: cover;
}

.sg-detail-page .order_howorder_how_list .order_howorder_how_list__pic img.order_howorder_how_list__pic_2{
	object-position: 0px 0px;
}

.sg-detail-page .order_howorder_how_list .order_howorder_how_list__text{
	font-size: var(--FZ_14);
}

.sg-detail-page .order_howorder_how_list .order_howorder_how_list__text .note{
	font-size: var(--FZ_11);
}

/* こだわり検索 */
.search_modal{
	color: var(--BLACK);
}


.search_modal .search_modal_title{
	font-weight: bold;
	font-size: 1.7rem;
	display: inline-block;
}

.search_modal .search_modal_form{
	border-bottom: 2px solid;
	margin-bottom: 20px;
}

.search_modal .search_modal_category{
	display: flex;
	margin-bottom: var(--GAP_30);
	flex-wrap: wrap;
}

.search_modal .search_modal_category input{
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
}

.search_modal .search_modal_category label{
	text-align: center;
	line-height: 1;
	padding: 9px 18px;
	border-radius: 3px;
	display: inline-block;
	outline: 1px solid;
}

@media screen and (min-width: 768px){
	.search_modal .search_modal_category label{
		font-size: 1.3rem;
		margin-right: 12px;
		margin-top: 10px;
	}
}

@media screen and (max-width: 767px){
	.search_modal .search_modal_category label{
		font-size: 12px;
		margin-right: 8px;
		margin-top: 7px;
	}
}

.search_modal .search_modal_category:hover{
	cursor: pointer;
}

.search_modal .search_modal_category input:checked + label{
	outline: 3px solid var(--PINK01);
}

.search_modal .search_modal_color{
	display: flex;
	margin-bottom: var(--GAP_30);
	flex-wrap: wrap;
}

.search_modal .search_modal_color input{
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.search_modal .search_modal_color label{
	text-align: center;
	line-height: 1;
	margin-right: 12px;
	border-radius: 3px;
	width: 12%;
	margin-top: 10px;
	padding: 3px;
}

@media screen and (min-width: 768px){
	.search_modal .search_modal_color label{
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 767px){
	.search_modal .search_modal_color label{
		font-size: 12px;
		width: 28%;
	}
}

.search_modal .search_modal_color:hover{
	cursor: pointer;
}

.search_modal .search_modal_color input:checked + label{
	outline: 3px solid var(--PINK01);
}

.search_modal .search_modal_color_circle{
	margin: 0 auto 10px;
	aspect-ratio: 1/1;
	border-radius: 25px;
	display: block;
}
@media screen and (min-width: 768px){
	.search_modal .search_modal_color_circle{
		width: 40px;
	}
}
@media screen and (max-width: 767px){
	.search_modal .search_modal_color_circle{
		width: 40px;
	}
}

.search_modal .search_modal_price{
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	margin-top: 10px;
}

.search_modal .search_modal_price .search_modal_price_div{
	margin-right: 10px;
	width: 20%;
}

@media screen and (max-width: 767px){
	.search_modal .search_modal_price .search_modal_price_div{
		width: 40%;
	}
}

.search_modal .search_modal_btn_area{
	margin: 20px auto;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.search_modal .search_modal_btn_area span{
	display: inline-block;
	transition: 0.3s;
}

@media screen and (max-width: 767px){
	.search_modal .search_modal_btn_area{
		flex-direction: column;
		align-items: center;
	}
}

.search_modal .search_modal_btn_area button{
	border-radius: 5px;
	padding: 9px 18px;
	background-color: #E2E2E2; 
	color: var(--TXT_COLOR_BASE);
	text-align: center;
	cursor: pointer;
	font-size: var(--FZ_16);
	border: 1px solid;
}

.search_modal .search_modal_btn_area #search_modal_clear{
	cursor: pointer;
	border-radius: 5px;
	padding: 9px 18px;
	background-color: #E2E2E2; 
	color: var(--TXT_COLOR_BASE);
	text-align: center;
	cursor: pointer;
	font-size: var(--FZ_16);
	border: 1px solid;
}

@media (hover: hover){
	.search_modal .search_modal_btn_area > *:hover{
		opacity: 1;
	}
	.search_modal .search_modal_btn_area > *:hover span{
		transform: scale(1.05);
	}
}

.search_modal .search_modal_tag{
	border-bottom: 2px solid;
	padding-bottom: 20px;
}

.search_modal .search_modal_tag a{
	border: 1px solid;
	border-radius: 5px;
	padding: 5px 15px;
	display: inline-block;
}

@media screen and (min-width: 768px){
	.search_modal .search_modal_tag a{
		font-size: 1.3rem;
		margin-right: 6px;
		margin-top: 10px;
	}
}

@media (hover: hover){
	.search_modal .search_modal_tag a:hover{
		color: var(--PINK01);
	}
}

@media screen and (max-width: 767px){
	.search_modal .search_modal_tag a{
		font-size: 12px;
		margin-right: 2px;
		margin-top: 6px;
	}
}

.search_modal .search_modal_keyword{
	margin: 20px 0;
}

.search_modal .search_modal_keyword .search_modal_title{
	margin-bottom: 10px;
}

.search_modal .search_modal_keyword .search_modal_keyword_area{
	display: flex;
}

.search_modal .search_modal_keyword .search_modal_keyword_area #keyword_search_2{
	flex: 3;
	border: 1px solid;
	border-radius: 5px;
	background-color: rgba(255,254,248,0.95);
}

.search_modal .search_modal_keyword .search_modal_keyword_area #keyword_search_btn_2{
	flex: 1;
	border: 1px solid;
	border-radius: 5px;
	margin-left: 10px;
	background-color: #E2E2E2; 
	color: var(--TXT_COLOR_BASE);
	text-align: center;
	cursor: pointer;
	font-size: var(--FZ_15);
}

.search_modal .search_modal_keyword .search_modal_keyword_area #keyword_search_btn_2:hover span{
	display: inline-block;
	transition: 0.3s;
}

@media (hover: hover){
	.search_modal .search_modal_keyword .search_modal_keyword_area #keyword_search_btn_2:hover span{
		transform: scale(1.05);
	}
}

/* 調整用 */
/* ヘッダー - メニュー */
.fs-clientInfo:not(.is-ready){
	display: block !important;
}

/* 見出し */
.sg-gallery-page .c-upper{
	margin-bottom: var(--GAP_30);
}

/* ページャー */
@media screen and (min-width: 768px){
	.sg-gallery-page .c-subgroup{
		justify-content: flex-end;
		margin-top: 40px;
	}
}

a[href^="tel:"]{
	pointer-events: visible !important;
}

/* ギャラリーの行の間に画像を追加 */
.sg-gallery-page .fs-c-productList__list > article{
	position: relative;
}
.sg-gallery-page .fs-c-productList__list > article::after{
	content: "";
	display: inline-block;
	background: url(/sg/images/SamplephotoLine.jpg) no-repeat center center / 100%;
	aspect-ratio: 25/2;
	position: absolute;
	z-index: -2;
}
.sg-gallery-page .fs-c-productList__list > article:last-of-type::after{
	display: none !important;
}
@media screen and (min-width: 1100px){
	.sg-gallery-page .fs-c-productList__list{
		grid-template-columns: repeat(5,1fr);
		gap: 70px 20px;
	}
	.sg-gallery-page .fs-c-productList__list > article:nth-of-type(5n)::after{
		width: 80vw;
		bottom: -70px;
		left: 0;
		transform: translateX(-85%);
		max-width: 1100px;
	}
}
@media screen and (min-width: 900px) and (max-width: 1099px){
	.sg-gallery-page .fs-c-productList__list{
		grid-template-columns: repeat(4,1fr);
		gap: 60px 20px;
	}
	.sg-gallery-page .fs-c-productList__list > article:nth-of-type(4n)::after{
		width: 80vw;
		bottom: -60px;
		left: 0;
		transform: translateX(-85%);
	}
}
@media screen and (min-width: 768px) and (max-width: 899px){
	.sg-gallery-page .fs-c-productList__list{
		grid-template-columns: repeat(3,1fr);
		gap: 50px 10px;
	}
	.sg-gallery-page .fs-c-productList__list > article:nth-of-type(3n)::after{
		width: 90vw;
		bottom: -55px;
		left: 0;
		transform: translateX(-69%);
	}
}
@media screen and (max-width: 767px){
	.sg-gallery-page .fs-c-productList__list{
		grid-template-columns: repeat(2,1fr);
		gap: 30px 7px;
	}
	.sg-gallery-page .fs-c-productList__list > article:nth-of-type(2n)::after{
		width: 80vw;
		bottom: -25px;
		left: 0;
		transform: translateX(-52%);
	}
}
@media screen and (min-width: 500px) and (max-width: 768px){
	.sg-gallery-page .fs-c-productList__list{
		gap: 50px 10px;
	}
	.sg-gallery-page .fs-c-productList__list > article:nth-of-type(2n)::after{
		bottom: -40px;
	}
}
/* 見出し */
.sg-gallery-page .c-upper .fs-c-heading,
.sg-detail-page .c-upper .fs-c-heading{
	font-family: var(--FF_BASE) !important;
}
.sg-detail-page .detail_area_number{
	font-family: var(--FF_BASE) !important;
}
.sg-gallery-page .tel_modal_detail_data_number{
	font-family: var(--FF_BASE) !important;
}

#wp_blog_area img{
	border-radius: 10px;
}