@charset "utf-8";

/* リセット
====================================================================================================*/
* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	overflow: inherit;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}
body {
	color: var(--black);
	font-size: 16px;
	line-height: 1.5;
	font-family: "Helvetica", "Arial", "sans-serif";
}
ul, li {
	list-style: none;
}
a {
	text-decoration: none;
}
em {
	font-style: normal;
}
b, strong {
	font-weight: bolder
}
button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.5;
	vertical-align: middle;
	background: none;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
button, input {
	overflow: visible;
}
button, label, input[type=button], input[type=submit], input[type=radio], input[type=checkbox], input[type=file] {
	cursor: pointer;
}
button, select {
	text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
	border: none;
}
textarea {
	overflow: auto;
}
/* Googleレビュー */
[id^="___ratingbadge_"] {
  display: none!important;
}
/* 共通class設定
====================================================================================================*/
.pc {
	display: none !important;
}
.cf:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.text-red, .red {
	color: var(--red);
}
.display_none {
	display: none;
}
/* color
==============================*/
:root {
	--white: #FFFFFF;
	--black: #333;
	--brown_l: #DBBD94;
	--brown_d: #53392B;
	--orange_l: #F6AC2B;
	--orange_d: #FB8700;
	--blue_l: #159DD9;
	--blue_d: #2878D6;
	--red: #E23619;
	--gray_l: #F5F5F5;
	--gray: #C4C4C4;
	--gray_d: #6C6C6C;
	--beige_l: #FAF7EF;
	--beige_d: #F2ECDB;
	--pink_l: #FFF7F7;
	--pink_d: #FFEEF1;
	--yellow_l: #FFFFF7;
	--yellow_d: #EDA732;
	--s50: #80AF19;
	--s60: #45AC41;
	--s70: #09B4A7;
	--s80: #159DD9;
	--s90: #1E8BD8;
	--s100: #2878D6;
	--s120: #7152C6;
	--s130: #B24AA2;
	--s140: #EF6FAC;
	--s160: #F75D77;
	--s170: #EA611C;
	--s180: #E2A317;
	--s200: #B2A509;
	--post: #CC0000;
	--yamato: #088D7B;
	--sagawa: #3A499E;
}
/* input
==============================*/
/* チェックボックス */
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
	background-color: var(--white);
	border: solid 2px #CCC;
	border-radius: 3px;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	position: relative;
	top: -1px;
}
input[type="checkbox"]:checked {
	background-color: var(--blue_l);
	border: 2px solid var(--blue_l);
	background-image: url(/img/common/checkbox.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
/* ラジオボタン */
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
	background-color: var(--white);
	border: solid 2px #CCC;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	position: relative;
	top: -1px;
}
input[type="radio"]:checked {
	border: solid 2px var(--blue_l);
}
input[type="radio"]:checked::before {
	content: '';
	display: block;
	height: 10px;
	width: 10px;
	background-color: var(--blue_l);
	border-radius: 50%;
	margin: 2px auto;
}
/* 文字入力・セレクト */
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
	background-color: var(--white);
	border: solid 1px var(--gray);
	border-radius: 5px;
	font-size: 15px;
}
input[type=text], input[type=email], input[type=tel], input[type=number], textarea {
	padding: 5px 10px;
}
input::placeholder, textarea::placeholder {
	color: var(--gray);
}
select {
	height: 50px;
	padding: 0 5px;
	font-size: 18px;
}
textarea {
	resize: vertical;
}
/* 表
==============================*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
table th, table td {
	background-color: var(--white);
	border: solid 1px var(--gray);
	padding: 10px;
	text-align: center;
	font-size: 16px;
	vertical-align: middle;
}
table thead th {
	background-color: var(--beige_l);
}
/* リンクボタン
==============================*/
/* ホバーアクション */
.click {
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
}
/* ボタン共通 */
.button-red, .button-brown, .button-gray, .button-blue, .button-orange {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	transition: 0.2s;
	position: relative;
}
/* 茶色のボタン */
.button-brown {
	display: block;
	width: 300px;
	height: 50px;
	padding: 0 10px;
	line-height: 50px;
	color: var(--white);
	background: transparent linear-gradient(180deg, #963 0%, var(--brown_d) 100%, var(--brown_d) 100%) 0% 0% no-repeat padding-box;
	border: 1px solid #5D3F1C;
	margin: 0 auto;
}
/* 赤いボタン */
.button-red {
	display: inline-block;
	width: 200px;
	height: 50px;
	padding: 0 10px;
	line-height: 50px;
	color: var(--white);
	background: var(--red);
	border: 1px solid var(--red);
}
/* グレーのボタン */
.button-gray {
	display: inline-block;
	min-width: 120px;
	padding: 5px 10px;
	color: var(--gray_d);
	background: transparent linear-gradient(180deg, var(--white) 0%, #DEDEDE 100%, var(--gray_l) 100%) 0% 0% no-repeat padding-box;
	border: 1px solid var(--gray);
}
/* 青いボタン */
.button-blue {
	display: inline-block;
	min-width: 120px;
	padding: 5px 10px;
	color: var(--blue_l);
	background: var(--white);
	border: 1px solid var(--blue_l);
	border-radius: 50px;
}
/* オレンジのボタン */
.button-orange {
	display: inline-block;
	min-width: 120px;
	padding: 5px 10px;
	color: var(--white);
	background: transparent linear-gradient(180deg, #FFD750 0%, var(--orange_d) 100%) 0% 0% no-repeat padding-box;
    border: 1px solid var(--orange_l);
}
/* 矢印（右向き）
==============================*/
/* 矢印共通 */
.arrow-brown, .arrow-white, .arrow-gray, .arrow-blue {
	position: relative;
	padding-right: 24px
}
.arrow-brown::after, .arrow-white::after, .arrow-gray::after, .arrow-blue::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	transition: 0.2s;
}
/* 茶色い矢印 */
.arrow-brown::after {
	background: url(/img/icon/arrow-brown.svg) no-repeat center / contain;
}
/* 白い矢印 */
.arrow-white::after {
	background: url(/img/icon/arrow-white.svg) no-repeat center / contain;
}
/* グレーの矢印 */
.arrow-gray::after {
	background: url(/img/icon/arrow-gray.svg) no-repeat center / contain;
}
/* 青い矢印 */
.arrow-blue::after {
	background: url(/img/icon/arrow-blue.svg) no-repeat center / contain;
}
/* 青いリンク（more_right） */
.more_right {
	font-size: 16px;
	color: var(--blue_l);
}
.more_right::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 20px;
	background: url(/img/icon/arrow-blue.svg) no-repeat center / auto 14px;
	margin-left: 5px;
	vertical-align: top;
}
.text_right {
	margin-top: 10px;
	text-align: right;
}
/* 送りボタン
==============================*/
.left_slide, .right_slide {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 48px;
	height: 48px;
	margin: auto;
	background-color: var(--brown_d);
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
}
.left_slide {
	left: 0;
}
.right_slide {
	right: 0;
}
.left_slide::after, .right_slide::after {
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 0;
	left: 0;
	background: url(/img/icon/arrow-white.svg) no-repeat center / 15px auto;
}
.left_slide::after {
	transform: rotate(180deg);
}
/* ランキングアイコン
==============================*/
.product_rank {
	width: 60px;
	height: 45px;
	position: absolute;
}
.rank-1 {
	background-image: url(/img/common/icon-rank1.png);
	background-size: contain;
}
.rank-2 {
	background-image: url(/img/common/icon-rank2.png);
	background-size: contain;
}
.rank-3 {
	background-image: url(/img/common/icon-rank3.png);
	background-size: contain;
}
/* ポップアップ
==============================*/
.popup_overlay {
	display: flex;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: 0.5s;
	pointer-events: none;
}
.popup_overlay.popup_open {
	opacity: 1;
	pointer-events: auto;
}
.popup_window {
	width: 440px;
	height: 70%;
	position: relative;
	align-self: center;
	padding: 20px;
	background: var(--white);
	transition: 0.5s;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.popup_close {
	width: 40px;
	height: 40px;
	background-color: var(--brown_l);
	border-radius: 50%;
	box-shadow: 0px 1px 3px rgb(0, 0, 0, 0.5);
	transition: 0.2s;
	position: absolute;
	top: -20px;
	right: -10px;
	cursor: pointer;
}
.popup_close img {
	width: 20px;
	height: 20px;
	display: block;
	margin: 10px auto;
}
.popup_scroll {
	height: 100%;
	overflow-y: auto;
	scrollbar-width: 15px;
	padding-right: 10px;
}
.popup_scroll::-webkit-scrollbar {
	width: 15px;
}
.popup_scroll::-webkit-scrollbar-track {
	border-radius: 10px;
	background: var(--gray_l);
}
.popup_scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: var(--gray);
}
.popup_window h2 {
	background: url(/img/icon/title-question.svg) no-repeat left top / 28px 28px;
}
/* 開閉コンテンツ
==============================*/
.view_moreBox {
	overflow: hidden;
	position: relative;
	transition: 0.5s;
}
.view_moreBox::before {
	content: '';
	display: block;
	width: 100%;
	height: 30%;
	background: linear-gradient(rgba(255, 255, 255, 0) 0, var(--white) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
	pointer-events: none;
}
.open.view_moreBox::before {
	display: none;
}
.view_moreBtn {
	position: relative;
	display: block;
	width: 120px;
	height: 40px;
	color: var(--gray_d);
	background: var(--gray_l);
	border: solid 1px var(--gray_d);
	border-radius: 20px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	margin: 10px auto 0;
}
/* アニメーション */
@keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade_out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* スクロールできます
==============================*/
.scroll_guide {
	display: inline-block;
	padding: 5px 35px 5px 10px;
	background: var(--brown_l);
	border-radius: 5px;
	color: var(--white);
	position: relative;
	float: right;
}
.scroll_guide::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(-135deg);
	animation: sg 1.5s infinite;
	box-sizing: border-box;
	position: absolute;
	top: 12px;
	right: 25px;
}
@keyframes sg {
	0% {
		transform: rotate(-135deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-135deg) translate(-10px, 10px);
		opacity: 0;
	}
}
/* コンテンツ全体(#contents)
====================================================================================================*/
#contents {
	display: block;
	margin: 210px auto 0;
	width: 460px;
	padding-top: 20px;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--brown_d);
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
}
h1 {
	font-size: 30px;
	position: relative;
	padding: 0 0 5px 40px;
	border-bottom: 2px solid var(--brown_l);
}
h2 {
	font-size: 25px;
	line-height: 1.2;
	position: relative;
	padding: 0 0 5px 35px;
	border-bottom: 2px solid var(--brown_l);
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
p {
	font-size: 16px;
}
p a {
	color: var(--blue_l);
}
picture img {
	display: block;
}
/* 共通商品表示(.product_box)
==============================*/
/* 縦並びレイアウト(product_list1) / 横並びレイアウト(product_list2) */
.product_list2 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.product_box {
	display: inline-block;
	width: 460px;
	background: var(--white);
	position: relative;
	float: none;
}
.product_box + .product_box {
	margin-top: 15px;
	padding-top: 15px;
	border-top: dashed 2px var(--gray);
}
.product_list2 .product_box {
	width: 224px;
	padding: 10px 12px;
	border: solid 1px var(--gray);
	border-radius: 5px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
}
.product_list2 .product_box:has(.delivery_size) {
	padding-bottom: 35px;
}
.product_list2 .product_box + .product_box {
	margin: 0;
}
.product_list2 .product_box > a {
	display: block;
}
/* 商品画像 */
.product_box a div:has(img) {
	width: 220px;
	height: 220px;
	vertical-align: middle;
	float: left;
	margin-bottom: 5px;
}
.product_list2 .product_box a div:has(img) {
	width: 200px;
	height: 200px;
	float: none;
	margin: 0;
}
.product_box a div img {
	width: 100%;
	height: 100%;
}
/*　商品名　*/
.product_box h3, .product_box .product_name {
	min-height: 47px;
	max-height: 70px;
	font-size: 18px;
	font-weight: normal;
	color: var(--blue_l);
	line-height: 1.3;
	overflow: hidden;
	margin: 0;
}
.product_box .product_name a {
	font-size: 18px;
	color: var(--blue_l);
}
.product_box h3, .product_box .priceBox, .product_box .product_innersize, .product_box .product_id, .product_box .review_star {
	width: 230px;
	float: right;
}
.product_list2 .product_box h3, .product_list2 .product_box .product_name, .product_list2 .product_box .priceBox, .product_list2 .product_box .product_innersize, .product_list2 .product_box .product_id, .product_list2 .product_box .review_star {
	width: 100%;
	float: none;
}
.product_list2 .product_box h3, .product_list2 .product_box .product_name {
	height: 55px;
	font-size: 16px;
	line-height: 1.2;
	margin-top: 10px;
}
/* 価格　*/
.priceBox {
	margin: 8px 0;
}
.priceBox li {
	border-bottom: dashed 1px var(--gray);
	padding: 3px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.priceBox li:first-child {
	border-top: dashed 1px var(--gray);
}
.priceBox .count {
	background: #f4f4f4;
	width: 60px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 16px;
}
.priceBox .unit_price {
	font-size: 18px;
	position: relative;
	padding-right: 13px;
}
.priceBox .unit_price::after {
	content: '';
	display: block;
	width: 12px;
	height: 22px;
	position: absolute;
	top: 8px;
	right: 0;
}
.priceBox li:nth-child(1) .unit_price::after {
	background: url(/img/common/tax_red.svg) center no-repeat;
}
.priceBox li:nth-child(2) .unit_price::after {
	background: url(/img/common/tax_black.svg) center no-repeat;
}
.priceBox .price {
	font-size: 24px;
	font-weight: bold;
	margin: 0 1px 0 2px;
}
.priceBox .loading {
	font-size: 15px;
	line-height: 30px;
	color: var(--gray_d);
	text-align: right;
	margin-right: 10px;
}
/* 内寸 */
.product_innersize, .product_id, .review_star, .review_star a {
	font-size: 18px;
	line-height: 1.2;
}
.product_innersize {
	font-weight: bold;
	color: var(--brown_d);
}
.product_innersize .depth {
	font-size: 16px;
}
/* 商品ID */
.product_id span {
	margin: 0 3px;
}
.product_innersize + .product_id {
	margin-top: 2px;
}
/* レビュー */
.review_star {
	display: inline-block;
	color: var(--orange_l);
	margin-bottom: 4px;
}
.review_star a {
	color: var(--blue_l);
	margin: 0 3px;
}
/* お気に入りボタン */
.product_favorite {
	position: absolute;
	top: 25px;
	left: 182px;
	width: 28px;
	height: 28px;
	z-index: 1;
}
.product_favorite button {
	width: 100%;
	height: 100%;
}
.product_box:first-child .product_favorite {
	top: 10px;
}
.product_list2 .product_box .product_favorite {
	top: 15px;
	right: 15px;
	left: unset;
}
.product_favorite button.mylistON {
	background: url(/img/common/icon-favorite_on.png);
	background-size: cover;
}
.product_favorite button.mylistOFF {
	background: url(/img/common/icon-favorite_off.png);
	background-size: cover;
}
button.mylistON:before {
	content: "";
	display: block;
	width: 60px;
	height: 52px;
	position: absolute;
	left: -13px;
	top: -13px;
	animation: mymove1 0.8s cubic-bezier(0, 0, 0.7, 1.0) 0s 1 normal;
	background: url(/img/common/mylist-icon-anime.png) no-repeat;
	opacity: 0;
	outline: none;
	background-size: contain;
}
@keyframes mymove1 {
	0% {
		top: 25px;
		left: 25px;
		width: 0px;
		height: 0px;
		opacity: 1;
	}
	50% {
		top: -10px;
		left: -10px;
		width: 50px;
		height: 42px;
		opacity: 1;
	}
	100% {
		top: -13px;
		left: -13px;
		width: 60px;
		height: 52px;
		opacity: 0;
	}
}
/* 宅配サイズ */
.delivery_size {
	width: 230px;
	height: 24px;
	padding-left: 10px;
	line-height: 24px;
	color: var(--white);
	font-weight: bold;
	position: relative;
	float: right;
}
.product_list1 .delivery_size {
	width: 220px;
	clear: both;
	float: none;
}
.product_list2 .delivery_size {
	width: 200px;
	float: none;
	position: absolute;
	bottom: 10px;
	left: 10px;
}
.delivery_size span {
	text-align: right;
	font-weight: normal;
	position: absolute;
	right: 10px;
	top: 0;
}
.ds-60, .ds-70, .ds-80, .ds-90, .ds-100, .ds-120, .ds-130, .ds-140, .ds-160, .ds-170, .ds-180, .ds-200, .ds-220, .ds-240, .ds-260, .ds-280, .ds-post {
	color: var(--white);
}
.ds-60 {
	background: var(--s60);
}
.ds-70 {
	background: var(--s70);
}
.ds-80 {
	background: var(--s80);
}
.ds-90 {
	background: var(--s90);
}
.ds-100 {
	background: var(--s100);
}
.ds-120 {
	background: var(--s120);
}
.ds-130 {
	background: var(--s130);
}
.ds-140 {
	background: var(--s140);
}
.ds-160 {
	background: var(--s160);
}
.ds-170 {
	background: var(--s170);
}
.ds-180 {
	background: var(--s180);
}
.ds-200, .ds-220, .ds-240, .ds-260, .ds-280 {
	background: var(--s200);
}
.ds-post {
	background: var(--post);
}
/* メール便サイズ */
.ds-mail {
	padding: 0;
	width: 230px;
}
.ds-mail span {
	font-size: 13px;
	color: var(--black);
	top: 4px;
	right: 0px;
}
.product_list1 .ds-mail span {
	right: 0px;
}
.product_list2 .ds-mail span {
	right: 0px;
}
.ds-mail ul {
	display: flex;
	gap: 5px;
}
.product_list1 .ds-mail ul, .product_list2 .ds-mail ul {
	gap: 3px;
}
.ds-mail ul li {
	width: 100px;
	height: 24px;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden;
}
.product_list2 .ds-mail ul li {
	width: 90px;
}
.ds-mail ul li img {
	margin: auto;
	height: 21px;
	margin-top: 2px;
}
.ds-clickpost {
	background: #C01A20;
}
.ds-nekoposu {
	background-color: var(--yamato);
}
.ds-yuupacket, .ds-yuupacketpost {
	background: var(--white);
	border: solid 1px #354E98;
}
.ds-yuupacketpost {
	color: #354E98;
	font-weight: bold;
}
.ds-yuupacketpost span {
	color: var(--post);
	font-weight: bold;
}
.ds-teikeigai, .ds-teikeigai1, .ds-teikeigai2, .ds-yuumail {
	background: var(--post);
	color: var(--white);
	font-weight: bold;
}
.ds-teikeigai1 span, .ds-teikeigai2 span {
	font-size: 14px;
	margin-left: 3px;
}
.ds-kuronekodm, .ds-kuronekoyuumail, .ds-kuronekoyuupacket {
	background: var(--yamato);
	color: var(--white);
	font-weight: bold;
}
.ds-hikyakumail, .ds-hikyakuyuumail {
	background-color: var(--sagawa);
	color: var(--white);
	font-weight: bold;
}
/*com自動・比較オーダー*/
.hikakuOrder .photoimg, .gijiItem .photoimg, .photoimg:has(span) {
	display: block;
	border: solid 1px var(--gray);
}
.gijiItem .priceBox {
	position: relative;
}
.priceBox .empty {
	display: block;
	padding: 5px 0;
	line-height: 1.2;
	text-align: center;
	overflow: hidden;
}
.priceBox .empty a {
	color: var(--blue_l);
}
.product_list2 .priceBox .empty, .product_list2 .priceBox .empty a {
	font-size: 13px;
}
.hikakuOrder .insatsu {
	width: 60px;
	height: 60px;
	padding: 12px 0 0 0;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: var(--white);
	background: var(--orange_d);
	border-radius: 50%;
	position: absolute;
	left: 10px;
	bottom: 15px;
}
.product_list2 .hikakuOrder .insatsu {
	left: 15px;
	top: 145px;
	bottom: unset;
}
.hikakuOrder .more_right {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
/* X0001・X0002・X0004のサイズ表記 */
.img_inside {
	position: absolute;
	font-size: 14px;
	color: var(--black);
	background: rgba(255, 255, 255, 0.7);
	padding: 2px 6px;
	border-radius: 5px;
	white-space: nowrap;
	pointer-events: none;
}
.product_box .photoimg:has(span) {
	position: relative;
}
.photoimg:has(span) span {
	position: absolute;
	color: var(--black);
}
.photoimg:has(.posterNagasa) .posterNagasa {
	top: 63px;
	left: 130px;
	background: var(--white);
	font-size: 12px;
}
.photoimg:has(.posterHaba) .posterHaba {
	top: 168px;
	left: 132px;
	background: var(--white);
	padding: 0 1px;
	font-size: 12px;
	line-height: 1;
}
.photoimg:has(.posterNaikei) .posterNaikei {
	top: 165px;
	left: 75px;
	background: var(--white);
	width: 40px;
	text-align: center;
	font-size: 12px;
}
/*ジャストサイズアイコン*/
.product_box .just_icon {
	position: absolute;
	top: 10px;
	left: 10px;
}
.product_box .just_icon img {
	width: 100px;
	height: 70px;
}
/* 共通フォーム(.formBox)
==============================*/
.formBox table input, .formBox dl input, .formBox table textarea, .formBox dl textarea {
	width: 100%;
}
.formBox table, .formBox dl {
	width: 100%;
	margin: 20px 0;
}
.formBox tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.formBox tr + tr {
	margin-top: 20px;
}
.formBox th, .formBox dt {
	font-weight: bold;
	color: var(--brown_d);
	font-size: 16px;
}
.formBox th .required, .formBox dt .required {
	font-weight: bold;
	font-size: 14px;
	color: var(--red);
	background-color: var(--white);
	padding: 3px;
	border: solid 1px var(--red);
	border-radius: 5px;
	margin-left: 5px;
}
.formBox td {
	width: 60%;
}
.formBox dd {
	margin: 5px 0 15px;
}
.formBox dd:last-of-type {
	margin-bottom: 0;
}
.formBox .postcode_dd input {
	text-align: center;
}
.formBox .postcode_dd input:first-child {
	width: 60px;
	margin-left: 10px;
}
.formBox .postcode_dd input:last-child {
	width: 70px;
}
.formBox .button-brown {
	margin-top: 20px;
}
.formBox .button-brown input {
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
}
/* パンくずリスト(#panBox)
==============================*/
#panBox {
	width: 460px;
	line-height: 25px;
	margin: 30px auto 0;
	padding: 10px 10px 10px 10px;
	border-top: solid 1px var(--gray);
	border-bottom: solid 1px var(--gray);
	overflow-x: scroll;
	overflow-y: hidden;
}
#panBox ol {
	white-space: nowrap;
}
#panBox ol + ol {
	margin-top: 10px;
}
#panBox li {
	padding: 0 15px 0 0;
	display: inline-block;
	font-size: 16px;
	position: relative;
}
#panBox li + li {
	padding: 0 15px 0 10px;
}
#panBox li a {
	color: var(--blue_l);
	font-size: 16px;
}
#panBox li + li::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: -7px;
	bottom: 0;
	width: 6px;
	height: 6px;
	margin: auto;
	border-top: 1px solid var(--brown_l);
	border-right: 1px solid var(--brown_l);
	transform: translate(0, 0) rotate(45deg);
}
/* チャット（aibis）
====================================================================================================*/
#aibis-window:not(#inquiry:has(#toiawaseBox) #aibis-window) {
	display: none;
}

/*navigation
====================================================================================================*/
#contents {
	margin-top: 0;
}
.tab, .pc, .tab-pc {
  display: none;
}
header, footer, #sidenavi {
	font-size: 16px;
	font-family: "Helvetica", "Arial", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
header a, footer a, #sidenavi a {
	color: inherit;
}
header p a, footer p a {
	color: var(--blue_l);
}
header img, footer img, #sidenavi img, header picture, footer picture, #sidenavi picture {
	display: block;
	max-width: 100%;
	height: auto;
}
/* header
==============================*/
#header_mypage > ul li a {
	color: var(--brown_d);
}
#gFrame {
	font-size: 16px;
}
#sp_guest .button-orange {
	height: 50px;
	display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
  transition: 0.2s;
}
#sp_guest .arrow-white {
	padding-right: 34px;
}
/* footer
==============================*/
#catalog_info dd p {
	font-size: 16px;
}
#footer_contact .button-brown, #sp_inquiry .button-brown {
	width: auto;
}
#footer_contact li p {
	font-size: 16px;
}