@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------

 tapestry　タペストリー制作
 
-----------------------------------------------*/
.ordermadeCont h2 + p{
	margin: 15px auto;
	line-height: 1.8em;
}

/*h3*/
.ordermadeCont .hLine{
	color: #71d23b;
	margin: 20px auto;
	padding-bottom: 5px;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	position: relative;
}
.ordermadeCont .hLine:after{
	content: "";
	width: 80%;
	max-width: 680px;
	height: 3px;
	background-color: #71d23b;
	margin: auto;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

/*----ページ内リンク----*/
.ordermadeCont .anchorLink ul {
	max-width: 800px;
}
.ordermadeCont .anchorLink ul li{
	width: calc((100% - 40px) / 5);
}
.ordermadeCont .anchorLink ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 10px 5px 10px;
	font-size: 18px;
	border: 2px solid #8ee160;
	border-radius: 10px;
}
.ordermadeCont .anchorLink ul li a:after{
	border-top-color: #fff;
	transition: all .3s ease;
	bottom: 3px;
}
.ordermadeCont .anchorLink ul li a:hover:after{
	border-top-color: #f21598;
	bottom: 0;
}


/*----サイズから選ぶ----*/
.orderSize .sizeBox{
	max-width: 840px;
	margin: 40px auto;
	border: 1px solid #8ee160;
	border-radius: 15px 15px 0 15px;
	overflow: hidden;
	position: relative;
}
.orderSize .sizeBox .head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	background-color: #f3f3f3;
	padding: 15px 20px 15px 40px;
}
.orderSize .sizeBox .head .title{
	font-size: 20px;
	font-weight: 700;
	line-height: 1em;
	vertical-align: middle;
}
.orderSize .sizeBox .head .title span{
	margin-right: 5px;
	font-size: 34px;
	line-height: 1em;
	vertical-align: baseline;
}
.orderSize .sizeBox .head ul{
	display: flex;
	gap: 5px;
}
.orderSize .sizeBox .head ul > li{
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 45px;
	height: 45px;
	background-color: #44935e;
	color: #fff;
	padding: 3px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 10px;
}
.orderSize .sizeBox .head ul > li.pop{
	background-color: #ff2727;
}
.orderSize .sizeBox .head ul > li.std{
	background-color: #2068fa;
}

.orderSize .sizeBox .inner{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 15px 15px;
}
.orderSize .sizeBox .inner > img{
	flex-shrink: 0;
	width: 405px;
	height: auto;
}
.orderSize .sizeBox .inner .text{
	padding-bottom: 40px;
}
.orderSize .sizeBox .inner p{
	line-height: 1.8em;
}
.orderSize .sizeBox .inner dl.size{
	display: flex;
	justify-content: center;
	background-color: #f3f3f3;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8em;
	letter-spacing: 0.08em;
}
.orderSize .sizeBox .inner dl.size dt:after{
	content: "：";
}

.orderSize .sizeBox > a{
	display: block;
	width: 45%;
	background-color: #f21f51;
	color: #fff;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5em;
	position: absolute;
	right: 0;
	bottom: 0;
}
.orderSize .sizeBox > a:after{
	content: "";
	display: block;
	border: 8px solid transparent;
	border-left: 10px solid #fff;
	transform: translateY(-50%);
	position: absolute;
	right: 10px;
	top: 50%;
}
.orderSize .sizeBox > a:hover{
	background-color: #ff84a1;
}

/*----サイズ比較----*/
.orderCompare .inner{
	background-color: #f8f8f8;
	margin: 40px auto;
	padding: 30px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.orderCompare .inner img{
	display: block;
	margin: 0 auto 15px;
}

/*----仕立て----*/
.orderShitate .inner{
	width: 90%;
	max-width: 680px;
	background-color: #f3f3f3;
	margin: 20px auto;
	text-align: center;
	border-radius: 15px;
	overflow: hidden;
}

/*----生地/仕立て----*/
.orderList{
	display: flex;
	gap: 20px;
}
.orderList > li{
	width: 285px;
}
.orderList > li h4.title{
	margin: 10px 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.8em;
	text-align: center;
	border-bottom: 1px solid #111;
}

/*----納品形態----*/
.orderPacking .inner{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 30px;
	width: 90%;
	margin: 20px auto;
}
.orderPacking .inner h4.title{
	margin: 0 0 10px;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.8em;
	border-bottom: 1px solid #111;
}


@media screen and ( max-width: 736px ){
	.ordermadeCont h2 + p{
		width: 95%;
	}

	/*h3*/
	.ordermadeCont .hLine{
		padding: 0 5px;
		font-size: 25px;
	}

	/*----ページ内リンク----*/
	.ordermadeCont .anchorLink ul li{
		width: calc((100% - 20px) / 3);
	}
	.ordermadeCont .anchorLink ul li a{
		padding: 10px 5px 15px;
		font-size: 16px;
	}
	.ordermadeCont .anchorLink ul li a br{
		display: none;
	}
	.ordermadeCont .anchorLink ul li a:after{
		bottom: 0px;
	}
	.ordermadeCont .anchorLink ul li a:hover:after{
		bottom: -3px;
	}

	/*----サイズから選ぶ----*/
	.orderSize .sizeBox{
		width: 95%;
	}
	.orderSize .sizeBox .head{
		padding: 10px 15px 10px 20px;
	}
	.orderSize .sizeBox .head .title{
		font-size: 18px;
	}
	.orderSize .sizeBox .head .title span{
		font-size: 28px;
	}
	.orderSize .sizeBox .head ul > li{
		min-width: 40px;
		height: 40px;
		padding: 3px;
		font-size: 16px;
	}

	.orderSize .sizeBox .inner{
		gap: 20px;
		padding: 15px 10px;
	}
	.orderSize .sizeBox .inner > img{
		flex-shrink: 0;
		width: 250px;
	}
	.orderSize .sizeBox .inner .text{
		padding-bottom: 30px;
	}

	.orderSize .sizeBox > a{
		width: 50%;
		padding: 5px 20px;
		font-size: 16px;
	}

	/*----サイズ比較----*/
	.orderCompare .inner{
		width: 95%;
		padding: 20px;
	}
	.orderCompare .inner img{
		width: 95%;
	}

	/*----仕立て----*/
	.orderShitate .inner{
		width: 95%;
	}
	.orderShitate .inner img{
		width: auto;
		height: 300px;
	}

	/*----生地/仕立て----*/
	.orderList{
		gap: 10px;
		width: 95%;
		margin: auto;
	}
	.orderList > li{
		width: calc((100% - 20px) / 3);
	}
	.orderList > li h4.title{
		font-size: 18px;
		line-height: 1.5em;
	}

	/*----納品形態----*/
	.orderPacking .inner{
		gap: 20px;
		width: 95%;
		margin: 20px auto;
	}
	.orderPacking .inner img{
		flex-shrink: 0;
		width: 250px;
	}
	.orderPacking .inner h4.title{
		font-size: 18px;
	}
}
@media screen and ( max-width: 480px ){
	/*h3*/
	.ordermadeCont .hLine{
		font-size: 23px;
	}

	/*----ページ内リンク----*/
	.ordermadeCont .anchorLink ul li{
		width: calc((100% - 10px) / 3);
	}
	.ordermadeCont .anchorLink ul li a{
		padding: 10px 3px 15px;
		font-size: 14px;
	}

	/*----サイズから選ぶ----*/
	.orderSize .sizeBox .head{
		padding: 10px 5px 10px 10px;
	}
	.orderSize .sizeBox .head .title{
		font-size: 18px;
	}
	.orderSize .sizeBox .head .title span{
		font-size: 24px;
	}
	.orderSize .sizeBox .head ul {
		flex-shrink: 0;
		flex-wrap: wrap;
		width: 100px;
	}
	.orderSize .sizeBox .head ul > li{
		min-width: auto;
		width: calc((100% - 5px) / 2);
		height: auto;
		font-size: 15px;
		line-height: 1.2em;
	}
	.orderSize .sizeBox .head ul > li.free{
		width: 100%;
	}

	.orderSize .sizeBox .inner{
		flex-direction: column-reverse;
		gap: 10px;
		padding: 10px;
	}
	.orderSize .sizeBox .inner > img{
		width: 100%;
		height: 200px;
		object-fit: contain;
	}
	.orderSize .sizeBox .inner .text{
		padding-bottom: 40px;
	}

	.orderSize .sizeBox > a{
		width: 95%;
		font-size: 16px;
		border-radius: 10px 0 0 0;
	}

	/*----サイズ比較----*/
	.orderCompare .inner{
		width: 95%;
		padding: 15px 10px;
	}
	.orderCompare .inner img{
		width: 100%;
	}

	/*----仕立て----*/
	.orderShitate .inner img{
		height: 250px;
	}

	/*----生地/仕立て----*/
	.orderList{
		flex-wrap: wrap;
		gap: 20px 10px;
	}
	.orderList > li{
		width: calc((100% - 10px) / 2);
	}
	.orderList > li h4.title{
		font-size: 17px;
	}

	/*----納品形態----*/
	.orderPacking .inner{
		flex-direction: column-reverse;
		gap: 10px;
	}
	.orderPacking .inner img{
		flex-shrink: 0;
		width: 90%;
	}
	.orderPacking .inner h4.title{
		font-size: 17px;
	}
}

