@charset "utf-8";


.btnSubmit {
    max-width: 420px;
	width: 90%;
	margin-top: 4rem;
}

.contents h2 {
	font-size: 3.2rem;
	text-align: center;
	margin: 0 0 5rem;
}

.contents .note {
	margin: 0 0 5rem;
}

@media (max-width: 768px) {
	.contents h2 {
		font-size: min(6vw, 3.2rem);
		margin-bottom: 4rem;
	}
}


form {
	margin-bottom: 0;
}

form .row {
	border: 1px solid #000;
	border-bottom: 0;
	align-items: center;
}

form .row:last-of-type {
	border-bottom: 1px solid #000;
}

form .row ul li:first-child {
	width: 28%;
	padding: 2rem;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	background: #f0f0f0;
}

form .row ul li:first-child span {
	font-size: 1.2rem;
	color: #ffffff;
	background: #9e1f00;
	padding: 5px 5px;
	line-height: 1;
	margin-left: 5px;
}

form .row ul li:last-child {
	width: 72%;
	padding: 2rem;
	border-left: 1px solid #000;
}

form .row ul li label a{
	color: #0075ff;
    text-decoration: underline;
    font-weight: 600;
}
form .zip input[type=text] {
	width: 110px;
}

form .zip input[type=text].wFull {
	width: 100%;
	margin-top: 2rem;
}

form .row ul li.name-box{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
form .row ul li.add-box{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
form .row ul li.add-box .addressFields{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
form .row ul li.name-box input[type="text"]{
	width: min(calc(100% - 3em),250px);
}

form .delivery-date select {
	width: 110px;
	margin-left: 20px;
}

form .delivery-date select:first-child {
	margin-left: 0;
}

form .alignTop {
	align-items: flex-start !important;
}
input[type="tel"],
input#delivery_date {
    border: 1px solid #ccc;
    padding: 8px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.6rem;
    width: min(100%, 250px);
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}


@media (max-width: 768px) {
	form .row ul li {
		width: 100% !important;
		padding: 2rem !important;
	}

	form .row ul li:last-child {
		border: 0 !important;
		border-top: 1px solid #000 !important;
	}

	form .zip input[type=text] {
		width: 80px;
	}

	form .delivery-date select {
		width: 60px;
	}

}




/* confirm page*/
#confirm .cmTxt {
	text-align: center;
}

#confirm .box {
	margin-top: 4rem;
}

#confirm .row {
	border: 1px solid #000;
	border-bottom: 0;
	align-items: center;
}

#confirm .row:last-child {
	border-bottom: 1px solid #000;
}

#confirm .row ul li:first-child {
	width: 28%;
	padding: 2rem;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	background: #f0f0f0;
}

#confirm .row ul li:last-child {
	width: 72%;
	padding: 2rem;
	border-left: 1px solid #000;
}

#confirm .listBtn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	align-items: center;
	text-align: center;
	margin: 3rem 0 0;
}

#confirm .listBtn button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 20px;	
	max-width: 240px;
	width: 100%;
	margin: 0;	
	cursor: pointer;
}

#confirm .listBtn .btnBack i {
    background-image: url(../img/common/arrow-left-long-white.svg);
}

#confirm .listBtn .btnBack:hover i {
    background-image: url(../img/common/arrow-left-long.svg);
}

#confirm .listBtn .btnNext i {
    background-image: url(../img/common/arrow-right-long-white.svg);
}

#confirm .listBtn .btnNext:hover i {
    background-image: url(../img/common/arrow-right-long.svg);
}

#thanks .box {
    max-width: 650px;
    margin: 40px auto 60px;
}

@media (max-width: 768px) {
	#confirm .box {
		margin-bottom: 4rem;
	}

	#confirm .row ul li {
		width: 100% !important;
	}

	#confirm .row ul li:last-child {
		border: 0 !important;
		border-top: 1px solid #000 !important;
	}

	#confirm .listBtn {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	#confirm .listBtn button {
		max-width: 160px;
		gap: 5px;
	}
	#thanks.contents h2{
		line-height: 1.6em;
	}
	#thanks .cmTxt{
		text-align: left;
	}
	#thanks .box p{
		line-height: 1.8em;
	}
}