@charset "utf-8";

/* リセット
====================================================================================================*/
* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	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: 14px;
	line-height: 1.5;
	font-family: "Helvetica", "Arial", "sans-serif";
}
@media (max-width: 1300px) {
	body {
		zoom: 90%;
	}
}
ul, li {
	list-style: none;
}
a {
	text-decoration: none;
}
a:hover {
	opacity: 0.8;
	cursor: pointer;
}
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;
}
/* 共通class設定
====================================================================================================*/
.sm {
	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: #333333;
	--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;
	--s60: #45AC41;
	--s70: #09B4A7;
	--s80: #159DD9;
	--s90: #1E8BD8;
	--s100: #2878D6;
	--s120: #7152C6;
	--s130: #B24AA2;
	--s140: #EF6FAC;
	--s160: #F75D77;
	--s170: #EA611C;
	--s180: #E2A317;
	--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: 30px;
	padding: 0 5px;
}
textarea {
	resize: vertical;
}
/* 表
==============================*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
table thead th, table thead td {
	background-color: var(--beige_l);
}
table th, table td {
	background-color: var(--white);
	border: solid 1px var(--gray);
	padding: 10px;
	text-align: center;
	font-size: 16px;
	vertical-align: middle;
}
/* リンクボタン
==============================*/
/* ホバーアクション */
.click {
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	transition: 0.2s;
}
.click:hover {
	transform: translateY(2px);
	box-shadow: none;
	transition: 0.2s;
	cursor: pointer;
}
/* ボタン共通 */
.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-red:hover, .button-brown:hover, .button-gray:hover, .button-blue:hover, .button-orange:hover {
	transform: translateY(2px);
	box-shadow: none;
	transition: 0.2s;
	cursor: pointer;
}
/* 茶色のボタン */
.button-brown {
	display: block;
	width: 400px;
	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: 15px;
	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;
}
.more_right:hover {
	text-decoration: underline;
}
.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);
	transition: 0.2s;
}
.left_slide {
	left: 0;
}
.right_slide {
	right: 0;
}
.left_slide:hover, .right_slide:hover {
	transform: translateY(2px);
	box-shadow: none;
	transition: 0.2s;
}
.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: 200;
	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: 1000px;
	height: 70%;
	position: relative;
	align-self: center;
	padding: 30px;
	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_close:hover {
	transform: translateY(2px);
	box-shadow: none;
	transition: 0.2s;
}
.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: 30px;
	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;
	transition: 0.2s;
}
.view_moreBtn:hover {
	color: var(--orange_d);
	background: var(--yellow_l);
	border: solid 1px var(--orange_d);
	box-shadow: none;
	transform: translateY(2px);
	transition: 0.2s;
}
.view_moreBtn:hover::after {
	color: var(--orange_d);
	transition: 0.2s;
}
/* アニメーション */
@keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade_out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* コンテンツ全体(#contents)
====================================================================================================*/
#contents {
	display: block;
	margin: 205px auto 0;
	width: 1300px;
	padding-top: 30px;
}
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: 15px;
}
p a {
	color: var(--blue_l);
}
p a:hover {
	text-decoration: underline;
}
picture img {
	display: block;
}
/* 共通商品表示(.product_box)
==============================*/
.product_list1, .product_list2 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.product_box {
	width: 244px;
	padding: 12px 12px 36px;
	background: var(--white);
	border: solid 1px var(--gray);
	border-radius: 5px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	position: relative;
	float: none;
}
.product_box > a {
	display: block;
}
/* 商品画像 */
.product_box a:hover img, .product_box a:hover .itemPhoto {
	opacity: 0.8;
}
.product_box a img {
	width: 220px;
	height: 220px;
	vertical-align: middle;
}
/*　商品名　*/
.product_box h3, .product_box .product_name {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.3;
	color: var(--blue_l);
	width: 100%;
	height: 40px;
	overflow: hidden;
	margin: 10px 0 0 0;
}
.product_box .product_name a {
	font-size: 15px;
	color: var(--blue_l);
}
.product_box a:first-child:hover h3 {
	text-decoration: underline;
}
/* 価格　*/
.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: 62px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 13px;
}
.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: 6px;
	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: 22px;
	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 {
	font-size: 15px;
	font-weight: bold;
	color: var(--brown_d);
	line-height: 1.2;
}
.product_innersize .depth {
	font-size: 13px;
}
/* 商品ID */
.product_id {
	position: static;
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: normal;
	padding: 0;
	margin-right: 5px;
}
.product_id span {
	margin: 0 3px;
}
/* レビュー */
.review_star {
	display: inline-block;
	color: var(--orange_l);
	line-height: 1.2;
}
.review_star a {
	color: var(--blue_l);
	margin: 0 3px;
}
.review_star a:hover {
	text-decoration: underline;
}
/* お気に入りボタン */
.product_favorite {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 28px;
	height: 28px;
	z-index: 1;
}
.product_favorite button {
	width: 100%;
	height: 100%;
}
.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: 220px;
	height: 24px;
	line-height: 24px;
	color: var(--white);
	font-weight: bold;
	padding-left: 10px;
	position: absolute;
	bottom: 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-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-post {
	background: var(--post);
}
/* メール便サイズ */
.ds-mail {
	padding: 0;
}
.ds-mail span {
	font-size: 13px;
	color: var(--black);
	top: 4px;
	right: 0px;
}
.ds-mail ul {
	display: flex;
	gap: 3px;
}
.ds-mail ul li {
	width: 100px;
	height: 24px;
	padding: 1px 0;
	text-align: center;
	overflow: hidden;
}
.ds-mail ul li img {
	height: 22px;
	width: auto;
}
.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 .itemPhoto, .gijiItem .itemPhoto {
	display: block;
	width: 220px;
	height: 220px;
	background: no-repeat;
	background-size: 80%;
	background-position: center;
	box-sizing: border-box;
	border: solid 1px var(--gray);
}
.gijiItem .priceBox {
	position: relative;
}
.priceBox .empty {
	line-height: 30px;
	font-size: 13px;
	text-align: center;
	overflow: hidden;
}
.priceBox .empty a {
	font-size: 13px;
	color: var(--blue_l);
}
.priceBox .empty a:hover {
	text-decoration: underline;
}
.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;
	top: 165px;
	left: 15px;
}
.hikakuOrder .more_right {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
/*ジャストサイズアイコン*/
.product_box .just_icon {
	position: absolute;
	top: 40px;
	right: 15px;
}
.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: 1300px;
	margin: 80px auto 0;
	overflow: hidden;
	padding: 20px 0;
	border-top: solid 1px var(--gray);
	border-bottom: solid 1px var(--gray);
}
#panBox li {
	padding: 0 5px 0 0;
	font-size: 13px;
	position: relative;
	display: inline;
}
#panBox li + li {
	padding: 0 5px 0 15px;
}
#panBox li#pan_top {
	padding: 0 15px 0 0;
}
#panBox li a {
	color: var(--blue_l);
}
#panBox li + li::before {
	display: block;
	content: '';
	position: absolute;
	top: 3px;
	left: 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);
}
/* ヘッダー
====================================================================================================*/
header {
	position: absolute;
	background-color: var(--white);
	box-shadow: 0px 0px 10px #eaeaea;
	height: 205px;
	top: 0;
	min-width: 1300px;
	width: 100%;
}
/* #header_top
==============================*/
#header_top {
	width: 100%;
	height: 40px;
	background: var(--brown_d);
	color: var(--white);
	line-height: 40px;
}
#header_top p {
	font-size: 14px;
}
#header_top ul {
	position: absolute;
	top: 0px;
	right: 0px;
}
#header_top li {
	padding: 0 15px;
	float: left;
}
#header_top li a {
	color: var(--white);
	font-size: 14px;
}
#header_top .li_tel {
	height: 50px;
}
#header_top .li_tel img {
	width: 220px;
}
/* #header
==============================*/
#header {
	position: relative;
	margin: 0 auto;
	width: 1300px;
}
/* #header_main
==============================*/
#header_main {
	width: 1300px;
	display: flex;
	height: 75px;
}
#step2 #header_main, #step3 #header_main {
	justify-content: space-between;
}
#header_main ul {
	display: flex;
}
/* アースダンボールロゴ */
#logo1 {
	margin-top: 15px;
}
#logo1 img {
	width: 320px;
	height: auto;
}
/* No.1ロゴ */
#logo2 {
	margin: 17px 0 0 10px;
}
#logo2 img {
	width: 110px;
}
/* header内のキーワード検索 */
#header_kensaku {
	margin: 18px 14px 0 16px;
}
#gForm {
	width: 100%;
	height: 54px;
	background-color: var(--white);
	border: solid 2px var(--orange_d);
	border-radius: 5px;
	position: relative;
}
#gFrame {
	width: 424px;
	height: 50px;
	overflow: hidden;
	padding: 10px 60px 10px 10px;
	font-size: 16px;
	color: var(--brown_d);
	border: none;
	outline: none;
	word-wrap: break-word;
	border-radius: 5px;
}
#gFrame::placeholder {
	color: #868686;
}
#gKensaku {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 52px;
	height: 52px;
	text-indent: 50px;
	background: url(/img/common/icon_head_search.png) no-repeat center center;
	background-size: 50% auto;
	background-color: var(--orange_d);
	border-radius: 0 3px 3px 0;
	overflow: hidden;
	border: none;
}
/* カートボタン */
#header_cart {
	margin-top: 20px;
}
#header_cart ul {
	gap: 9px;
}
#li-beginner {
	margin-top: -5px;
	margin-left: 13px;
}
#li-beginner a {
	display: block;
	width: 120px;
	height: 55px;
}
#li-beginner img {
	width: 120px;
	height: auto;
}
#li-login a {
	display: block;
	width: 150px;
	height: 50px;
	padding: 9px 0 0 44px;
	background: transparent linear-gradient(180deg, #FFD750 0%, var(--orange_d) 100%) 0% 0% no-repeat padding-box;
	border: 1px solid var(--orange_l);
	border-radius: 5px;
	font-size: 15px;
	font-weight: bold;
	color: var(--white);
	line-height: 1;
	position: relative;
}
#li-login a::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: url(/img/icon/header-login.svg);
	background-position: center;
	background-size: 30px;
	position: absolute;
	top: 9px;
	left: 8px;
}
#li-login a span {
	display: block;
	font-size: 12px;
	font-weight: bold;
	margin-top: 3px;
}
#li-member {
	height: 24px;
	padding-right: 70px;
	overflow: hidden;
	position: relative;
}
#li-member a {
	color: var(--brown_d);
	font-size: 12px;
	font-weight: bold;
}
#li-member .point {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: bold;
	color: var(--brown_d);
}
#li-member .red {
	font-weight: bold;
}
#li-mypage ul li a {
	display: block;
	width: 92px;
	height: 26px;
	color: var(--brown_d);
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height: 25px;
	background: var(--beige_l);
	border: solid 1px var(--brown_l);
	border-radius: 5px;
	overflow: hidden;
}
#li-cart a {
	display: block;
	width: 100px;
	height: 50px;
	padding-left: 35px;
	background: var(--brown_l);
	border-radius: 5px;
	text-align: center;
	color: var(--brown_d);
	font-size: 15px;
	font-weight: bold;
	line-height: 50px;
	position: relative;
}
#li-cart a::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: url(/img/icon/header-cart.svg);
	background-position: center;
	background-size: 30px;
	position: absolute;
	top: 10px;
	left: 8px;
}
#cart_in {
	position: absolute;
	top: -8px;
	right: 3px;
	width: 22px;
	height: 22px;
	font-size: 13px;
	font-weight: bold;
	color: var(--white);
	text-align: center;
	line-height: 22px;
	background-color: var(--red);
	border-radius: 20px;
}
/* #header_bottom
==============================*/
#header_bottom {
	width: 1300px;
	height: 70px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 8px 0 0;
}
#header_bottom .scroll {
	display: flex;
	gap: 24px;
}
.categoryBox {
	display: flex;
	background: var(--beige_l);
	border-radius: 10px;
}
.order_categoryBox {
	display: flex;
	background: var(--gray_l);
	border-radius: 10px;
	position: relative;
}
.order_categoryBox::before {
	content: '';
	display: block;
	width: 1px;
	height: 70px;
	border-right: dashed 2px var(--gray);
	position: absolute;
	top: 0;
	left: -13px;
}
.order_categoryBox::after {
	content: '';
	display: block;
	width: 1px;
	height: 70px;
	border-right: dashed 2px var(--gray);
	position: absolute;
	top: 0;
	right: -14px;
}
.categoryBox li, .order_categoryBox li {
	width: 116px;
	position: relative;
}
.categoryBox li:first-child, .order_categoryBox li:first-child {
	width: 150px;
}
.categoryBox li::after {
	content: '';
	display: block;
	width: 1px;
	height: 50px;
	background-color: var(--brown_l);
	position: absolute;
	left: 0;
	top: 10px;
}
.order_categoryBox li::after {
	content: '';
	display: block;
	width: 1px;
	height: 50px;
	background-color: var(--gray);
	position: absolute;
	left: 0;
	top: 10px;
}
.categoryBox li:first-child::after, .order_categoryBox li:first-child::after {
	display: none;
}
.categoryBox li a, .order_categoryBox li a {
	width: 100%;
	display: block;
	text-decoration: none;
	font-size: 13px;
	line-height: 15px;
	padding: 47px 0 8px 0;
	text-align: center;
	color: var(--brown_d);
	font-weight: bold;
	overflow: hidden;
}
.categoryBox .category-search a {
	background: url(/img/icon/header-menu-search.svg) no-repeat;
	background-position: center 4px;
	background-size: 100px;
}
.categoryBox .category-discount a {
	background: url(/img/icon/header-menu-discount.svg) no-repeat;
	background-position: center 4px;
	background-size: 100px;
}
.categoryBox .category-size a {
	background: url(/img/icon/header-menu-size.svg) no-repeat;
	background-position: center 4px;
	background-size: 100px;
}
.categoryBox .category-useful a {
	background: url(/img/icon/header-menu-useful.svg) no-repeat;
	background-position: center 3px;
	background-size: 100px;
}
.categoryBox .category-mercari a {
	background: url(/img/icon/header-menu-mercari.svg) no-repeat;
	background-position: center 5px;
	background-size: 100px;
}
.categoryBox .category-kansyo a {
	background: url(/img/icon/header-menu-kansyo.png) no-repeat;
	background-position: center 5px;
	background-size: 100px;
}
.order_categoryBox .category-order a {
	background: url(/img/icon/header-menu-order.svg) no-repeat;
	background-position: center 4px;
	background-size: 100px;
}
.order_categoryBox .category-sample a {
	background: url(/img/icon/header-menu-sample.svg) no-repeat;
	background-position: center 5px;
	background-size: 100px;
}
#header_other li {
	position: relative;
	line-height: 23px;
	margin-top: 8px;
	overflow: hidden;
}
#header_other li a {
	color: var(--brown_d);
	font-size: 14px;
	padding-left: 25px;
}
#header_other .li-category a::before, #header_other .li-guide a::before {
	content: '';
	display: block;
	width: 23px;
	height: 23px;
	position: absolute;
	top: 0;
	left: 0;
}
#header_other .li-category a::before {
	background-image: url(/img/icon/header-category.svg);
	background-position: center;
	background-size: 23px;
}
#header_other .li-guide a::before {
	background-image: url(/img/icon/header-guide.svg);
	background-position: center;
	background-size: 23px;
}
.jp-link img {
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	border-radius: 10px;
}
/* ホバー */
#header_bottom a:hover {
	opacity: 0.8;
}
.categoryBox li:first-child a:hover::after, .categoryBox li a:hover::after, .order_categoryBox li:first-child a::after, .order_categoryBox li:last-child a:hover::after {
	display: block;
	content: '';
	position: absolute;
	left: 10px;
	bottom: 5px;
	height: 3px;
	border-radius: 5px;
	transition: .3s;
}
.categoryBox li:first-child a:hover::after {
	width: 130px;
	background-color: var(--orange_d);
}
.categoryBox li a:hover::after {
	width: 96px;
	background-color: var(--orange_d);
}
.order_categoryBox li:last-child a:hover::after {
	width: 96px;
	background-color: var(--gray);
}
.order_categoryBox li:first-child a::after {
	width: 130px;
	background: url(/img/icon/header-menu-order-under.png);
}
#header_other li a:hover {
	text-decoration: underline;
}
/* 激安・サイズ別・用途別・印刷オーダーのプルダウン(.sub_menu)
==============================*/
.sub_menu {
	width: 100%;
	position: absolute;
	top: 202px;
	z-index: 100;
}
.sub_menu dt {
	padding-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 2px solid var(--brown_l);
	color: var(--brown_d);
	line-height: 1.3;
	margin-bottom: 10px;
}
.sub_menu a {
	color: var(--brown_d);
	font-size: 15px;
	display: block;
}
#discount_menuBox, #size_menuBox, #useful_menuBox, #order_menuBox {
	width: 1275px;
	margin: 0 auto;
	padding: 20px 20px;
	z-index: 100;
	display: none;
	background: var(--white);
	box-shadow: 0 0 10px 0px var(--gray);
	border-radius: 8px;
	transform: translateZ(1px);
}
#discount_menuBox {
	height: 330px;
}
#size_menuBox {
	height: 370px;
}
#useful_menuBox {
	height: 520px;
}
#order_menuBox {
	height: 570px;
}
#discount_menuBox dl {
	height: auto;
	float: left;
}
#discount_menu1 {
	width: 185px;
}
#discount_menu2, #discount_menu2 dt {
	width: 380px;
}
#discount_menu3, #discount_menu3 dt {
	width: 575px;
}
#discount_menu2, #discount_menu3 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	padding-top: 45px;
	margin-left: 47px;
}
#discount_menu2 dt, #discount_menu3 dt {
	position: absolute;
	top: 0;
	left: 0;
}
#discount_menuBox dt {
	margin-bottom: 15px;
}
#discount_menuBox a {
	width: 185px;
	height: 70px;
	display: block;
	border: solid 2px var(--gray);
	border-radius: 5px;
	box-sizing: border-box;
	margin-bottom: 10px;
	position: relative;
	font-weight: bold;
}
#discount_menuBox a span {
	font-size: 16px;
	font-weight: bold;
}
#discount_menuBox .discount-point {
	font-size: 13px;
	width: 168px;
	position: absolute;
	bottom: 5px;
	left: 6px;
	border-radius: 3px;
	box-sizing: border-box;
	text-align: center;
	background-color: var(--white);
}
#dd-d-advertise a, #dd-d-freeshipping a, #dd-d-cushion a {
	font-size: 18px;
}
#dd-d-advertise a {
	color: #DE5F22;
	padding: 7px 0 0 35px;
	background: url(/img/beginner-contents2-1-1.png)no-repeat;
	background-size: 40px;
	background-position: 110px 5px;
}
#dd-d-freeshipping a {
	color: var(--red);
	padding: 7px 0 0 35px;
	background: url(/img/discount_category_free-shipping.png)no-repeat;
	background-size: 40px;
	background-position: 110px 3px;
}
#dd-d-50 a, #dd-d-60 a, #dd-d-80 a, #dd-d-100 a, #dd-d-120 a, #dd-d-140 a {
	font-size: 25px;
	text-align: center;
}
#dd-d-50 a {
	color: #80AF19;
}
#dd-d-60 a {
	color: var(--s60);
}
#dd-d-80 a {
	color: var(--s80);
}
#dd-d-100 a {
	color: var(--s100);
}
#dd-d-120 a {
	color: var(--s120);
}
#dd-d-140 a {
	color: var(--s140);
}
#dd-d-nekoposu a {
	background: url(/img/discount-nekoposu.png) no-repeat;
	background-size: 187px;
	background-position: -3px -1px;
}
#dd-d-yupaket a {
	background: url(/img/discount-yupaket.png) no-repeat;
	background-size: 182px;
	background-position: 0 -3px;
}
#dd-d-teikeigai a {
	background: url(/img/discount-teikeigai.png) no-repeat;
	background-size: 187px;
	background-position: -3px -1px;
}
#dd-d-kuriposu a {
	background: url(/img/discount-kuriposu.png) no-repeat;
	background-size: 187px;
	background-position: -3px -1px;
}
#dd-d-yamato a {
	background: url(/img/discount-yamato.png) no-repeat;
	background-size: 187px;
	background-position: -3px -1px;
}
#dd-d-cushion a {
	color: #747575;
	padding: 7px 0 0 14px;
	background: url(/img/discount_category_cushion.png)no-repeat;
	background-size: 40px;
	background-position: 126px 3px;
}
#dd-d-advertise .discount-point {
	border: solid 1px #DE5F22;
}
#dd-d-freeshipping .discount-point {
	border: solid 1px var(--red);
}
#dd-d-50 .discount-point {
	border: solid 1px #80AF19;
}
#dd-d-60 .discount-point {
	border: solid 1px var(--s60);
}
#dd-d-80 .discount-point {
	border: solid 1px var(--s80);
}
#dd-d-100 .discount-point {
	border: solid 1px var(--s100);
}
#dd-d-120 .discount-point {
	border: solid 1px var(--s120);
}
#dd-d-140 .discount-point {
	border: solid 1px var(--s140);
}
#dd-d-nekoposu .discount-point, #dd-d-yamato .discount-point {
	border: solid 1px #009380;
	color: #009380;
}
#dd-d-yupaket .discount-point, #dd-d-teikeigai .discount-point, #dd-d-kuriposu .discount-point {
	border: solid 1px var(--post);
	color: var(--post);
}
#dd-d-cushion .discount-point {
	border: solid 1px #747575;
}
#size_menuBox dl {
	float: left;
	height: 145px;
}
#size_menuBox dl:nth-child(1), #size_menuBox dl:nth-child(4) {
	width: 324px;
}
#size_menuBox dl:nth-child(2), #size_menuBox dl:nth-child(3) {
	width: 244px;
}
#size_menuBox dl + dl {
	margin-left: 30px;
}
#size_menuBox dd {
	float: left;
	width: 120px;
	margin: 10px 0;
}
#size_menuBox dl:nth-child(1) dd, #size_menuBox dl:nth-child(4) dd {
	width: 160px;
}
#useful_menuBox dl {
	float: left;
}
#useful_menu1, #useful_menu2, #useful_menu4 {
	width: 225px;
}
#useful_menu3 {
	width: 460px;
}
#useful_menuBox dl + dl {
	margin-left: 30px;
}
#useful_menuBox dd {
	width: 225px;
	float: left;
	margin-bottom: 10px;
}
#useful_menuBox dd a {
	padding-left: 45px;
}
#useful_menuBox a {
	line-height: 40px;
}
#useful_menuBox a:hover, #size_menuBox a:hover {
	text-decoration: underline;
}
#useful_menu1-1 {
	background: url(/img/common/icon-useful1-1.png)no-repeat;
	background-size: 40px;
}
#useful_menu1-2 {
	background: url(/img/common/icon-useful1-2.png)no-repeat;
	background-size: 40px;
}
#useful_menu1-3 {
	background: url(/img/common/icon-useful1-3.png)no-repeat;
	background-size: 40px;
}
#useful_menu1-4 {
	background: url(/img/common/icon-useful1-4.png)no-repeat;
	background-size: 40px;
}
#useful_menu1-5 {
	background: url(/img/common/icon-useful1-5.png)no-repeat;
	background-size: 40px;
}
#useful_menu1-6 {
	background: url(/img/common/icon-useful1-6.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-1 {
	background: url(/img/common/icon-useful2-1.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-2 {
	background: url(/img/common/icon-useful2-2.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-3 {
	background: url(/img/common/icon-useful2-3.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-4 {
	background: url(/img/common/icon-useful2-4.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-5 {
	background: url(/img/common/icon-useful2-5.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-6 {
	background: url(/img/common/icon-useful2-6.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-7 {
	background: url(/img/common/icon-useful2-7.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-8 {
	background: url(/img/common/icon-useful2-8.png)no-repeat;
	background-size: 40px;
}
#useful_menu2-9 {
	background: url(/img/common/icon-useful2-9.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-1 {
	background: url(/img/common/icon-useful3-1.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-2 {
	background: url(/img/common/icon-useful3-2.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-3 {
	background: url(/img/common/icon-useful3-3.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-4 {
	background: url(/img/common/icon-useful3-4.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-5 {
	background: url(/img/common/icon-useful3-5.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-6 {
	background: url(/img/common/icon-useful3-6.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-7 {
	background: url(/img/common/icon-useful3-7.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-8 {
	background: url(/img/common/icon-useful3-8.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-9 {
	background: url(/img/common/icon-useful3-9.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-10 {
	background: url(/img/common/icon-useful3-10.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-11 {
	background: url(/img/common/icon-useful3-11.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-12 {
	background: url(/img/common/icon-useful3-12.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-13 {
	background: url(/img/common/icon-useful3-13.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-14 {
	background: url(/img/common/icon-useful3-14.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-15 {
	background: url(/img/common/icon-useful3-15.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-16 {
	background: url(/img/common/icon-useful3-16.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-17 {
	background: url(/img/common/icon-useful3-17.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-18 {
	background: url(/img/common/icon-useful3-18.png)no-repeat;
	background-size: 40px;
}
#useful_menu3-19 {
	background: url(/img/common/icon-useful3-19.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-1 {
	background: url(/img/common/icon-useful4-1.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-2 {
	background: url(/img/common/icon-useful4-2.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-3 {
	background: url(/img/common/icon-useful4-3.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-4 {
	background: url(/img/common/icon-useful4-4.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-5 {
	background: url(/img/common/icon-useful4-5.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-6 {
	background: url(/img/common/icon-useful4-6.png)no-repeat;
	background-size: 40px;
}
#useful_menu4-7 {
	background: url(/img/common/icon-useful4-7.png)no-repeat;
	background-size: 40px;
}
#dl-order {
	position: relative;
}
#dl-order > dt {
	font-size: 20px;
}
#dl-order .more_right {
	color: var(--blue_l);
	font-weight: normal;
	float: right;
	position: static;
}
#dl-order > dd {
	float: left;
	border: solid 1px var(--gray);
	position: relative;
	margin-bottom: 18px;
}
#dd-order-box, #dd-fullorder-made {
	height: 140px;
	margin-top: 30px;
	border-radius: 0 5px 5px 5px;
}
#dd-order-box {
	width: 760px;
	margin-right: 18px;
}
#dd-fullorder-made {
	width: 450px;
}
#dd-order-board, #dd-order-partition, #dd-order-display, #dd-order-package, #dd-sunshade-made, #dd-partition-made, #dd-order-largebox, #dd-design-service {
	width: 293px;
	height: 140px;
	border-radius: 5px;
}
#dd-order-board, #dd-order-partition, #dd-order-display, #dd-order-package, #dd-sunshade-made, #dd-partition-made {
	margin-right: 18px;
}
#dd-order-box a, #dd-fullorder-made a {
	padding: 15px 20px 15px 140px;
	height: 140px;
}
#dd-order-board a, #dd-order-partition a, #dd-order-display a, #dd-order-package a, #dd-sunshade-made a, #dd-partition-made a, #dd-order-largebox a, #dd-design-service a {
	padding: 15px;
	height: 140px;
}
#dl-order dd a:hover {
	opacity: 0.8;
}
#dd-order-box span, #dd-fullorder-made span {
	position: absolute;
	left: -1px;
	top: -30px;
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 3px 0;
	width: 260px;
	border-radius: 5px 5px 0 0;
}
#dd-order-box span {
	background-color: var(--red);
}
#dd-fullorder-made span {
	background-color: var(--blue_d);
}
#dd-order-box ul {
	margin-top: 10px;
}
#dd-order-box li {
	border: solid 2px var(--red);
	border-radius: 5px;
	background-color: var(--pink_l);
	color: var(--red);
	font-size: 14px;
	font-weight: bold;
	display: inline;
	padding: 8px 10px;
	margin-right: 10px;
}
#dl-order dl dt {
	border: none;
	padding-bottom: 0;
	line-height: 1.2;
}
#dd-order-box dt, #dd-fullorder-made dt {
	margin-bottom: 7px;
	font-size: 22px;
}
#dd-order-board dt, #dd-order-partition dt, #dd-order-display dt, #dd-order-package dt, #dd-sunshade-made dt, #dd-partition-made dt, #dd-order-largebox dt, #dd-design-service dt {
	font-size: 17px;
	margin-bottom: 15px;
}
#dl-order dl dd {
	font-size: 14px;
	line-height: 1.7;
}
#dd-order-box dl dd {
	font-size: 18px;
}
#dd-order-board dd, #dd-order-partition dd, #dd-order-display dd, #dd-order-package dd, #dd-sunshade-made dd, #dd-partition-made dd, #dd-order-largebox dd, #dd-design-service dd {
	padding-left: 85px;
}
#dd-order-box a {
	background: url(/img/common/nav-order_sub_image11.png)no-repeat;
	background-size: 120px;
	background-position: 10px;
}
#dd-fullorder-made a {
	background: url(/img/common/nav-order_sub_image9.png)no-repeat;
	background-size: 110px;
	background-position: 20px;
}
#dd-order-board a {
	background: url(/img/common/nav-order_sub_image2.png)no-repeat;
	background-size: 75px;
	background-position: 15px 47px;
}
#dd-order-partition a {
	background: url(/img/common/nav-order_sub_image3.png)no-repeat;
	background-size: 75px;
	background-position: 15px 47px;
}
#dd-order-display a {
	background: url(/img/common/nav-order_sub_image4.png)no-repeat;
	background-size: 75px;
	background-position: 15px 50px;
}
#dd-order-package a {
	background: url(/img/common/nav-order_sub_image5.png)no-repeat;
	background-size: 75px;
	background-position: 15px 50px;
}
#dd-order-largebox a {
	background: url(/img/common/nav-order_sub_image6.png)no-repeat;
	background-size: 75px;
	background-position: 15px 50px;
}
#dd-sunshade-made a {
	background: url(/img/common/nav-order_sub_image7.png)no-repeat;
	background-size: 75px;
	background-position: 15px 50px;
}
#dd-partition-made a {
	background: url(/img/common/nav-order_sub_image8.png)no-repeat;
	background-size: 75px;
	background-position: 15px 50px;
}
#dd-design-service a {
	background: url(/img/common/nav-order_sub_image10.png)no-repeat;
	background-size: 75px;
	background-position: 15px 50px;
}
/* #header_follow
==============================*/
#header_follow {
	position: fixed;
	top: 0px;
	right: 0;
	z-index: 100;
	background: var(--white);
	box-shadow: 0px 0px 10px 0px #eaeaea;
	width: 100%;
	padding: 10px 0 15px 0;
	display: none;
}
#header_follow_inner {
	margin: 0 auto;
	width: 1300px;
	height: 70px;
	position: relative;
	display: flex;
}
#logo3 img {
	width: 110px;
}
#header_follow_inner .categoryBox {
	margin-left: 10px;
}
#header_follow_inner .order_categoryBox {
	margin: 0 24px;
}
#header_follow_inner .categoryBox li:first-child, #header_follow_inner .order_categoryBox li:first-child {
	width: 140px;
}
#header_follow_inner .categoryBox li, #header_follow_inner .order_categoryBox li {
	width: 110px;
}
#header_follow_inner .order_categoryBox + div {
	width: 280px;
	margin-right: 10px;
}
#header_follow_inner .categoryBox li a:hover::after, #header_follow_inner .categoryBox li:first-child a:hover::after, #header_follow_inner .order_categoryBox li:first-child a::after, #header_follow_inner .order_categoryBox li:last-child a:hover::after {
	left: 5px;
}
#contact {
	height: 30px;
	background: var(--blue_d);
	border-radius: 5px;
}
#contact a {
	display: block;
	padding: 5px 0;
	text-align: center;
	line-height: 20px;
	font-size: 18px;
	color: var(--white);
	font-family: "Arial";
}
::-webkit-full-page-media, _:future, :root #contact {
	font-size: 17px;
}
/* header_follow内のキーワード検索 */
#gFormBox {
	margin-top: 5px;
}
#gForm2 {
	height: 35px;
	background-color: var(--white);
	border: 3px solid var(--orange_d);
	border-radius: 5px;
	position: relative;
}
#gFrame2 {
	width: 238px;
	padding: 7px 0 7px 7px;
	font-size: 14px;
	line-height: 1;
	overflow: hidden;
	background-color: transparent;
	border: none;
	color: var(--brown_d);
	word-wrap: break-word;
	outline: none;
	display: block;
	-webkit-tap-highlight-color: transparent;
}
#gFrame2::placeholder {
	color: #868686;
}
#gKensaku2 {
	position: absolute;
	top: -2px;
	right: -4px;
	width: 34px;
	height: 34px;
	text-indent: 50px;
	background: url(/img/common/icon_head_search.png) no-repeat center center;
	background-size: 50% auto;
	background-color: var(--orange_d);
	border-radius: 0 5px 5px 0;
	overflow: hidden;
	border: none;
}
/* 検索サジェスト(#suggest)
==============================*/
#suggest div, #suggest2 div {
	position: relative;
	padding: 5px;
	display: block;
	overflow: hidden;
	width: 543px;
	border-bottom: 1px solidvar(--gray);
	text-overflow: ellipsis;
}
#suggest, #suggest2 {
	position: absolute;
	background-color: var(--white);
	border-top: 1px solidvar(--gray);
	border-left: 1px solidvar(--gray);
	border-right: 1px solidvar(--gray);
	max-height: 700px;
	width: 570px;
	z-index: 99999;
	box-shadow: 1px 1px 10px #c1c1c1;
	overflow: scroll;
}
#suggest img, #suggest2 img {
	float: left;
	margin-right: 10px;
}
#suggest a, #suggest2 a {
	text-decoration: none;
}
#suggest div:nth-child(2n+1), #suggest2 div:nth-child(2n+1) {
	background-color: var(--gray_l);
}
#suggest div:nth-child(2n), #suggest2 div:nth-child(2n) {
	background-color: var(--white);
}
#suggest .item_text, #suggest2 .item_text {
	display: block;
	margin: 8px 0;
}
#suggest div a {
	color: var(--blue_l);
}
.categoryBox li div#suggest2 div a {
	color: var(--blue_l);
	position: relative;
	display: inline;
}
.categoryBox li div#suggest2 div a:hover:after {
	display: none;
}
.item_no {
	font-size: small;
	color: #54392c;
	border: solid 1px;
	border-radius: 5px;
	padding: 0px 10px;
	background: var(--white);
}
.item_name {
	color: var(--blue_l);
	text-decoration: underline;
	padding-left: 5px;
}
.item_size {
	font-size: 17px;
	font-weight: bold;
	position: absolute;
	left: 290px;
	color: var(--brown_d);
}
.item_icon_mail, .item_icon50, .item_icon60, .item_icon80, .item_icon100, .item_icon120, .item_icon140, .item_icon160, .item_icon170, .item_icon180 {
	color: var(--white);
	font-weight: bold;
	padding: 2px 3px;
	width: 67px;
	text-align: center;
	position: absolute;
	left: 151px;
}
.item_icon_mail {
	background: var(--post);
}
.item_icon50 {
	background: #80AF19;
}
.item_icon60 {
	background: var(--s60);
}
.item_icon80 {
	background: var(--s80);
}
.item_icon100 {
	background: var(--s100);
}
.item_icon120 {
	background: var(--s120);
}
.item_icon140 {
	background: var(--s140);
}
.item_icon160 {
	background: var(--s160);
}
.item_icon170 {
	background: var(--s170);
}
.item_icon180 {
	background: var(--s180);
}
.item_iconsoku {
	border: solid #c64444 2px;
	color: #c64444;
	background: var(--white);
	font-weight: bold;
	padding: 0px 1px;
	position: absolute;
	left: 218px;
}
.item_price {
	float: right;
	font-size: 18px;
	color: var(--red);
}
.p-name {
	padding: 5px 0 0 0;
	font-size: 120%;
}
/* ページ内カート(#innerCart)
==============================*/
#innerCart {
	width: 650px;
	background: var(--white);
	border: solid 5px var(--orange_d);
	border-radius: 5px;
	position: absolute;
	top: 90px;
	right: 0px;
	box-shadow: 2px 2px 10px rgb(0, 0, 0, 0.6);
	z-index: 10;
	display: none;
}
#innerCart:after {
	content: "";
	border: solid 16px transparent;
	border-bottom: solid 30px var(--orange_d);
	position: absolute;
	top: -48px;
	right: 28px;
}
#innerCart h3 {
	color: var(--white);
	font-size: 16px;
	background: var(--orange_d);
	padding: 5px 15px;
	margin-bottom: 0;
}
#innerCartBox .deleteBtn:hover, #innerCartSubmit:hover {
	transform: translateY(2px);
	box-shadow: none;
	transition: 0.2s;
}
#innerCart table {
	width: 100%;
	border-collapse: separate;
	padding: 0 5px;
}
#innerCart tr + tr th, #innerCart tr + tr td {
	border-top: dashed 1px var(--gray);
}
#innerCart tr + tr:has(td[rowspan]) th, #innerCart tr + tr:has(td[rowspan]) td {
	border-top: solid 1px var(--gray);
}
#innerCart th, #innerCart td {
	border: none;
	text-align: left;
	vertical-align: top;
}
#innerCart td {
	vertical-align: top;
}
/* #innerCartBox */
#innerCartBox {
	display: block;
	min-height: 120px;
	max-height: 350px;
	overflow: auto;
	background: url(../img/2017-top-loading.gif) no-repeat center top 20px / 80px 80px;
}
#innerCartBox table {
	min-height: 120px;
	background-color: var(--white);
}
#innerCartBox tr {
	position: relative;
}
#innerCartBox th {
	width: 265px;
}
#innerCartBox th > a {
	display: block;
	width: 60px;
	height: 60px;
	float: left;
	margin-bottom: 25px;
}
#innerCartBox img {
	width: 100%;
	height: 100%;
}
#innerCartBox .innerID {
	float: right;
	width: 180px;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 5px;
}
#innerCartBox .innerTitle {
	float: right;
	width: 180px;
}
#innerCartBox .innerTitle a {
	display: block;
	color: var(--blue_l);
	font-size: 15px;
}
#innerCartBox .innerTitle a:hover {
	text-decoration: underline;
}
#innerCartBox td:has(.lot) {
	padding: 10px 5px;
}
#innerCartBox .lot, #innerCart .price {
	display: block;
}
#innerCartBox .price {
	font-weight: bold;
}
#innerCartBox td:has(.deleteBtn) {
	padding: 0;
}
#innerCartBox .deleteBtn {
	width: 60px;
	padding: 4px 0;
	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);
	border-radius: 5px;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	transition: 0.2s;
	cursor: pointer;
	position: absolute;
	left: 10px;
	top: 74px;
}
#innerCartBox td:has(.soryo-detail) {
	display: flex;
}
#innerCartBox .soryo-detail, #innerCartBox .soryo-img {
	background-color: var(--gray_l);
	padding: 5px 8px;
}
#innerCartBox .soryo-detail {
	font-size: 15px;
	width: 140px;
	padding-right: 5px;
	border-radius: 5px 0 0 5px;
}
#innerCartBox .soryo-img {
	padding-left: 5px;
	border-radius: 0 5px 5px 0;
}
#innerCartBox .soryo-bar-max {
	display: block;
	width: 100px;
	height: 27px;
	border: solid 1px var(--brown_l);
	position: relative;
}
#innerCartBox .soryo-bar {
	display: block;
	text-align: center;
	line-height: 26px;
	font-weight: bold;
	color: var(--brown_d);
	background: var(--brown_l);
	position: absolute;
	left: 0;
}
/* #innerCartGokeiBox */
#innerCartGokeiBox {
	border-top: solid 5px var(--orange_d);
}
#innerCartGokeiBox th, #innerCartGokeiBox td {
	padding: 8px 10px;
}
#innerCartGokeiBox th {
	width: 440px;
}
#innerCartGokeiBox td {
	text-align: right;
}
#innerCartGokeiBox select {
	margin-right: 5px;
	appearance: auto;
}
#innerCartGokei th, #innerCartGokei td {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 0;
}
#innerCart > p {
	text-align: center;
	margin: 10px 0;
}
#innerCartSubmit {
	display: inline-block;
	width: 180px;
	height: 40px;
	padding: 0 10px;
	background: var(--red);
	border: 1px solid var(--red);
	border-radius: 5px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
	color: var(--white);
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	transition: 0.2s;
	position: relative;
	cursor: pointer;
}
#innerCart a:has(#innerCartSubmit):hover {
	opacity: 1;
}
/* 個人の場合の送料 */
#innerCartGokeiBox label:has(.link) {
	display: block;
	margin-top: 5px;
}
#innerCartGokeiBox .link {
	color: var(--blue_l);
	cursor: pointer;
}
#innerCartGokeiBox .link:hover, #innerCartGokeiBox .message_box a:hover {
	text-decoration: underline;
}
#innerCartGokeiBox input#individual {
	display: none;
}
#innerCartGokeiBox .message_box {
	height: 0;
	padding: 0;
	font-size: 15px;
	background-color: var(--pink_d);
	border-radius: 5px;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}
#innerCartGokeiBox .message_box a {
	color: var(--blue_l);
}
#innerCartGokeiBox input#individual:checked ~ .message_box {
	height: 105px;
	padding: 8px;
	opacity: 1;
}
/* フッター
====================================================================================================*/
footer {
	margin-top: 60px;
	min-width: 1300px;
}
/* #footer_contents
==============================*/
#footer_contents {
	margin: 0 auto;
	max-width: 1300px;
}
/* #footer_info
==============================*/
#footer_info {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}
/* アースダンボールの紹介資料(PDF) */
#catalog_info {
	width: 800px;
	height: 220px;
	padding: 20px;
	background-color: var(--white);
	border: solid 1px var(--gray);
	border-radius: 10px;
	position: relative;
}
#catalog_info dt {
	font-size: 18px;
	font-weight: bold;
	color: var(--brown_d);
	margin-bottom: 3px;
}
#catalog_info dd p {
	width: 480px;
}
#catalog_info dd p:nth-of-type(2) {
	padding: 8px;
	background: var(--beige_l);
	border-radius: 5px;
	font-size: 14px;
	position: relative;
	margin-top: 5px;
}
#catalog_info dd p:nth-of-type(2) .red {
	font-weight: bold;
}
#catalog_info dd p:nth-of-type(2) span:nth-of-type(2) {
	display: block;
	font-size: 13px;
	color: #666;
}
#catalog_info dd p:nth-of-type(2)::after {
	content: '';
	display: block;
	width: 56px;
	height: 80px;
	background: url(/img/profile/catalog-2.0.png) no-repeat center / 56px 80px;
	position: absolute;
	top: 0px;
	right: 0px;
	transform: rotate(15deg);
}
#catalog_info dd img {
	width: 252px;
	height: 180px;
	position: absolute;
	top: 20px;
	right: 20px;
}
/* 営業日カレンダー */
#footer_info .calendar {
	width: 460px;
	margin-bottom: 30px;
}
#footer_info .calendar p {
	color: var(--brown_d);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
#footer_info .calendar dl {
	margin-bottom: 12px;
}
#footer_info .calendar dt {
	display: inline-block;
	padding: 4px 8px;
	color: var(--white);
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	background-color: var(--brown_d);
	border-radius: 3px;
	margin-right: 10px;
}
#footer_info .calendar dd {
	display: inline-block;
	color: var(--black);
	font-size: 14px;
}
#footer_info .calendar dd + dt {
	margin-left: 10px;
}
/* #footer_about
==============================*/
#footer_about {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
#footer_about dl {
	width: 390px;
}
#footer_about dl:nth-of-type(2) {
	width: 450px;
	padding: 0 30px;
	border-right: solid 1px var(--brown_l);
	border-left: solid 1px var(--brown_l);
}
#footer_about dt {
	margin-bottom: 5px;
}
#footer_about dt a {
	color: var(--brown_d);
	font-size: 18px;
	font-weight: bold;
}
#footer_about dt a:hover {
	text-decoration: underline;
}
#footer_about dd {
	line-height: 1.5;
}
#footer_about dd .red {
	font-weight: bold;
}
#footer_about dd a {
	color: var(--blue_l);
}
#footer_about dd a:hover {
	text-decoration: underline;
}
#footer_about dl:nth-of-type(1) img {
	margin-top: 10px;
}
#footer_about dl:nth-of-type(3) {
	position: relative;
}
#footer_about dl:nth-of-type(3) dl dt {
	display: inline-block;
	padding: 3px 10px;
	color: var(--white);
	font-size: 14px;
	font-weight: bold;
	background-color: var(--brown_d);
	border-radius: 3px;
}
#footer_about dl:nth-of-type(3) dl dd + dt {
	margin-top: 5px;
}
#footer_about dl:nth-of-type(3) dl + a {
	position: absolute;
	right: 0;
	bottom: 0;
}
#footer_about dl:nth-of-type(3) dl + a img {
	width: 120px;
	height: 60px;
}
/* #footer_contact
==============================*/
#footer_contact {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
#footer_contact li {
	width: 420px;
	padding: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: var(--beige_d);
	border-radius: 10px;
}
#footer_contact li p:first-child {
	padding: 1px 0 2px 40px;
	font-size: 16px;
	color: var(--brown_d);
}
#footer_contact li:nth-of-type(1) p:first-child {
	background: url(/img/icon/title-tel.svg) no-repeat top left / 30px 30px;
}
#footer_contact li:nth-of-type(2) p:first-child {
	background: url(/img/icon/title-fax.svg) no-repeat top left / 30px 30px;
}
#footer_contact li:nth-of-type(3) p:first-child {
	background: url(/img/icon/title-mail.svg) no-repeat top left / 30px 30px;
}
#footer_contact li p:first-child span {
	font-size: 18px;
	font-weight: bold;
}
#footer_contact li:nth-of-type(1) a, #footer_contact li:nth-of-type(2) p + span, #footer_contact li:nth-of-type(2) p + span a {
	font-size: 45px;
	font-weight: bold;
	color: var(--brown_d);
}
#footer_contact li:nth-of-type(1) p:last-child, #footer_contact li:nth-of-type(2) p:last-child {
	color: var(--brown_d);
}
#footer_contact .button-brown {
	width: 320px;
}
#footer_contact .button-brown::after {
	content: '';
	display: block;
	width: 80px;
	height: 70px;
	background: url(/img/hakomaru/hakomaru-mail.png) no-repeat center / 80px auto;
	background-size: cover;
	position: absolute;
	top: -17px;
	right: -25px;
}
/* #footer_sitemap
==============================*/
#footer_sitemap {
	padding: 60px 0 30px;
	background-color: var(--beige_l);
}
#footer_sitemap * {
	color: var(--brown_d);
}
#footer_sitemap > ul {
	width: 1300px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
#footer_sitemap > ul ul + ul {
	margin-top: 40px;
}
#footer_sitemap .sitemap_title, #footer_sitemap .sitemap_title a {
	font-size: 18px;
	font-weight: bold;
}
#footer_sitemap > ul ul li + li {
	margin-top: 8px;
	padding-left: 15px;
	position: relative;
}
#footer_sitemap > ul ul li + li::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-right: solid 3px var(--brown_l);
	border-bottom: solid 3px var(--brown_l);
	transform: rotate(-45deg);
	position: absolute;
	top: 5px;
	left: 0px;
}
#footer_sitemap > ul a:hover {
	text-decoration: underline;
}
#footer_sitemap > ul li:first-child ul {
	width: 440px;
	display: flex;
	flex-wrap: wrap;
}
#footer_sitemap > ul li:first-child ul .sitemap_title {
	width: 440px;
}
#footer_sitemap > ul li:first-child ul li {
	width: 220px;
}
/* #footer_other */
#footer_other {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
}
#footer_other > div > span {
	font-size: 18px;
	font-weight: bold;
	display: block;
}
#footer_other > div ul {
	display: flex;
	gap: 20px;
}
#footer_other > div li:first-child {
	width: 350px;
}
#footer_other > div a:hover {
	text-decoration: underline;
}
#footer_other .sns {
	display: flex;
	gap: 10px;
}
#footer_other .sns li {
	width: 40px;
	height: 40px;
}
/* #footer_bottom
==============================*/
#footer_bottom {
	padding: 30px 0 60px;
	text-align: center;
	background-color: var(--brown_d);
}
#footer_bottom * {
	color: var(--white);
}
#footer_bottom ul {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 10px;
}
#footer_bottom li + li {
	padding-left: 20px;
	border-left: solid 1px var(--white);
}
#footer_bottom li a:hover {
	text-decoration: underline;
}
/* #footer_short
==============================*/
#footer_short #footer_contents {
	padding-top: 60px;
}
#footer_short {
	background-color: var(--beige_l);
}
#footer_short #footer_info {
	justify-content: space-between;
}
#footer_short .calendar {
	order: 2;
}
#footer_short #footer_other {
	order: 1;
	gap: 20px;
	color: var(--brown_d);
}
#footer_short #footer_other ul {
	display: block;
	margin-top: 10px;
}
#footer_short #footer_other > div a {
	color: var(--brown_d);
}
/* サイドナビ
====================================================================================================*/
#sidenavi {
	position: fixed;
	bottom: 80px;
	right: 20px;
	display: none;
	z-index: 20;
}
#sidenavi img {
	width: 90px;
	height: auto;
}
.page_top {
	margin-top: 5px;
}
.page_top a {
	display: block;
	margin: auto;
	width: 70px;
	height: 70px;
	background-color: var(--brown_d);
	border-radius: 60px;
}
.page_top span {
	position: relative;
	display: block;
	padding-top: 100%;
	height: 0;
	overflow: hidden;
}
#sidenavi .page_top span:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	background-image: url(/img/common/icon-arrow_white.svg);
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: 32px auto;
	background-size: 16px auto;
	transform: rotate(-90deg);
}
#nav_member {
	width: 90px;
	font-weight: bold;
	text-align: center;
}
.nav_point {
	display: block;
}