@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;
}
/* 共通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;
	--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: 50px;
	padding: 0 5px;
	font-size: 18px;
}
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);
}
/* ボタン共通 */
.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: 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: 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 35px;
	border: solid 1px var(--gray);
	border-radius: 5px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
}
.product_list2 .product_box + .product_box {
	margin: 0;
}
.product_list2 .product_box > a {
	display: block;
}
/* 商品画像 */
.product_box a img {
	width: 220px;
	height: 220px;
	vertical-align: middle;
	float: left;
	margin-bottom: 5px;
}
.product_list2 .product_box a img {
	width: 200px;
	height: 200px;
	float: none;
	margin: 0;
}
/*　商品名　*/
.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;
}
.product_list2 .hikakuOrder h3 {
	height: 63px;
}
/* 価格　*/
.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-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;
	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 .itemPhoto, .gijiItem .itemPhoto {
	display: block;
	width: 220px;
	height: 220px;
	float: left;
	background: no-repeat;
	background-size: 80%;
	background-position: center;
	box-sizing: border-box;
	border: solid 1px var(--gray);
	margin-bottom: 5px;
}
.product_list2 .hikakuOrder .itemPhoto, .product_list2 .gijiItem .itemPhoto {
	width: 200px;
	height: 200px;
	float: none;
	margin: 0;
}
.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);
}
.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;
}
/*ジャストサイズアイコン*/
.product_box .just_icon {
	position: absolute;
	top: 60px;
	left: 110px;
}
.product_list2 .product_box .just_icon {
	top: 40px;
	right: 15px;
	left: unset;
}
.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);
}
/* ヘッダー
====================================================================================================*/
header {
	position: absolute;
	background-color: var(--white);
	box-shadow: 0px 0px 10px #0000001A;
	height: 210px;
	top: 0;
	width: 480px;
}
/* #header
==============================*/
#header {
	position: relative;
	margin: 0 auto;
	width: 480px;
}
/* #header_main
==============================*/
#header_main {
	width: 480px;
	position: relative;
	height: 68px;
}
/* アースダンボールロゴ */
#logo1 img {
	width: 230px;
	margin: 11px 0 0 0;
}
/* カートボタン */
#header_cart {
	position: absolute;
	top: 12px;
	right: 10px;
}
#header_cart a {
	color: var(--brown_d);
}
#header_cart li {
	float: left;
	width: 53px;
}
#header_cart #li-mypage, #header_cart #li-login {
	width: 63px;
}
#header_cart li + li {
	margin: 0 0 0 5px;
}
#header_cart li a {
	display: block;
	position: relative;
	padding: 30px 0 0 0;
	line-height: 1.3;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
#header_cart li a:before {
	display: block;
	content: '';
	position: absolute;
	top: -27px;
	left: 0;
	bottom: 0;
	width: 53px;
	height: 36px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: 36px auto;
}
#header_cart .li-guide a:before {
	background-image: url(/img/common/nav-danballguide.png);
}
#header_cart #li-mypage a:before {
	background-image: url(/img/common/web_log_in.png);
	width: 63px;
}
#header_cart #li-login a:before {
	background-image: url(/img/common/web_log_in.png);
	width: 63px;
}
#li-cart a:before {
	background-image: url(/img/common/nav-cart.png);
}
#header_cart li a span {
	display: block;
	font-weight: bold;
}
#cart_in {
	position: absolute;
	top: -6px;
	left: 30px;
	padding: 2px 2px;
	width: 19px;
	height: 19px;
	font-size: 13px;
	color: var(--white);
	text-align: center;
	background-color: var(--red);
	border-radius: 20px;
}
/* スマホ用メニュー */
#header_main #header_cart #menuOpen {
	display: inline-block;
	position: relative;
	padding: 30px 0 0 0;
	line-height: 1.3;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
#header_main #header_cart #menuClose {
	display: none;
	position: relative;
	padding: 30px 0 0 0;
	line-height: 1.3;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
#header_main #header_cart #menuOpen:before {
	display: block;
	content: '';
	position: absolute;
	top: -35px;
	left: 4px;
	bottom: 0;
	width: 45px;
	height: 36px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: 43px auto;
	background-image: url(/img/common/nav-menu.png);
}
#header_main #header_cart #menuClose:before {
	display: block;
	content: '';
	position: absolute;
	top: -35px;
	left: 4px;
	bottom: 0;
	width: 45px;
	height: 36px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: 43px auto;
	background-image: url(/img/common/nav-menuClose.png);
}
#smMenu {
	position: absolute;
	z-index: 11;
	overflow: hidden;
	transition: all 0.5s ease-out;
	top: 50px;
	right: -10px;
	width: 415px !important;
	height: 0;
	background: var(--white);
	box-shadow: 0px 10px 10px #00000029;
}
#smMenu ul {
	padding: 20px;
}
#header_main #header_cart #smMenu li a {
	display: block;
	padding: 20px 0 20px 60px;
	position: relative;
	font-size: 18px;
	text-decoration: none;
	border-bottom: 1px var(--brown_l) solid;
	font-weight: normal;
	text-align: left;
}
#header_main #header_cart #smMenu li a:before {
	content: '';
	width: 10px;
	height: 10px;
	border-right: 3px var(--brown_l) solid;
	border-bottom: 3px var(--brown_l) solid;
	position: absolute;
	top: -5px;
	right: -345px;
	transform: rotate(-45deg);
}
#header_main #header_cart #smMenu li .link:before {
	background: url(/img/sitemap-icon-unei_li.png) no-repeat;
	transform: rotate(0deg);
	border: none;
	width: 25px;
}
#header_main #header_cart #smMenu li + li {
	margin: 0;
}
#smMenu .menu_title, #smMenu .sm-mypage-btn {
	width: 415px;
}
#smMenu #sm-menu-search1 {
	width: 375px;
}
#smMenu #sm-menu-search1, #smMenu #sm-menu-search2, #smMenu #sm-menu-search3, #smMenu #sm-menu-search4, #smMenu #sm-menu-recom2, #smMenu #sm-menu-search5, #smMenu #sm-menu-recom1, #smMenu #sm-menu-recom3, #smMenu #sm-menu-customer1, #smMenu #sm-menu-customer2, #smMenu #sm-menu-customer3, #smMenu #sm-menu-search6 {
	width: 375px;
}
#sm-menu-recom2 ul li {
	width: 375px;
}
#header_main #header_cart #smMenu li.menu_title {
	padding: 10px 20px 10px 20px;
	color: var(--brown_d);
	font-size: 20px;
	background: var(--beige_l);
	font-weight: bold;
	margin: 20px 0 0 -20px;
}
#header_main #header_cart #smMenu li.no_border a {
	border: none;
}
#smMenu .smMenu_title {
	padding: 10px 20px 10px 20px;
	color: var(--brown_d);
	font-size: 20px;
	background: var(--beige_l);
	float: left;
	font-weight: bold;
	width: 415px;
	margin-top: 20px;
}
/* スマホメニュー 閲覧履歴、お気に入り */
#smMenu .scroll {
	width: 1000px;
	overflow: hidden;
}
#smMenu .scrollBox {
	width: 480px;
	overflow-x: scroll;
}
#smMenu .product_viewed, #smMenu .product_fovo {
	float: left;
	width: 185px;
	padding: 15px 0px 15px 15px;
}
#smMenu .product_text {
	height: 50px;
	overflow: hidden;
	margin-bottom: 10px;
}
#smMenu .product_viewed .product_text, #smMenu .product_fovo .product_text {
	font-size: 16px;
	width: 165px;
	color: var(--blue_l);
	line-height: 25px;
}
#smMenu .product_viewed li, #smMenu .product_fovo li {
	width: 165px !important;
	margin-top: -20px;
	margin-left: -20px;
}
#smMenu .product_viewed .product_innersize, #smMenu .product_fovo .product_innersize {
	width: 170px !important;
	margin-top: -2px !important;
	margin-left: -20px !important;
}
#smMenu .product_viewed ul, #smMenu .product_fovo ul {
	margin: -10px 0px 0px 0px;
	width: 130px;
}
/* スマホ版ログインボタン */
#header_main #header_cart #smMenu li#sm-li-login {
	margin: 20px 0 0 -2px;
}
#header_main #header_cart #smMenu li#sm-li-login a {
	background-color: var(--orange_l);
	padding: 15px 15px !important;
	border-radius: 5px;
	width: 385px;
	text-align: center !important;
	text-indent: 0px;
}
#header_main #header_cart #smMenu li#sm-li-login a:before, #header_main #header_cart #smMenu li.sm-mypage-btn a:before {
	display: none;
}
#header_main #header_cart #smMenu li.sm-mypage-btn {
	margin: 15px 0 0 -2px;
}
#header_main #header_cart #smMenu li#sm-li-join {
	margin: 15px 0 20px -2px;
}
#header_main #header_cart #smMenu li#sm-logout_direct {
	margin: 15px 0 20px -2px;
}
#header_main #header_cart #smMenu li.sm-mypage-btn a {
	padding: 15px 15px !important;
	border-radius: 5px;
	width: 385px;
	text-align: center !important;
	background-color: var(--yellow_l);
	border: solid 1px var(--orange_l);
	text-indent: 0px;
}
#header_main #header_cart #smMenu li.sm-mypage-btn a:before {
	right: 10px;
}
#header_main #header_cart #smMenu li.sm-mypage-btn input {
	padding: 17px 15px !important;
	border-radius: 5px;
	width: 387px;
	text-align: center !important;
	background-color: var(--yellow_l);
	border: solid 1px var(--orange_l);
	text-indent: 0px;
	font-size: 18px;
	color: var(--brown_d);
	font-weight: normal;
}
#header_main #header_cart #smMenu li#sm-li-member .point {
	display: block;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0 0 0;
}
#header_main #header_cart #smMenu .hidden_box label {
	padding: 20px 0 20px 60px;
	transition: .5s;
	display: block;
	color: var(--brown_d);
	font-size: 18px;
	position: relative;
}
#smMenu .hidden_box label::before, #smMenu .hidden_box label::after {
	content: "";
	position: absolute;
	top: 25px;
	right: 10px;
	width: 3px;
	height: 15px;
	background-color: var(--brown_d);
}
#smMenu .hidden_box label::after {
	transform: rotate(90deg);
}
#smMenu .hidden_box label::before {
	transition: 0.4s;
}
#smMenu .hidden_box input:checked + label::before {
	transform: rotate(90deg);
	transition: 0.3s;
}
#header_main #header_cart #smMenu .hidden_box input {
	display: none;
}
#header_main #header_cart #smMenu .hidden_box .hidden_show {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}
#header_main #header_cart #smMenu .hidden_box .hidden_show li {
	float: left;
}
#header_main #header_cart #smMenu .hidden_box .hidden_show h3 {
	margin-bottom: 5px;
}
#header_main #header_cart #smMenu .hidden_box input:checked + label + .hidden_show {
	padding: 10px 0;
	height: auto;
	opacity: 1;
	border-bottom: 1px var(--brown_l) solid;
}
#header_main #header_cart #smMenu .hidden_show ul {
	padding: 0;
}
#header_main #header_cart #smMenu .hidden_show a {
	padding: 10px 0;
	border: none;
}
#header_main #header_cart #smMenu .hidden_show .half {
	padding: 0;
	margin-bottom: 20px;
	margin-left: -20px;
}
#header_main #header_cart #smMenu .hidden_show .half li {
	width: 177px;
	margin-left: 20px;
	float: left;
	border-bottom: none;
}
#header_main #header_cart #smMenu .hidden_show .half li a:before {
	right: -160px;
}
#header_main #header_cart #smMenu #sm-menu-recom2, #header_main #header_cart #smMenu #sm-menu-search3, #header_main #header_cart #smMenu #sm-menu-search4, #header_main #header_cart #smMenu #sm-menu-search5 {
	border-bottom: 1px var(--brown_l) solid;
}
#header_main #header_cart #smMenu #sm-menu-recom1 {
	background: url(/img/common/sm-nav-icon02.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-recom2 {
	background: url(/img/common/sm-nav-icon09.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-recom3 {
	background: url(/img/common/sm-nav-icon03.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-search1 {
	background: url(/img/common/sm-nav-icon01.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-search2 {
	background: url(/img/common/sm-nav-icon07.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-search3 {
	background: url(/img/common/sm-nav-icon04.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-search4 {
	background: url(/img/common/sm-nav-icon05.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-search5 {
	background: url(/img/common/sm-nav-icon08.png) no-repeat left -10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-customer1 {
	background: url(/img/common/sm-navscroll-guide.png) no-repeat left 10px top 15px;
}
#header_main #header_cart #smMenu #sm-menu-customer2 {
	background: url(/img/common/icon-title_beginner.svg) no-repeat left 15px top 20px;
	background-size: 20px;
}
#header_main #header_cart #smMenu #sm-menu-customer3 {
	background: url(/img/common/sm-navscroll-question.png) no-repeat left 10px top 15px;
}
/* #header_bottom
==============================*/
#header_bottom {
	position: relative;
	width: 480px;
	overflow: hidden;
}
#header_bottom:after {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	width: 40px;
	height: 70px;
	background: linear-gradient(90deg, rgba(255, 255, 255, .0), rgba(255, 255, 255, 1));
}
#header_bottom .scroll {
	overflow-x: scroll;
	display: flex;
	gap: 24px;
	height: 70px;
	margin: 0 10px;
}
.categoryBox {
	display: flex;
	background: var(--beige_l);
	border-radius: 10px;
}
/* 並び替え */
#header_bottom .categoryBox .category-search {
	order: 1;
}
#header_bottom .categoryBox .category-discount {
	order: 2;
}
#header_bottom .categoryBox .category-size {
	order: 3;
}
#header_bottom .categoryBox .category-useful {
	order: 5;
}
#header_bottom .categoryBox .category-mercari {
	order: 4;
}
#header_bottom .categoryBox .category-kansyo {
	order: 6;
}
.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: -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;
}
.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;
}
.order_categoryBox li:first-child a::after {
	display: block;
	content: '';
	width: 130px;
	background: url(/img/icon/header-menu-order-under.png);
	position: absolute;
	left: 10px;
	bottom: 5px;
	height: 3px;
	border-radius: 5px;
	transition: .3s;
}
/* header内のキーワード検索 */
#header_kensaku {
	position: absolute;
	top: 150px;
	width: 480px;
}
#header_main .gKensaku {
	margin: 0 auto;
	width: 460px;
}
#header_main #gForm {
	height: 42px;
	background-color: var(--white);
	border: 3px solid var(--orange_d);
	border-radius: 5px;
	position: relative;
}
#header_main #gFrame {
	background-color: transparent;
	border: none;
	color: var(--brown_d);
	font-size: 22px;
	word-wrap: break-word;
	outline: none;
	display: block;
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	width: 415px;
	height: 37px;
	padding: 5px 0 5px 5px;
}
#header_main #gFrame::placeholder, #smMenu #gFrame4::placeholder {
	color: #868686;
}
#header_main #gKensaku {
	position: absolute;
	top: -2px;
	right: -3px;
	width: 43px;
	height: 41px;
	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;
}
#smMenu #gForm4 {
	width: 382px;
	height: 46px;
	background-color: var(--white);
	border: 2px solid var(--orange_d);
	border-radius: 5px;
	position: relative;
}
#smMenu #gKensaku4 {
	position: absolute;
	top: -2px;
	right: -4px;
	width: 48px;
	height: 46px;
	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;
}
#smMenu #gFrame4 {
	background-color: transparent;
	border: none;
	color: var(--brown_d);
	word-wrap: break-word;
	outline: none;
	display: block;
	height: 42px;
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	width: 335px;
	padding: .3em .3em .3em .7em;
}
/* 検索サジェスト(#suggest)
==============================*/
#suggest div, #suggest2 div {
	position: relative;
	padding: 5px;
	display: block;
	overflow: hidden;
	width: 440px;
	border-bottom: 1px solid var(--gray);
	text-overflow: ellipsis;
}
#suggest, #suggest2 {
	position: absolute;
	background-color: var(--white);
	border-top: 1px solid var(--gray);
	border-left: 1px solid var(--gray);
	border-right: 1px solid var(--gray);
	max-height: 700px;
	width: 450px;
	z-index: 99999;
	box-shadow: 1px 1px 10px #c1c1c1;
	overflow: scroll;
	left: -12px;
}
#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: 15px 0 15px 110px;
}
#suggest div a {
	color: var(--blue_l);
}
.categoryBox li div#suggest2 div a {
	color: var(--blue_l);
	position: relative;
	display: inline;
}
.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: 15px;
	font-weight: bold;
	position: absolute;
	left: 180px;
	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: 38px;
	height: 24px;
	font-size: 15px;
}
.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: 104px;
	font-size: 15px;
}
.item_price {
	float: right;
	font-size: 17px;
	color: var(--red);
	font-weight: bold;
}
.p-name {
	padding: 5px 0 0 0;
	font-size: 120%;
}
/* フッター
====================================================================================================*/
footer {
	margin: 30px 0 0 0;
	width: 480px;
}
/* #footer_contents
==============================*/
#footer_contents {
	margin: 0 auto;
	width: 460px;
}
/* #footer_info
==============================*/
/* アースダンボールの紹介資料(PDF) */
#catalog_info {
	padding: 20px;
	background-color: var(--white);
	border: solid 1px var(--gray);
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
}
#catalog_info dt {
	font-size: 18px;
	font-weight: bold;
	color: var(--brown_d);
	margin-bottom: 10px;
}
#catalog_info dd p:first-child {
	width: 240px;
}
#catalog_info dd p:nth-of-type(2) {
	padding: 10px 60px 10px 10px;
	background: var(--beige_l);
	border-radius: 5px;
	font-size: 14px;
	position: relative;
	margin-top: 10px;
}
#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: 10px;
	right: 0px;
	transform: rotate(15deg);
}
#catalog_info dd img {
	width: 154px;
	height: 110px;
	position: absolute;
	top: 57px;
	right: 20px;
}
/* 営業日カレンダー */
#footer_info .calendar {
	margin-bottom: 10px;
}
#footer_info .calendar p {
	padding: 5px;
	background-color: var(--beige_l);
	color: var(--brown_d);
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
#footer_info .calendar dl {
	margin-bottom: 5px;
}
#footer_info .calendar dt {
	float: left;
	width: 80px;
	padding: 4px 0;
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	background-color: var(--brown_d);
	border-radius: 3px;
	margin-right: 10px;
}
#footer_info .calendar dd {
	display: block;
	padding: 4px 0;
	color: var(--black);
	font-size: 16px;
	margin-bottom: 5px;
}
/* #footer_about
==============================*/
#footer_about dl {
	margin-bottom: 30px;
}
#footer_about dt {
	padding: 5px;
	background-color: var(--beige_l);
	margin-bottom: 10px;
}
#footer_about dt a {
	color: var(--brown_d);
	font-size: 20px;
	font-weight: bold;
}
#footer_about dd {
	line-height: 1.5;
}
#footer_about dd .red {
	font-weight: bold;
}
#footer_about dd a {
	color: var(--blue_l);
}
#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: 16px;
	font-weight: bold;
	background-color: var(--brown_d);
	border-radius: 3px;
	margin-bottom: 5px;
}
#footer_about dl:nth-of-type(3) dl dd + dt {
	margin-top: 10px;
}
#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: 140px;
	height: 70px;
}
/* #footer_contact
==============================*/
#footer_contact {
	display: flex;
	flex-wrap: wrap;
}
#footer_contact li {
	width: 460px;
	padding: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: var(--beige_d);
	border-radius: 10px;
	margin-bottom: 30px;
}
#footer_contact li p:first-child {
	padding: 1px 0 2px 40px;
	font-size: 18px;
	color: var(--brown_d);
}
#footer_contact li:nth-of-type(1) p:first-child {
	background: url(/img/icon/title-tel.svg) no-repeat 0px 2px / 30px 30px;
}
#footer_contact li:nth-of-type(2) p:first-child {
	background: url(/img/icon/title-fax.svg) no-repeat 0px 2px / 30px 30px;
}
#footer_contact li:nth-of-type(3) p:first-child {
	background: url(/img/icon/title-mail.svg) no-repeat 0px 2px / 30px 30px;
}
#footer_contact li p:first-child span {
	font-size: 20px;
	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;
	margin: 20px 0;
}
#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-bottom: 30px;
	background-color: var(--beige_l);
}
#footer_sitemap * {
	color: var(--brown_d);
}
#footer_sitemap .sitemap_title {
	display: block;
	width: 460px;
	padding: 15px;
	margin: 0 auto;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	border-top: 1px solid var(--brown_d);
}
#footer_sitemap > ul li:first-child ul {
	display: flex;
	flex-wrap: wrap;
}
#footer_sitemap > ul li:first-child ul li {
	width: 230px;
}
#footer_sitemap > ul li:first-child ul .sitemap_title {
	width: 460px;
	border: none;
}
#footer_sitemap > ul li:first-child ul .footer_open {
	width: 480px;
}
#footer_sitemap > ul li:last-child ul:last-child .sitemap_title {
	border-bottom: 1px solid var(--brown_d);
}
#footer_sitemap .sitemap_title.footer_open {
	width: 480px;
	padding: 15px 25px;
	color: var(--white);
	background: var(--brown_d);
}
#footer_sitemap .sitemap_title::before, #footer_sitemap .sitemap_title::after {
	content: "";
	width: 15px;
	height: 3px;
	background-color: var(--brown_d);
	position: absolute;
	top: 48%;
	right: 20px;
}
#footer_sitemap .footer_close::after {
	transform: rotate(90deg);
}
#footer_sitemap .footer_open::before, #footer_sitemap .footer_open::after {
	background-color: var(--white);
	right: 30px;
}
#footer_sitemap .sitemap_title ~ li {
	height: 0;
	overflow: hidden;
	transition: all 0.5s;
}
#footer_sitemap .footer_open ~ li {
	height: 50px;
}
#footer_sitemap > ul a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 0 0 25px;
}
/* #footer_other */
#footer_other {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}
#footer_other > div {
	display: inline-block;
}
#footer_other > div > span {
	font-size: 18px;
	font-weight: bold;
}
#footer_other > div a {
	color: var(--brown_d);
}
#footer_other ul {
	margin-top: 10px;
}
#footer_other .sns {
	display: flex;
	justify-content: center;
	gap: 15px;
}
#footer_other .sns li {
	width: 40px;
	height: 40px;
}
/* #footer_bottom
==============================*/
#footer_bottom {
	padding: 30px 10px 150px;
	text-align: center;
	background-color: var(--brown_d);
}
#footer_bottom * {
	color: var(--white);
}
#footer_bottom ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
#footer_bottom li {
	padding-right: 10px;
	border-right: solid 1px var(--white);
}
#footer_bottom li:last-child {
	padding: 0;
	border: none;
}
/* #footer_short
==============================*/
#footer_short #footer_other {
	margin: 0 0 30px 0;
	color: var(--brown_d);
}
/* サイドナビ
====================================================================================================*/
#smsidenavi {
	position: fixed;
	z-index: 20;
}
#smsidenavi ul {
	padding: 10px 0 15px;
	width: 480px;
	position: fixed;
	bottom: 0;
	background: var(--white);
	box-shadow: 0 0 6px #999999;
	z-index: 20;
}
#smsidenavi li {
	position: relative;
	float: left;
	width: 95px;
	text-align: center;
	border-left: solid 1px var(--brown_l);
	padding: 25px 5px 0px 5px;
}
#smsidenavi li:first-child {
	border: none;
}
#smsidenavi li a {
	font-size: 13px;
	color: var(--brown_d);
}
#smsidenavi li img {
	position: absolute;
	left: 31px;
	top: -5px;
}
.page_top {
	position: fixed;
	bottom: 85px;
	right: 15px;
}
.page_top a {
	display: block;
	margin: auto;
	width: 70px;
	height: 70px;
	background-color: var(--brown_l);
	border-radius: 60px;
}
.page_top span {
	position: relative;
	display: block;
	padding-top: 100%;
	height: 0;
	overflow: hidden;
}
#smsidenavi .page_top span:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 32px;
	height: 32px;
	background-image: url(/img/common/icon-arrow_white.svg);
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: contain;
	transform: translate(0, 0) rotate(-90deg);
	transition: .5s;
}