/* CSS Document */
strong{
    font-weight: bold;
}

@media(min-width:768px){
	.mobile{
		display: none !important;
	}
}
@media(max-width:767.99px){
	.desktop{
		display: none !important;
	}
}
/*ハンバーガーメニュー*/
@media(min-width:768px){
	.openbtn1{
		display: none !important;
	}
}
@media(max-width:767.99px){
	.openbtn1{
		background-color:transparent;
		cursor: pointer;
		width: 50px;
		height:50px;
		transform: scale(0.88) !important;
	}
	.openbtn1 span{
		display: inline-block;
		transition: all .4s;/*アニメーションの設定*/
		position: absolute;
		left: 14px;
		height: 3px;
		background:var(--red-color);
		width: 45%;
	  }

	.openbtn1 span:nth-of-type(1) {
		top:15px;	
	}

	.openbtn1 span:nth-of-type(2) {
		top:23px;
	}

	.openbtn1 span:nth-of-type(3) {
		top:31px;
	}

	/*activeクラスが付与されると線が回転して×に*/

	.openbtn1.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}

	.openbtn1.active span:nth-of-type(2) {
		opacity: 0;/*真ん中の線は透過*/
	}

	.openbtn1.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}

}

/** input/スピンボタンのラップ要素 **/
.number-spinner-wrap{
    position: relative;
    display: flex;
    width: calc(100%);
	margin: auto;
    height: 37px;
}
/** デフォルトのスピンボタンを隠す **/
.number-spinner-wrap input::-webkit-outer-spin-button,
.number-spinner-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/** input要素 **/
.number-spinner-wrap input{
  width: 44px; 
  height: 39px;
  text-align: center;
  padding-left:44px;
  padding-right: 44px;
  font-size:16px;
  margin:auto;
}
/** スピンボタン要素 **/
.number-spinner-wrap .spinner{
  position: absolute;
  top:0;
  width: 37px;
  height: 37px;
  line-height: 37px;
  font-size: 16px;
  text-align: center;
  background: var(--darkgray-color);
  cursor: pointer;
  user-select: none;
  color:#fff;
}
.spinner:hover{
  background: var(--gray-color);
}
/** 減算のスピンボタン要素 **/
.number-spinner-wrap .spinner-down{
  left:0;
}
/** 加算のスピンボタン要素 **/
.number-spinner-wrap .spinner-up{
  right: 0;
}
/*買取リスト*/
@media(min-width:768px){
	table.list{
		width:var(--min-width);
		margin:auto;
        border-bottom:1px solid #efefef;
	}
	table.list td{
		padding:10px;
		font-size:22px;
	}
	td.product{
		font-weight: bold;
		/*color:var(--red-color);*/
		font-size:15px;
	}
	td.price{
		font-size:22px;
		color:var(--red-color);
		font-weight: bold;
		text-align: right;
		width:200px;
	}
	table tr{
		margin-bottom:115px;
	}
	table tr:nth-child(4n+1), table tr:nth-child(4n+2) {
		background: #e6e6e6;
		background: #efefef;
	}
	dl.cart{
		margin:10px;
	}
	dl.cart ::placeholder{
		color:red;
	}
	dl.cart :focus::placeholder{
		color:transparent;
	}
}@media(max-width:767.99px){
	table.list{
		width:calc(100%);
        border-bottom: 1px solid #efefef;
	}
	table.list td{
		padding:8px 5px;
	}
	td.product{
		font-weight: bold;
		/*color:var(--red-color);*/
		font-size:15px;
	}
	td.price{
		font-size:17px;
		color:var(--red-color);
		font-weight: bold;
		text-align: right;
	}
	table tr{
		margin-bottom:115px;
	}
	table tr:nth-child(4n+1), table tr:nth-child(4n+2) {
		background: #e6e6e6;
	}
	dl.cart{
		margin:10px;
	}
	dl.cart ::placeholder{
		color:red;
	}
	dl.cart :focus::placeholder{
		color:transparent;
	}
}
/*ナビ*/
@media(min-width:768px){
	nav{
		width:100%;
		position: fixed;
		top:140px;/*h1を表示する場合*/
		top:100px;
		min-width:var(--min-width);
		background:var(--red-color);
		background:var(--gray-color);
		z-index: 3;
	}
	ul.nav{	
		width:var(--min-width);
		margin:auto;
		/*border-top:1px solid #ccc;
		border-bottom:1px solid #ccc;*/
		display: flex;
		justify-content: space-between;
		gap:10px;
	}
	ul.nav li a{
		display: block;
		color:#fff;
		line-height: 40px;
		text-align: center;
		width:cacl(100% / 6);
		position: relative;
		color:#fff;
	}
	ul.nav li a::after{
		content: "";
		width:0%;
		height: 2px;
		background:#fff;
		position: absolute;
		margin:auto;
		left:0;
		right:0;
		bottom:5px;
		transition:all 0.25s;
	}
	ul.nav li a:hover::after,
	ul.nav li.active a::after{
		content: "";
		width:100%;
		height: 2px;
		background:#fff;
		position: absolute;
		margin:auto;
		left:0;
		right:0;
		bottom:5px;
		transition:all 0.25s;
	}
	ul.nav li.block{
		display: none;
	}
	ul.nav li.close{
		display: none;
	}
}
@media(max-width:767.99px){
	ul.nav{	
		position: fixed;
		top:102px;
		width:100%;
		background:#fff;
		border-top:1px solid #ccc;
		border-bottom:1px solid #ccc;
		display: none;
		z-index: 2;
		box-shadow: 0 3px 9px rgba(0,0,0,0.35);
	}
	ul.nav li a{
		display: block;
	}
	ul.nav li.block a{
		width:80%;
		background:var(--red-color);
		height: 40px;
		line-height: 40px;
		text-align: center;
		margin:10px auto;
		color:#fff;
		border-radius: 4px;
	}
	ul.nav li.block.register a{
		background:var(--orange-color);
	}
	ul.nav li.block.login a{
		background:var(--blue-color);
	}
	ul.nav li.block.mypage a{
		background:var(--red-color);
	}
	ul.nav li:not(.block) a{
		line-height: 40px;
		border-bottom:1px solid #ccc;
		text-align: center;
	}
	ul.nav li.close a{
		border-top:1px solid #ccc;
		border-bottom:none;
		background:#efefef;
	}
}
@media(min-width:768px){
	div.slides{

	}
	div.topCatch2{
		margin:calc(var(--header-height) + 20px) auto 0;
		box-sizing: border-box;
		border-radius: 12px;
		overflow: hidden;
		padding:30px;
		background-color:#EFEAE5;
		background-repeat: no-repeat;
		box-shadow: 3px 3px 9px rgba(0,0,0,0.35) inset;
		width:var(--min-width);
		position: relative;
		color:#fff;
		background-image:url("../img/topcatch-80.jpg");
		background-size:cover;
		background-position: center center;
	}
	div.topCatch2 p.catch{
		font-size:24px;
		text-align: center;
		margin-bottom:25px;
	}
	div.topCatch2 h3.topCatch{
		text-align: center;
		color:#fff;
		font-size:24px;
		border-radius: 3em;
		position: relative;
	}
	h3.topCatch::before{
		content: "";
		width:35%;
		height: 2px;
		background:#fff;
		position: absolute;
		left:0;
		top:0;
		bottom:0;
		margin:auto;
	}
	h3.topCatch::after{
		content: "";
		width:35%;
		height: 2px;
		background:#fff;
		position: absolute;
		right:0;
		top:0;
		bottom:0;
		margin:auto;
	}
	div.meritWrapper{
		display: flex;
		justify-content: space-between;
		gap:30px;
		margin:30px auto 0;
	}
	div.merit{
		box-sizing: border-box;
		padding:15px 25px;
		border:3px solid #fff;
		width:calc(33% - 15px);
		position: relative;
		border-radius: 12px;
	}
	div.merit h3.merit{
		width:45px;
		height: 45px;
		border-radius: 45px;
		text-align: center;
		line-height: 48px;
		background:var(--red-color);
		font-size:24px;
		font-weight: bold;
		border:3px solid #fff;
		position: absolute;
		left:-22.5px;
		top:-22.5px;
	}
	div.merit p{
		font-size:20px;
		text-align: justify;
	}
	div.merit p.small{
		font-size:14px;
		margin-top:15px;
		padding-left:1em;
		text-indent: -1em;
	}
	div.entry{
		margin:20px auto 0;
		display: flex;
		justify-content: center;
		gap:50px;
	}
	div.entry a{
		width:280px;
		height: 50px;
		line-height: 50px;
		display: block;
		border-radius: 8px;
		text-align: center;
		font-size:20px;
		font-weight: bold;
		color:var(--red-color);
        border:3px solid var(--red-color);
		box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
        background-color:#fff;
        background-position: left 25px center;
        background-repeat: no-repeat;
        background-size:20px;
	}
	div.entry a.entryFlow{
        background-image:url("../img/icon_flow.svg");
	}
	div.entry a.entryFlow:hover{
        background-color:#eee;
	}
	div.entry a.entryRegister{
        background-image:url("../img/icon_entry.svg");
	}
	div.entry a.entryRegister:hover{
		background-color:#eee;
	}
}
@media(max-width:767.99px){
	/*div.topCatch2{
		margin:calc(var(--header-height) + 0px) 10px 0;
		box-sizing: border-box;
		border-radius: 12px;
		overflow: hidden;
		padding:10px;
		background-color:#EFEAE5;
		background-repeat: no-repeat;
		box-shadow: 3px 3px 9px rgba(0,0,0,0.35) inset;
		
		position: relative;
		color:#fff;
		background-image:url("../img/topcatch-80.jpg");
		background-size:cover;
		background-position: center center;
	}*/
	div.topCatch2{
		box-sizing: border-box;
		border-radius: 12px;
		overflow: hidden;
		padding:10px;
		margin-top:40px;
		background-repeat: no-repeat;
		
		
		position: relative;

	}
	div.topCatch2 p.catch{
		font-size:18px;
		text-align: center;
		margin-bottom:10px;
		display: none;
	}
	div.topCatch2 h3.topCatch{
		text-align: center;
		color:#fff;
		font-size:16px;
		border-radius: 3em;
		position: relative;
	}
	h3.topCatch::before{
		content: "";
		width:24%;
		height: 2px;
		background:#fff;
		position: absolute;
		left:0;
		top:0;
		bottom:0;
		margin:auto;
	}
	h3.topCatch::after{
		content: "";
		width:24%;
		height: 2px;
		background:#fff;
		position: absolute;
		right:0;
		top:0;
		bottom:0;
		margin:auto;
	}
	div.meritWrapper{
		display: flex;
		justify-content: space-between;
		gap:30px;
		margin:30px 10px 0;
		flex-direction: column;
	}
	div.merit{
		box-sizing: border-box;
		padding:10px 25px;
		border:3px solid #fff;
		width:calc(100% - 20px);
		position: relative;
		border-radius: 12px;
		margin:auto;
		
		display: none;
	}
	div.merit h3.merit{
		width:30px;
		height: 30px;
		border-radius: 45px;
		text-align: center;
		line-height: 30px;
		background:var(--red-color);
		font-size:18px;
		font-weight: bold;
		border:3px solid #fff;
		position: absolute;
		left:-15px;
		top:-15px;
	}
	div.merit p{
		font-size:16px;
		text-align: justify;
	}
	div.merit p.small{
		font-size:12px;
		margin-top:10px;
		padding-left:1em;
		text-indent: -1em;
	}
	div.entry{
		margin:20px auto 0;
		display: flex;
		justify-content: center;
        /*flex-direction: column;*/
        align-items: center;
		gap:10px;
	}
	div.entry a{
		width:calc(50% - 10px);
		height: 45px;
		line-height: 45px;
		display: block;
		border-radius: 8px;
		text-align: left;
		font-size:3.8vw;
		font-weight: bold;
		padding-left:40px;
		color:var(--red-color);;
		box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
        border:3px solid var(--red-color);
        /*border:3px solid #fff;*/
        background-color:#fff;
        background-repeat: no-repeat;
        background-position: left 10px center;
        background-size:20px;
	}
	div.entry a.entryFlow{
		/*background-color:#fff*/
        background-image:url("../img/icon_flow.svg");
        
	}
	/*div.entry a.entryFlow:hover{
		background-color:#e9de00
	}*/
	div.entry a.entryRegister{
		/*background-color:#0ede00;*/
        background-image:url("../img/icon_entry.svg");
	}
	/*div.entry a.entryRegister:hover{
		background-color:#0085de;
	}*/
}
h2{
	background:var(--gray-color);
	line-height: 40px;
	color:#fff;
	text-indent: 20px;
	margin-bottom:10px;
	font-weight: bold;
	font-size:20px;
}
h2.marginTop{
	margin-top:102px;
}
@media(min-width:768px){
    h2.marginTop{
        font-size:24px;
    }
}

@media(min-width:768px){
	h2{
		background:#fff;
		border-top:2px solid var(--gray-color);
		border-bottom:2px solid var(--gray-color);
		line-height: 60px;
		color:var(--red-color);
		color:#333;
		text-indent: 20px;
		margin-bottom:10px;
		font-weight: bold;
		font-size:20px;
	}
	h2.topnews{
		background:var(--gray-color);
		/*background:#fff;*/
		border-top:2px solid var(--gray-color);
		border-bottom:2px solid var(--gray-color);
		line-height: 60px;
		color:#fff;
		/*color:var(--red-color);*/
		text-indent: 20px;
		margin-bottom:10px;
		font-weight: bold;
		font-size:20px;
	}
	h2.marginTop span{
		display: block;
		width:var(--min-width);
		margin:auto;
	}
	h2.marginTop{
		margin-top:200px;
	}
}
td.open,
td.cart{
	text-align: center;
}
td.open{
	width:80px;
}
td.cart{
	width:100px;
	text-align: right;
	position: relative;
}
@media(min-width:768px){
	a.cart{
		background:#fff;
		font-size:16px;
		padding:5px 20px;
		border-radius: 4px;
        border:2px solid var(--darkgray-color);
		color:#333;
	}
}
@media(max-width:767.99px){
	a.cart{
		background:#fff;
		font-size:13px;
		padding:5px 20px;
		border-radius: 4px;
		color:#333;
        border:2px solid var(--darkgray-color);
	}
}
a.cart:hover{
	background:var(--red-color);
    color:#fff;
    border:2px solid var(--red-color);
}
span.noopen{
	/*background:skyblue;*/
	font-size:14px;
	padding:2px 5px;
	border-radius: 4px;
    background:var(--darkgray-color);
    color:#fff;

}
span.open{
	/*background:gray;*/
	font-size:14px;
	padding:2px 5px;
	border-radius: 4px;
    background:var(--lightgray-color);
    color:#000;
}
div.option{
	display: none;
	position: absolute;
	width:180px;
	background:#fff;
	border:4px solid var(--red-color);
	right:5px;
	top:40px;
	border-radius: 4px;
	box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
	z-index: 100;
	text-align: left;
}
div.option.active{
	display: block;
}
div.option h3{
	background: var(--red-color);
	text-align: center;
	color:#fff;
	font-weight: bold;
	padding:5px 0;
	font-size:14px;
}
div.inner{
	margin:10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.option input.col{
	display: none;
}
div.option input[type=radio] + label{
	width:calc(50% - 10px);
	text-align: center;
	border:1px solid #333;
	margin-bottom:10px;
	padding:3px;
	border-radius: 4px;
	background:#fff;
	color:#000;
	font-size:16px;
	cursor: pointer;
}
div.option input[type=radio]:checked + label{
	background:var(--red-color);
	color:#fff;
}
div.option2{
	display: none;
	position: absolute;
	width:calc(320px - 10px);
    box-sizing: border-box;
	background:#fff;
	border:4px solid var(--red-color);
	right:5px;
	top:40px;
	border-radius: 4px;
	box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
	z-index: 100;
	text-align: left;
}
div.option2.active{
	display: block;
}
div.option2 div.optionFlex{
    overflow: hidden;
}
div.option2 h3{
	background: var(--red-color);
	text-align: center;
	color:#fff;
	font-weight: bold;
	padding:5px 0;
	font-size:14px;
}
div.option2 > div.left,
div.option2 > div.right{
    width:50%;
}
div.option2 > div.left{
    float: left;
}
div.option2 > div.right{
    float: right;
}
div.option2 div.inner{
	margin:10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.option2 input.col{
	display: none;
}
div.option2 input[type=radio] + label{
	width:calc(50% - 10px);
	text-align: center;
	border:1px solid #333;
	margin-bottom:10px;
	padding:3px;
	border-radius: 4px;
	background:#fff;
	color:#000;
	font-size:16px;
	cursor: pointer;
}
div.option2 input[type=radio]:checked + label{
	background:var(--red-color);
	color:#fff;
}
div.submit{
	margin:20px 0 10px;
	display: flex;
	flex-direction: column;
	gap:10px;
	clear: both;
}
div.submit2{
	margin:10px;
	display: flex;
	gap:10px;
	clear: both;
}
div.wide div.submit{
	width:50%;
	margin:50px auto;
	clear: both;
}
div.submit.side{
	flex-direction: row;
	justify-content: space-between;
}
div.submit input,
div.submit2 input{
	border-radius: 4px;
	height: 44px;
	width:100%;
	font-size:16px;
}
td.cart input{
	width:calc(100% - 20px) !important;
	margin:auto;
	
}
div.submit input[type=button],
div.submit2 input[type=button]{
	background:var(--lightgray-color);
}
div.submit input[type=button]:hover,
div.submit2 input[type=button]:hover{
	background:var(--darkgray-color);
	color:#fff;
	cursor: pointer;
}
div.submit input[type=submit],
div.submit2 input[type=submit]{
	background:var(--submit-color);
	color:#fff;
	cursor: pointer;
}
div.submit input[type=submit]:hover,
div.submit2 input[type=submit]:hover{
	background:var(--orange-color);
}
td.cart div.submit input[type=submit]{
    border:2px solid #333;
    background:#fff;
    color:#333;
}
td.cart div.submit input[type=submit]:hover{
    border:2px solid #333;
    background:var(--red-color);
    color:#fff;
}
td.cart div.submit input[type=button]{
    border:2px solid #333;
    background:#ccc;
    color:#333;
}
td.cart div.submit input[type=button]:hover{
    border:2px solid #333;
    background:#aaa;
    color:#fff;
}
p.price{
	font-size:20px;
	color:var(--red-color);
	font-weight: bold;
	margin:20px;
	text-align: right;
}
table.cart{
	width:100%;
	table-layout: fixed;
}
table.cart td{
	padding:5px;
}
table.cart td.title{
	width:calc(40% - 10px);
	color:red;
	font-weight: bold;
}
table.cart td.num{
	width:calc(30px);
}
td.num input{
	text-align: center;
}
table.cart td.price2,
table.cart td.subtotal{
	width:calc((50% - 30px) / 2);
}
td.price2 input,
td.subtotal input{
	text-align: right;
}
table.cart input{
	border:1px solid #333;
	width:100%;
	background:#fff;
}
/*ヘッダー*/
@media(min-width:768px){
	header{
		position: fixed;
		top:0;
		left:0;
		width:100%;
		min-width: var(--min-width);
		z-index: 3;
		background:#fff;
	}
	header h1{
		/*text-align: center;
		height: 40px;
		line-height: 40px;
		color:#fff;
		font-size:18px;
		background-image: radial-gradient(circle at top right, rgb(145, 8, 41) 0%, rgb(145, 8, 41) 22%,rgb(156, 9, 37) 22%, rgb(156, 9, 37) 38%,rgb(167, 9, 34) 38%, rgb(167, 9, 34) 39%,rgb(178, 10, 30) 39%, rgb(178, 10, 30) 43%,rgb(188, 10, 26) 43%, rgb(188, 10, 26) 64%,rgb(199, 11, 22) 64%, rgb(199, 11, 22) 96%,rgb(210, 11, 19) 96%, rgb(210, 11, 19) 99%,rgb(221, 12, 15) 99%, rgb(221, 12, 15) 100%);*/
	}
	div.headerWrapper{
		width:var(--min-width);
		margin:auto;
		padding:0 10px;
		height: 100px;
		display: flex;
		justify-content: space-between;
		background:#fff;
		z-index: 100;
		align-items: center;
		position: relative;
	}
	div.headerLeft{
		display: flex;
		justify-content: center;
		flex-direction: column;
		gap:10px;
	}
	div.headerLeft > p{
		font-size:13px;
		position: absolute;
		right: 90px;
		top:13px;
		width:158px;
		text-align: center;
		background:#15C90E;
		padding:3px;
		border-radius: 4px;
		color:#fff;
	}
	div.headerLeft > p a{
		color:#fff;
	}
	div.headerLeft > p a:hover{
		color:#000
	}
	header ul.contact{
		width:158px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-left:auto;
		margin-right:auto;
		position: absolute;
		right:90px;
		margin-top:32px;
	}
	header ul.contact img{
		width:43px;
		cursor: pointer;
	}
	header ul.contact img:hover{
		opacity: 0.7;
	}
	header ul.menu{
		width:50px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	header h1{
		width:147px;
		position: absolute;
		bottom:0px;
		left:20px;
		margin:auto;
	}
	header h1 img{
		width:100%;
	}
	header ul img{
		width:43px;
	}
	div.branchWrapper{
		position: absolute;
		width:500px;
		top:30px;
		left:210px;
		display: flex;
		gap:5px;
		justify-content: space-between;
	}
	div.branch{
		font-size:14px;
		text-align: center;
		/*border:1px solid #ccc;
		padding:10px;*/
		border-radius: 4px;
	}
	div.branch p.branch{
		border-bottom:1px solid var(--red-color);
	}
}
@media(max-width:767.99px){
	header{
		position: fixed;
		top:0;
		left:0;
		width:100%;
		z-index: 3;
        box-shadow: 0px 3px 9px rgba(0,0,0,0.35);
	}
	header h1{
		/*text-align: center;
		height: 22px;
		line-height: 22px;
		color:#fff;
		font-size:13px;
		background-image: radial-gradient(circle at top right, rgb(145, 8, 41) 0%, rgb(145, 8, 41) 22%,rgb(156, 9, 37) 22%, rgb(156, 9, 37) 38%,rgb(167, 9, 34) 38%, rgb(167, 9, 34) 39%,rgb(178, 10, 30) 39%, rgb(178, 10, 30) 43%,rgb(188, 10, 26) 43%, rgb(188, 10, 26) 64%,rgb(199, 11, 22) 64%, rgb(199, 11, 22) 96%,rgb(210, 11, 19) 96%, rgb(210, 11, 19) 99%,rgb(221, 12, 15) 99%, rgb(221, 12, 15) 100%);*/
	}
	div.headerWrapper{
		padding:0 10px;
		height: 80px;
		display: flex;
		justify-content: space-between;
		background:#fff;
		z-index: 100;
		width:calc(100% - 20px);
		align-items: center;
		position: relative;
	}
	div.headerLeft{
		display: flex;
		justify-content: center;
		flex-direction: column;
		gap:10px;
	}
	div.headerLeft p{
		font-size:13px;
	}
	header ul.contact{
		width:110px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		/*margin-left:auto;
		margin-right:auto;*/
	}
	header ul.menu{
		width:80px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	header h1{
		width:100px;
		position: absolute;
		bottom:5px;
		left:0;
		right:0;
		margin:auto;
	}
	header h1 img{
		width:100%;
	}
	header ul img{
		width:30px;
	}
	header ul.contact img{
		width:33px;
	}
	div.branchWrapper{
		display: none;
	}
}
#header.dev{
	background-color:lightyellow !important;
}
#header.dev div.headerWrapper{	
	background:none;
}
/*ニュース*/
@media(min-width:768px){
	div.newsWrapper{
		background:var(--gray-color);
		padding:10px;
		margin-top:10px;
		width:var(--min-width);
		box-sizing: border-box;
		margin:20px auto;
		border-radius: 12px;
	}
	div.newsWrapper h2.title{
		font-size:20px;
		color:#fff;
		font-weight: bold;
		margin-bottom:7px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	 h2.title span:last-child img{
		width:25px;
		height: auto;
		padding-right: 10px;
		padding-top:15px;
	}
}
@media(max-width:768px){
	div.newsWrapper{
		background:var(--gray-color);;
		padding:10px;
		margin-top:10px;
	}
	div.newsWrapper h2.title{
		font-size:20px;
		color:#fff;
		font-weight: bold;
		margin-bottom:7px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	 h2.title span:last-child img{
		width:25px;
		height: auto;
		padding-right: 10px;
		padding-top:5px;
	}
}
div.news{
	background:#fff;
	padding:10px;
	border-radius: 4px;
	font-size:14px;
}
@media(min-width:768px){
	h2.title2{
		margin:10px auto;
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		width:var(--min-width);
		border-radius: 4px;
	}
	h2.title2 span:last-child{
		font-size:13px;
		padding-right: 10px;
	}
	ul.category{
		white-space: nowrap;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap:10px;
		margin:0 auto 10px;
		border:2px solid var(--red-color);
		padding:10px;
		border-radius: 4px;
		width:var(--min-width);
		box-sizing: border-box;
	}
	ul.category li{
		background:#efefef;
		border-radius: 4px;
		padding:3px 10px;
		font-size:16px;
        border:2px solid transparent;
	}
	ul.category li a{
		display: block;
		width:100%;
		height: 100%;
	}
	ul.category li:hover,
	ul.category li.active{
		color:#fff;
		background:var(--red-color);
        border:2px solid var(--red-color);
	}
	ul.category li.active a,
	ul.category li:hover a{
		color:#fff;
	}
}
@media(max-width:767.99px){
	h2.title2{
		margin-top:10px;
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	h2.title2 span:last-child{
		font-size:13px;
		padding-right: 10px;
	}
	ul.category{
		white-space: nowrap;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap:10px;
		margin:0 10px 10px;
		border:2px solid var(--red-color);
		padding:10px;
		border-radius: 4px;
	}
	ul.category li{
		background:#efefef;
		border-radius: 4px;
		padding:3px 10px;
		font-size:14px;
	}
	ul.category li.active{
		background:var(--red-color);
        color:#fff;
	}
	ul.category li.active a,
	ul.category li:hover a{
		color:#fff;
	}
}

input[type=text],
input[type=tel],
input[type=password],
input[type=email],
select{
	border:1px solid var(--darkgray-color);
	border-radius: 4px;
	box-sizing: border-box;
	padding:0px 10px;
	width:100%;
	font-size:16px;
	height: 44px;
}
select{
	background-image:url("../img/icon_select.svg");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size:10px;
}
input.invoice+label{
	min-width:18em !important;
}
select.year{
	width:5em;
}
select.month{
	width:3em;
}
select.day{
	width:3em;
}
input[type=radio]{
	width:15px;
	height: 15px;
	border:1px solid #333;
	border-radius: 15px;
}
input[type=radio]:checked{
	background:#333;
}
@media(min-width:768px){
	dl.cart{
		margin-left:100px;
		margin-right: 100px;
		overflow: hidden;
	}
	dl.cart dt{
		font-weight: bold;
		padding-top:10px;
		/*width:200px;*/
		float: left;
		clear: both;
	}
	dl.cart.confirm dt{
		border-top:1px solid #ccc;
		font-weight: normal
	}
	dl.cart.confirm dd{
		font-weight: bold;
		margin:0;
		padding:10px;
		border-top:1px solid #ccc;
	}
	dl.cart dt.must::after{
		content: "★";
		color:var(--red-color);
		padding-left:5px;
	}
	dl.cart dd{
		margin:10px 0 10px 30px;
		display: flex;
		justify-content: flex-start;
		gap:10px;
		flex-wrap: wrap;
		align-items: center;
		width:calc(100% - 235px);
		float: right;
	}
    dl.cart dd.nogap{
        gap:0;
    }
    dl.cart dd.nogap label{
        margin-bottom:10px;
    }
	dl.cart dd div{
		display: flex;
		justify-content: flex-start;
		gap:10px;
		align-items: center;
	}
	dl.cart dd label{
		cursor: pointer;
	}
	dl.cart select{
		border:1px solid #333;
		padding:3px 10px;
	}
	dl.cart input[type=email]{
		width:100%;
	}
	dl.cart img{
		width:120px;
		height: auto;
	}
	
}
@media(max-width:767.99px){
	dl.cart dt{
		font-weight: bold;
		padding-top:10px;
	}
	dl.cart.confirm dt{
		border-top:1px solid #ccc;
		font-weight: normal
	}
	dl.cart.confirm dd{
		font-weight: bold
	}
	dl.cart dt.must::after{
		content: "★";
		color:var(--red-color);
		padding-left:5px;
	}
	dl.cart dd{
		margin:10px 0 10px 10px;
		display: flex;
		justify-content: flex-start;
		gap:10px;
		flex-wrap: wrap;
		align-items: center;
    }
    dl.cart dd.nogap{
        gap:0;
    }
    dl.cart dd.nogap label{
        margin-bottom:10px !important;
    }
	dl.cart dd div{
		display: flex;
		justify-content: flex-start;
		gap:10px;
		align-items: center;
	}
	dl.cart dd label{
		cursor: pointer;
	}
	dl.cart select{
		border:1px solid #333;
		padding:3px 10px;
	}
	dl.cart input[type=email]{
		width:100%;
	}
	dl.cart img{
		width:120px;
		height: auto;
	}
}
dl.transaction,
dl.store,
dl.time,
dl.kyc,
dl.residence1,
dl.residence2,
dl.pay1,
dl.pay2,
dl.bank1,
dl.bank2,
dl.send{
	display: none;
}
div.cartWrapper{
	margin:10px;
}
@media(min-width:768px){
	div.cartWrapper.wide{
		width:var(--min-width);
		margin:80px auto;
	}
	div.cartWrapper.wide2{
		width:480px;
		margin:80px auto;
	}
}
div.cart:first-child{
	border-top:1px solid #ccc;
}
div.cart{
	overflow: hidden;
	border-bottom:1px solid #ccc;
	padding-bottom:10px;
	padding-top:10px;
	margin-bottom:10px;
}
div.cart div.left1{
	width:calc(100% - 120px);
	float: left;
}
div.cart div.left1 p.product{
	color:#000;
	font-size:16px;
	font-weight: bold;
}
div.cart div.right1{
	width:110px;
	float: right;
	display: flex;
	justify-content: flex-end;
	gap:10px;
}
div.cart div.right1 p.condition{
	box-sizing: border-box;
	width:54px;
	height: 24px;
	line-height: 24px;
	font-size:12px;
	color:#fff;
	text-align: center;
	border-radius: 4px;
}
div.right1 p.condition.noopen{
	background-color:var(--darkgray-color);
}
div.right1 p.condition.open{
	background-color:var(--lightgray-color);
    color:#000 !important;
}
div.right1 p.color {
    width: 50px;
    height: 24px;
    box-sizing: border-box;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    font-size: 12px;
    border-left-width: 10px;
    border-right-width: 10px;
}
div.left2{
	width:calc(100% - 150px);
	clear: both;
	float: left;
	display: flex;
	gap:10px;
	margin-top:10px;
	flex-wrap: wrap;
	padding-top:18px;
	align-items: baseline;
}
div.right2{
	width:130px;
	float: right;
	margin-top:10px;
}
div.left2 div.number{
	width:132px;
	border:1px solid #999;
	border-radius: 4px;
	box-sizing: border-box;
	position: relative;
}
div.left2 div.number::before{
	content: "数量";
	position: absolute;
	margin:auto;
	left:0;
	right:0;
	top:-24px;
	text-align: center;
	font-weight: bold;
	color:#666;
}
div.left2 div.unit{
	/*width:clamp(100px,142px,calc(100% - 162px));*/
	width:100%;
	min-width:100px;
	max-width:132px;
	box-sizing: border-box;
	padding-top:20px;
	position: relative;
}
div.left2 div.unit::before{
	content:"単価";
	position: absolute;
	margin:auto;
	left:0;
	right:0;
	top:-3px;
	text-align: right;
	padding-right: 10px;
	font-weight: bold;
	color:#666;
}
div.left2 div.unit input{
	box-sizing:border-box;
	width:100%;
	border:1px solid #999;
	border-radius: 4px;
	text-align: right;
	padding:0 10px;
	font-size:16px;
	height: 39px;
}
div.right2 p.total{
	color:var(--red-color);
	font-size:20px;
	font-weight: bold;
	text-align: right;
	position: relative;
	line-height: 36px
}
div.right2 p.total::before{
	content:"金額";
	font-size:14px;
	color:#666;
	text-align: right;
	padding-right: 10px;
}
div.right2 p.total span{
	font-size:12px;
	color:#333;
}

table.preview strong{
	font-weight: bold;
}
table.preview{
	width:100%;
}
table.preview td{
	padding:10px;
}
table.preview input[type=number]{
	width:2em;
	border:1px solid #333;
	text-align: center;
	background:#fff;
}

table.preview input[type=tel]{
	width:6em;
	border:1px solid #333;
	text-align: right;
	background:#fff;
	padding:0 10px;
}
table.preview input[type=tel]:disabled{
	border:none;
	background:transparent;
}
dl.cart input.reserve{
	width:180px;
	border-radius: 4px;
	padding:0 10px;
	font-size:16px;
}
dl.cart input[type=radio]{
	display: none;
}
dl.cart input[type=radio]+label,
dl.cart input[type=checkbox]+label{
	border:1px solid var(--darkgray-color);
	padding:0 10px;
	height: 44px;
	line-height: 44px;
	min-width: 100px;
	text-align: center;
	border-radius: 4px;
}
dl.cart input[type=radio]:checked+label,
dl.cart input[type=checkbox]:checked+label{
	background:var(--darkgray-color);
	border-color:var(--darkgray-color);
	color:#fff;
}
p.notes{
	color:var(--red-color);
	display: none;
	text-align: justify;
    clear: both;
}
p.priceChange{
	margin-top:50px;
}
dl.grandTotal{
	margin:10px;
	border:4px solid lightgray;
	box-sizing: border-box;
	padding:10px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
dl.grandTotal dd{
	font-size:20px;
	color:var(--red-color);
	font-weight: bold;
}
dl.grandTotal dd span{
	font-size:14px;
	color:#000;
}
p.product{
	font-weight: bold;
}
@media(min-width:768px){
	dl.confirm{
		overflow: hidden;
		margin-left:100px;
		margin-right: 100px;
		width:calc(100% - 200px);
	}
	dl.confirm dt{
		font-weight: bold;
		width:200px;
		float: left;
		clear: both;
		margin-bottom: 1em;
	}
	dl.confirm dd{
		width:calc(100% - 220px);
		float: right;
		margin-bottom:20px;
	}
	dl.confirm dd.image{
		display: flex;
		gap:10px;
	}
	dl.confirm dd.image img{
		width:40%;
	}
}
@media(max-width:767.99px){
	dl.confirm{

	}
	dl.confirm dt{
		font-weight: bold;
	}
	dl.confirm dd{
		margin-left:20px;
		margin-bottom: 1em;
	}
	dl.confirm dd.image{
		display: flex;
		gap:10px;
	}
	dl.confirm dd.image img{
		width:40%;
	}
}
p.error{
	min-height: 2em;
	color:var(--red-color);
}
p.must::before{
	content: "★";
	color:var(--red-color);
	padding-right: 5px;
}
a.link{
	color:var(--red-color);
}
input#term{
	display: none;
}
input#term+label{
	border:1px solid #333;
	padding:10px;
	width:100%;
	box-sizing: border-box;
	text-align: center;
	border-radius: 4px;
	line-height: 25px;
}
input#term:checked+label{
	background:var(--darkgray-color);
	border-color:var(--darkgray-color);
	color:#fff;
}
@media(min-width:768px){
	input#term:checked+label,
	input#term+label{
		width:310px;
		line-height: 25px;
	}
}
dl.hide{
	display: none;
}
dl.hide dt,
dl.hide dd{
	float: none;
}
div.idPhotoWrapper {
	/*display: flex !important;
	justify-content: space-between !important;
	gap:10px;
	align-items: center !important;*/
}
div.idPhotoWrapper > div{
	width:120px;
	display: flex;
	flex-direction: column;
	border:1px solid #333;
	border-radius: 4px;
	box-sizing: border-box;
	padding:10px;
}
dl.cart.confirm div.idPhotoWrapper > div{
	box-sizing: content-box;
}
input[type=file]{
	display: none;
}
input[type=file]+label{
	width:50px;
	height: 50px;
	background:url("../img/icon_photo_add.svg") center center no-repeat;
	background-size:30px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
div.image1,
div.image2{
	/*width:100%;
	aspect-ratio:4 / 3;*/
	position: relative;
}
img#image1 ,
img#image2 {
	width:100%;
	height: 100%;
	object-fit:cover;
	display: none;
}
span.delete{
	width:25px;
	height: 25px;
	background:url("../img/icon_photo_delete.svg") center center no-repeat;
	background-size:25px;
	position: absolute;
	top:-5px;
	right:-5px;
	z-index: 10;
	display: none;
}
dl.license{
	display: none;
}
h3.member {
	font-size:18px;
	font-weight: bold;
	margin-top:15px;
}
dl.cart dl{
	width:100%;
}
p.asterisk {
	text-indent: -1em;
	padding-left:1em;
	clear: both;
}
div.aboutInvoice{
	border:1px dashed var(--red-color) !important;
	padding:10px;
	border-radius: 4px;
	display: block !important;
	width:100%;
}
div.aboutInvoice p.title{
	background:url("../img/icon_question.svg") left center no-repeat  !important;
	background-size:18px !important;
	padding-left:25px;
	cursor:pointer;
}
div.aboutInvoice p.title:hover{
    color:var(--red-color);
}
div.aboutInvoice p.contents{
	display: none;
	margin-top:1em;
}
div.aboutInvoice ul{
	display: none;
	margin-top:1em;
}
div.aboutInvoice ul.active{
	display: block;
}
div.aboutInvoice ul li{
	margin-top:1em;
    list-style: disc;
    margin-left:25px;
    font-size:14px;
}
div.aboutInvoice p.contents.active{
	display: block;
	transition: all 0.2s;
}
/*モーダル*/
/*モーダルを開くボタン*/
.modal-open{
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,60%);
	padding: 20px 10px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .2s;
    box-sizing: border-box;
	z-index: 100000000;
}
.modal-container.full{
	width:100vw !important;
	height: 100vh !important;
	z-index: 2000;
}
.modal-container.full.kyc{
	width:100vw !important;
	height: 100vh !important;
	z-index: 2000;
	opacity: 1;
	visibility: visible;
}
.maintenance div.range-fixed{
	overflow-y:auto;
	max-height: 50vh;
}
.modal-container.hide{
	display: none;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: calc(100% - 20px);
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	top: -17.5px;
	right: -17.5px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-image:url("../img/icon_close.svg");
	background-size:35px;
	background-repeat: no-repeat;
	background-position: center top;
}
.modal-close:hover{
	background-position: center bottom;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
	border-radius: 8px;
	border:4px solid var(--main-color);
}
.modal-content h2{
	font-size:16px;
	background:#fff;
	color:var(--red-color);
	border-bottom:2px solid var(--gray-color);
	padding:0;
	text-indent: 10px;
	line-height: 2em;
}
.modal-content dl{
	overflow: hidden;
}
.modal-content dt,
.modal-content dd{
	padding:5px;
	box-sizing: border-box;
}
.modal-content dt{
	width:5em;
	float: left;
	clear: both;
}
.modal-content dd{
	width:calc(100% - 5em);
	float: right;
}
@media(min-width:768px){
	.modal-content dt{
		width:6em;
		float: left;
		clear: both;
	}
	.modal-content dd{
		width:calc(100% - 6em);
		float: right;
	}
}
a.google {
    padding: 4px 30px;
    text-align: center;
    background-color: #2BC48A;
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-image: url(../img/line_marker.svg);
    border-radius: 4px;
    background-size: 15px;
    text-indent: 15px;
    display: block;
	color:#fff;
}
a.tel {
    padding: 4px 30px;
    text-align: center;
    background-color: #E64B3B;
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-image: url(../img/line_call.svg);
    border-radius: 4px;
    background-size: 15px;
    text-indent: 15px;
    display: block;
	color:#fff;
	margin-bottom:5px;
	width:150px
}
a.plane {
    padding: 6px 30px;
    text-align: center;
    background-color: var(--orange-color);
    border-radius: 4px;
    text-indent: 15px;
    display: block;
	color:#fff;
	margin-bottom:5px;
	clear: both;
	width:50%;
	margin:auto auto 30px;;
}
a.plane:hover {
    background-color:var(--red-color);
}
/*desktop*/
@media(min-width:768px){
	.modal-content{
		padding: 30px;
	}
	.modal-content img{
		max-width:80%;
		height: auto;
	}
}
/*mobile*/
@media(max-width:767.98px){
	.modal-content{
		padding: 10px 15px;
		height: 90vh;
		overflow-y: auto;
	}
	.modal-content img{
		max-width:80%;
		height: auto;
	}
}
/*footer*/
@media(min-width:768px){
	div#footerWrapper{
		width:100%;
		min-width:var(--min-width);
		border-top:1px solid #ccc;
	}
	div#footer{
		margin:30px auto 0;
		padding-top:20px;
		width:var(--min-width);
		overflow: hidden;
	}
	div.footerLink img{
		width:200px;
		float: left;
	}
	div#footer h2{
		background:none;
		text-indent: 0;
		text-align: center;
		border: none;
	}
	ul.footerNav{
		display: flex;
		gap:20px;
        flex-wrap: wrap;
		float: right;
		margin-top:50px;
	}
	p.copy{
		font-size:12px;
		text-align: center;
		background:var(--gray-color);
		line-height: 2em;
		color:#333;
	}
	p.footer{
		clear: both;
		margin-bottom:20px;
        font-size:12px;
	}
	p.footer span{
		font-weight: bold;
	}
	p#totop{
		width:50px;
		height: 50px;
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		background-image:url("../img/totop.svg");
		background-size:50px;
		background-position: center top;
		position: fixed;
		right:20px;
		bottom:20px;
		display: none;
	}
	p#totop a{
		display: block;
		width:100%;
		height: 100%;
	}
	p#totop:hover{
		background-position: center bottom;
	}
}
@media(max-width:767.99px){
	div#footer{
		border-top:1px solid #ccc;
		margin:30px auto 0;
		padding-top:20px;
	}
	div.footerLink img{
		width:40%;
	}
	div#footer h2{
		background:none;
		text-indent: 0;
		text-align: center;
	}
	p.copy{
		font-size:12px;
		text-align: center;
		background:var(--gray-color);
		line-height: 2em;
		color:#fff;
	}
	p.footer{
		margin:0 10px 10px;
        font-size:12px;
	}
	p.footer span{
		font-weight: bold;
	}
	p#totop{
		width:40px;
		height: 40px;
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		background-image:url("../img/totop.svg");
		background-size:40px;
		background-position: center top;
		position: fixed;
		right:20px;
		bottom:20px;
		display: none;
	}
	p#totop a{
		display: block;
		width:100%;
		height: 100%;
	}
	p#totop:hover{
		background-position: center bottom;
	}
}
/*company*/
@media(min-width:768px){
	dl.company{
		overflow: hidden;
		border-bottom:1px solid #ccc;
		margin:auto 100px;
	}
	dl.company dt,
	dl.company dd{
		padding:10px;
		border-top:1px solid #ccc;
		box-sizing: border-box;
	}
	dl.company dt{
		width:120px;
		float: left;
		clear: both;
	}
	dl.company dd{
		width:calc(100% - 120px);
		float: right;
	}
}
@media(max-width:767.99px){
	dl.company{
		overflow: hidden;
		border-bottom:1px solid #ccc;
	}
	dl.company dt,
	dl.company dd{
		padding:10px;
		border-top:1px solid #ccc;
		box-sizing: border-box;
	}
	dl.company dt{
		width:100px;
		float: left;
		clear: both;
	}
	dl.company dd{
		width:calc(100% - 100px);
		float: right;
	}
}
/*買取の流れ*/
@media(min-width:768px){
	div.flow{
		display: flex;
		margin:50px auto;
		justify-content:center;
		gap:50px;
	}
	a.flow{
		display: block;
		text-align: center;
		height: 40px;
		line-height: 40px;
		border:3px solid var(--submit-color);
		padding:0 10px;
		border-radius: 4px;
		color:var(--submit-color);
	}
	a.flow:hover{
		background:var(--submit-color);
		color:#fff;
	}
	h3.static{
		color:var(--red-color);
		font-weight: bold;
		font-size: 20px;
		padding-left:25px;
		background-repeat: no-repeat;
		background-position: left bottom 7px;
		background-size:20px;
		margin-top:20px;
	}
	h3.static.num01{
		background-image:url("../img/001-number-1.svg");
	}
	h3.static.num02{
		background-image:url("../img/002-number-2.svg");
	}
	h3.static.num03{
		background-image:url("../img/003-number-3.svg");
	}
	h3.static.num04{
		background-image:url("../img/005-number-4.svg");
	}
	h3.static.num05{
		background-image:url("../img/004-number-5.svg");
	}
	h3.static.num06{
		background-image:url("../img/006-number-1.svg");
	}
	h3.static.num07{
		background-image:url("../img/007-number-1.svg");
	}
	h3.static.num08{
		background-image:url("../img/008-number-1.svg");
	}
	h3.static.num09{
		background-image:url("../img/009-number-1.svg");
	}
	h3.static.num10{
		background-image:url("../img/010-number-1.svg");
	}
	h3.static + p{
		margin-left:25px;
		margin-top:5px;
	}
	h4.static{
		border-bottom:1px solid var(--red-color);
		color:var(--red-color);
		margin-left:10px;
		margin-top:10px;
        font-weight: bold;
	}
	h4.static + p{
		margin-top:10px;
		margin-left:20px;
	}
    h4.static.ml50{    
        margin-left:50px;
    }
    h4.static.ml50+p{
        margin-left:70px;
    }
    h4.static.ml50+P+ol{
        margin:10px auto 10px 90px;
    }
    p.sign{
        margin-top:30px;
        text-align:right;
    }
	h5.static{
		margin:10px;
		position: relative;
		padding-left:26px;
		font-weight: bold;
	}
	h5.static::before{
		content: "";
		width:13px;
		height: 13px;
		border-radius: 16px;
		border:2px solid #000;
		position: absolute;
		top:0;
		bottom:0;
		left:0;
		margin:auto;
	}
    h5.static + ul{
        margin-left:50px;
    }
	ul.flow,
    ol.flow{
		margin:10px 0 10px 20px;
	}
	ul.flow li{
		list-style: disc;
		margin-left:10px;
	}
    ol.flow li{
		margin-left:50px;
	}
    ul.flow li.nomark{
        list-style: none;
        margin-top:1em;
    }
	ul.flow + p{
		margin-left:20px;
	}
	div.map{
		margin:10px 0 10px 20px;
		width:calc(100% - 30px);
		height: 250px;
		box-sizing: border-box;
		border-radius: 8px;
		overflow: hidden;
	}
	div.map + p{
		margin-left:20px;
	}
	.mt10{
		margin-top:10px;
	}
	.mt50{
		margin-top:50px;
	}}
@media(max-width:767.99px){
	div.flow{
		display: flex;
		margin:50px auto;
		justify-content: space-around;
	}
	a.flow{
		display: block;
		text-align: center;
		height: 40px;
		line-height: 40px;
		border:3px solid var(--submit-color);
		padding:0 10px;
		border-radius: 4px;
		color:var(--submit-color);
	}
	h3.static{
		color:var(--red-color);
		font-weight: bold;
		font-size: 18px;
		padding-left:25px;
		background-repeat: no-repeat;
		background-position: left bottom 7px;
		background-size:20px;
		margin-top:20px;
	}
	h3.static.num01{
		background-image:url("../img/001-number-1.svg");
	}
	h3.static.num02{
		background-image:url("../img/002-number-2.svg");
	}
	h3.static.num03{
		background-image:url("../img/003-number-3.svg");
	}
	h3.static.num04{
		background-image:url("../img/005-number-4.svg");
	}
	h3.static.num05{
		background-image:url("../img/004-number-5.svg");
	}
	h3.static.num06{
		background-image:url("../img/006-number-1.svg");
	}
	h3.static.num07{
		background-image:url("../img/007-number-1.svg");
	}
	h3.static.num08{
		background-image:url("../img/008-number-1.svg");
	}
	h3.static.num09{
		background-image:url("../img/009-number-1.svg");
	}
	h3.static.num10{
		background-image:url("../img/010-number-1.svg");
	}
	h3.static + p{
		margin-left:25px;
		margin-top:5px;
	}
	h4.static{
		border-bottom:1px solid var(--red-color);
		color:var(--red-color);
		margin-left:10px;
		margin-top:10px;
	}
	h4.static + p{
		margin-top:10px;
		margin-left:20px;
	}
    h4.static.ml50{    
        margin-left:20px;
    }
    h4.static.ml50+p{
        margin-left:30px;
    }
    h4.static.ml50+P+ol{
        margin:10px auto 10px 50px;
    }
    p.sign{
        margin-top:30px;
        text-align:right;
    }
	h5.static{
		margin:10px;
		padding:5px;
		border:1px dashed #333;
	}
    h5.static + ul{
        margin-left:30px;
    }
	ul.flow{
		margin:10px 0 10px 20px;
	}
	ul.flow li{
		list-style: disc;
		margin-left:10px;
	}
	ul.flow + p{
		margin-left:20px;
	}
	div.map{
		margin:10px 0 10px 20px;
		width:calc(100% - 30px);
		height: 250px;
		box-sizing: border-box;
		border-radius: 8px;
		overflow: hidden;
	}
	div.map + p{
		margin-left:20px;
	}
	.mt10{
		margin-top:10px;
	}
	.mt50{
		margin-top:50px;
	}
}
/*FAQ*/
@media(min-width:768px){
	dl.faq dt{
		margin-top:10px;
		cursor: pointer;
		margin-left:100px;
		margin-right: 100px;
	}
	dl.faq dt::before{
		content: "Q";
		color:var(--red-color);
		font-size:20px;
		font-weight: bold;
		padding-right: 10px;
		cursor: pointer;
	}
	dl.faq dd{
		margin-left:130px;
		background:#efefef;
		padding:10px;
		margin-bottom:10px;
		border-radius: 4px;
		display: none;
	}
	dl.faq dd::before{
		content:"A";
		color:var(--submit-color);
		font-size:20px;
		font-weight: bold;
		padding-right: 10px;
	}
	h3.faq{
		font-weight: bold;
		margin-bottom: 10px;
	}
}
@media(max-width:767.99px){
	dl.faq dt{
		margin-top:10px;
	}
	dl.faq dt::before{
		content: "Q";
		color:var(--red-color);
		font-size:20px;
		font-weight: bold;
		padding-right: 10px;
		cursor: pointer;
	}
	dl.faq dd{
		margin-left:30px;
		background:#efefef;
		padding:10px;
		margin-bottom:10px;
		border-radius: 4px;
		display: none;
	}
	dl.faq dd::before{
		content:"A";
		color:var(--submit-color);
		font-size:20px;
		font-weight: bold;
		padding-right: 10px;
	}
	h3.faq{
		font-weight: bold;
		margin-bottom: 10px;
	}
}
/*利用規約*/
@media(min-width:768px){

}
@media(max-width:767.99px){
	h3.static.term{
		padding-left:0;
	}
}
/*価格査定*/
@media(min-width:768px){
	h3.static.assessment{
		padding-left:0;
		font-size:16px;
		margin:5px 0;
	}
	h3.static.assessment.must::after{
		content: "★";
	}
	label.assessment{
		
	}
	dd.flex{
		display: flex;
		flex-wrap: wrap;
		gap:10px;
	}
	dd.flex input[type="radio"],
	dd.flex input[type="checkbox"]{
		display: none;
	}
	dd.flex input+label{
		border:1px solid #333;
		padding:5px 10px;
		border-radius: 4px;
		min-width:50px;
		text-align: center;
	}
	dd.flex input:checked + label{
		border-color: var(--darkgray-color);
		background-color:var(--darkgray-color);
		color:#fff;
	}
	dl.form{
		margin:0 100px 0 100px;
	}
	dl.form.m0{
		margin:30px 0;
	}
	dl.form label{
		cursor: pointer;
	}
/*	dl.form input[name=お名前],
	dl.form input[name=フリガナ],
	dl.form input[name=メールアドレス],
	dl.form input[name=お電話番号],
	dl.form input[name=会社名],
	dl.form select[name=お住まい],
	dl.form input[name=色]*/
	dl.form .formM,
	dl.form .formL
	{
		/*width:50%;*/
	}
	dl.form dd{
		margin-bottom:10px;
	}
	dl.form textarea{
		border:1px solid #333;
		width:100%;
		height: 150px;
		box-sizing: border-box;
		padding:10px;
		border-radius: 4px;
		font-size:16px;
	}
	dl.form input.other:disabled{
		background:#efefef;
	}
	dl.form .switch1,
	dl.form .maker1{
		display: none;
	}
	dl.form + div.submit input{
		width:50%;
		margin:auto;
		cursor: pointer;
	}
	dl.form.float{
		overflow: hidden;
		margin:20px auto;
		margin-left:200px;
	}
	dl.form.float dt{
		width:200px;
		float: left;
		clear: both;
	}
	dl.form.float dd{
		width:calc(100% - 200px);
		float: right;
	}
    input.bankname + label{
        width:125px !important;
		font-size:14px;
    }
    p.bankother{
        width:100%;
    }
}
@media(max-width:767.99px){
	h3.static.assessment{
		padding-left:0;
		font-size:16px;
		margin:5px 0;
	}
	h3.static.assessment.must::after{
		content: "★";
	}
	label.assessment{
		
	}
	dd.flex{
		display: flex;
		flex-wrap: wrap;
		gap:10px;
	}
	dd.flex input[type="radio"],
	dd.flex input[type="checkbox"]{
		display: none;
	}
	dd.flex input+label{
		border:1px solid var(--darkgray-color);
		padding:5px 10px;
		border-radius: 4px;
		min-width:50px;
		text-align: center;
	}
	dd.flex input:checked + label{
		border-color: var(--darkgray-color);
		background-color:var(--darkgray-color);
		color:#fff;
	}
	dl.form textarea{
		border:1px solid var(--darkgray-color);
		width:100%;
		height: 150px;
		box-sizing: border-box;
		padding:10px;
		border-radius: 4px;
		font-size:16px;
	}
	dl.form input.other:disabled{
		background:#efefef;
	}
	dl.form .switch1,
	dl.form .maker1{
		display: none;
	}
    input.bankname + label{
        width:125px !important;
		font-size:14px;
    }
    p.bankother{
        width:100%;
    }
}
/*ログイン*/
@media(min-width:768px){
	p.forget{
		text-align: right;
		margin:10px;
	}
	p.forget a{
		color:var(--red-color);
		border-bottom:1px solid var(--red-color);
	}
}
@media(max-width:767.99px){
	p.forget{
		text-align: right;
		margin:10px;
	}
	p.forget a{
		color:var(--red-color);
		border-bottom:1px solid var(--red-color);
	}
}
div.login {
	margin:10px;
	padding:10px;
	background:#efefef;
	border-radius: 4px;
	display: none;
}
/*マイページ*/
@media(min-width:768px){
	div.mypageWrapper{
		width:60%;
		margin:50px auto;
	}
	a.mypage{
		display: block;
		box-sizing: border-box;
		text-align: center;
		height: 44px;
		line-height: 44px;
		background:var(--submit-color);
		margin-bottom: 20px;
		color:#fff;
		border-radius: 4px;
	}
	a.mypage:hover{
		background:var(--orange-color);
	}
	p.pankuzu{
		display: flex;
		gap:10px;
		align-items:center;
		width:var(--min-width);
		margin:10px auto;
	}
	p.pankuzu span{
		display: block;
		background:url("../img/arrow_pankuzu.svg") center center no-repeat;
		background-size:5px;
		width:10px;
		height: 10px;
	}
	p.pankuzu a{
		color:var(--red-color);
	}
	.js-scrollable{
	}
	table.transaction{
		width:100%;
	}
	table.transaction td{
		padding:10px;
	}
	table.transaction thead td{
		background:var(--submit-color);
		color:#fff;
	}
	table.transaction tr:nth-child(2n+1){
		background:#efefef;
	}
	table.transaction tr:nth-child(2n){
		background:#fff;
	}
	a.dl{
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		background:url("../img/icon_download.svg") center center no-repeat;
		text-align: left;
		display: block;
		width:30px;
		height: 30px;
		background-size:20px;
		margin:auto;
	}
	div.page{
		margin:20px;
		display: flex;
		justify-content: center;
		gap:5px;
		font-size:14px;
	}
	div.page a.link_page{
		border:1px solid #ccc;
		display: inline-block;
		width:20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
	}
	div.page a.link_next{
		border:1px solid #ccc;
		text-align: center;
		line-height: 20px;
		display: inline-block;
		padding:0 5px;
	}
	div.page span.current_page,
	div.page a:hover{
		border:1px solid var(--darkgray-color);
		display: inline-block;
		height: 20px;
		line-height: 20px;
		text-align: center;
		background:var(--darkgray-color);
		color:#fff;
	}
	div.page span.current_page{
		width:20px;
	}
	div.wide a.flow{
		width:50% !important;
		margin:50px auto 0;
	}
	a.flow + p{	
		text-align: center;
	}
}
@media(max-width:767.99px){
	div.mypageWrapper{
		width:60%;
		margin:50px auto;
	}
	a.mypage{
		display: block;
		box-sizing: border-box;
		text-align: center;
		height: 44px;
		line-height: 44px;
		background:var(--submit-color);
		margin-bottom: 20px;
		color:#fff;
		border-radius: 4px;
	}
	a.mypage:hover{
		background:var(--orange-color)+
	}
	p.pankuzu{
		margin:10px;
		display: flex;
		gap:10px;
		align-items:center;
	}
	p.pankuzu span{
		display: block;
		background:url("../img/arrow_pankuzu.svg") center center no-repeat;
		background-size:5px;
		width:10px;
		height: 10px;
	}
	p.pankuzu a{
		color:var(--red-color);
	}
	.js-scrollable{
	}
	table.transaction{
		width:800px;
	}
	table.transaction td{
		padding:10px;
	}
	table.transaction thead td{
		background:var(--submit-color);
		color:#fff;
	}
	table.transaction tr:nth-child(2n+1){
		background:#efefef;
	}
	table.transaction tr:nth-child(2n){
		background:#fff;
	}
	a.dl{
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		background:url("../img/icon_download.svg") center center no-repeat;
		text-align: left;
		display: block;
		width:30px;
		height: 30px;
		background-size:20px;
		margin:auto;
	}
	div.page{
		margin:20px;
		display: flex;
		justify-content: center;
		gap:5px;
		font-size:12px;
	}
	div.page a.link_page{
		border:1px solid #ccc;
		display: inline-block;
		width:20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
	}
	div.page a.link_next{
		border:1px solid #ccc;
		text-align: center;
		line-height: 20px;
		display: inline-block;
		padding:0 5px;
	}
	div.page span.current_page{
		border:1px solid var(--red-color);
		display: inline-block;
		width:20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		background:var(--red-color);
		color:#fff;
	}
}
/*店舗案内*/
@media(min-width:768px){
	div.infoWrapper{
		width:calc(100% - 40px);
		margin:20px 0 50px 40px;
		display: flex;
		justify-content: space-between;
	}
	dl.infomation{
		overflow: hidden;
		border-bottom:1px solid #ccc;
		width:40%;
	}
	dl.infomation dt,
	dl.infomation dd{
		padding:10px;
		border-top:1px solid #ccc;
	}
	dl.infomation dt{
		float: left;
		width:calc(25% - 20px);
		clear: both;
	}
	dl.infomation dd{
		float: right;
		width:calc(75% - 20px);
	}
	div.infoMap{
		width:calc(60% - 20px);
		border-radius: 12px;
		overflow: hidden;
	}
}
@media(max-width:767.99px){
	dl.infomation{
		overflow: hidden;
		border-bottom:1px solid #ccc;
		width:100%;
	}
	dl.infomation dt,
	dl.infomation dd{
		padding:10px;
		border-top:1px solid #ccc;
	}
	dl.infomation dt{
		float: left;
		width:calc(25% - 20px);
		clear: both;
	}
	dl.infomation dd{
		float: right;
		width:calc(75% - 20px);
	}
	div.infoMap{
		width:calc(100% - 20px);
		border-radius: 12px;
		overflow: hidden;
		margin:10px;
		height: 240px;
	}
}

a.consent{
    color:var(--red-color);
    border-bottom:1px dashed var(--red-color);
}
a.consent:hover{
    color:#000;
    border-bottom:1px solid var(--red-color);
}
#ui-datepicker-div{
	z-index: 10 !important;
}
@media(min-width:768px){
    div.highlight{
        margin:20px;
        padding:20px;
        background:#efefef;
    }
    div.highlight ul,
    div.highlight ol{
        margin:10px 10px 10px 30px;
    }
    div.highlight ul li{
        list-style: disc;
    }
    div.highlight dl{
        width:400px;
        overflow: hidden;
        border-bottom:1px solid #ccc;
        margin:10px 10px 10px 30px;
        background:#fff;
    }
    div.highlight dl dt,
    div.highlight dl dd{
        padding:10px;
        border-top:1px solid #ccc;
        box-sizing: border-box;
    }
    div.highlight dl dt{
        width:150px;
        float: left;
        clear: both;
    }
    div.highlight dl dd{
        width:250px;
        float: right;
    }
}
@media(max-width:767.99px){
    div.highlight{
        margin:10px;
        padding:10px;
        background:#efefef;
    }
    div.highlight ul,
    div.highlight ol{
        margin:10px 10px 10px 30px;
    }
    div.highlight ul li{
        list-style: disc;
    }
    div.highlight dl{
        width:100%px;
        overflow: hidden;
        border-bottom:1px solid #ccc;
        margin:10px ;
        background:#fff;
    }
    div.highlight dl dt,
    div.highlight dl dd{
        padding:10px;
        border-top:1px solid #ccc;
        box-sizing: border-box;
    }
    div.highlight dl dt{
        width:40%;
        float: left;
        clear: both;
    }
    div.highlight dl dd{
        width:60%;
        float: right;
    }
}
p.invoice{
    color:var(--red-color);
    font-weight: bold;
    display: none;
}
@media(min-width:768px){
    p.invoice{
        margin:0 100px;
    }
	div.account_sample {
		clear: both;
		margin:0 0 10px 160px;
		box-sizing: border-box;
		padding:15px;
		border:1px solid #ccc;
		border-radius: 4px;
		position: relative;
	}
	div.account_sample h3{
		position: absolute;
		left:30px;
		top:-12px;
	}
	div.account_sample span{
		padding:0 10px;
		background:#fff;
	}
}
@media(max-width:767.99px){
    p.invoice{
        margin:0 20px;
    }
	div.account_sample {
		clear: both;
		margin:0 0 10px 10px;
		box-sizing: border-box;
		padding:15px;
		border:1px solid #ccc;
		border-radius: 4px;
		position: relative;
	}
	div.account_sample h3{
		position: absolute;
		left:30px;
		top:-12px;
	}
	div.account_sample span{
		padding:0 10px;
		background:#fff;
	}
}
dl.info{
	margin:25px;
	padding:25px;
	background:#efefef;
	border-radius: 8px;
	overflow: hidden;
}
dl.info dt{
	font-weight: bold;
	width:150px;
	float: left;
	clear: both;
	margin-bottom:0.5em;
}
dl.info dd{
	width:calc(100% - 150px);
	float: right;
}
@media(max-width:767.99px){
	dl.info{
		margin:25px;
		padding:25px;
		background:#efefef;
		border-radius: 8px;
		overflow: hidden;
	}
	dl.info dt{
		font-weight: bold;
		width:auto;
		float: none;
		clear: both;
	}
	dl.info dd{
		width:auto;
		float: none;
		margin-bottom:1em;
	}
}
div.kycMessage{
	width:80%;
	max-width:480px;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:#fff;
	margin:auto;
	padding:20px;
	border:5px solid var(--red-color);
	border-radius: 8px;
	height: 50vh;
	max-height: 340px;
}
div.kycMessage h3{
	color:var(--red-color);
	font-weight: bold;
	margin-bottom:2em;
	border-bottom:2px solid var(--red-color);
	font-size:16px;
}
div.kycMessage p{
	text-align:left;
	margin-bottom:2em;
}
div.kycMessage a.logout{
	background:#999;
	margin-bottom:2em;
}
div.date{
	flex-direction: column;
	width:100%;
	position: relative;
}
div.date.expire{
	padding:15px;
	border:10px solid var(--red-color);
	border-radius: 8px;
	padding-top:3em;
}
div.date.expire::before{
	content: "画像と有効期限の両方を更新してください";
	position: absolute;
	top:1em;
	color:var(--red-color);
	font-weight: bold;
}

div.colorCircle label{
	display: flex;
	gap:10px;
	font-size:13px;
	margin-bottom:5px;
}
td.cart input.colorCircle{
	width:15px !important;
	height: 15px !important;
}
td.cart input.colorCircle:checked{
	border-width: 2.5px;
}
