/* 対応地域判定 */

.check-post-code a {
	text-decoration: none;
}
.check-post-code {
	margin-top: 1.5em;
}
.check-post-code__inner {
	max-width: 400px;
	margin: 0 auto;
}
.check-post-code__txt {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 16px;
}
.check-post-code__number {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 15px;
	align-items: center;
	margin-bottom: 16px;
	font-size: 18px;
	input:nth-child(3) {
		margin-right: 27px
	}
}
.check-post-code__number::after {
	position: absolute;
	top: 50%;
	left: 41.75%;
	width: 10px;
	height: 1px;
	background-color: #4B3E2E;
	content: ""
}
@media screen and (max-width: 768px) {
	.check-post-code__number {
		gap: 7px;
	}
}
.check-post-code__number input {
	width: 100%;
	max-width: 40px;
	aspect-ratio: 5/6;
	height: fit-content;
	border: 1px solid #4F4F4F;
	border-radius: 2px;
	font-size: 16px;
	text-align: center
}
@media screen and (max-width: 768px) {
	.check-post-code__number input {
		max-width: inherit;
	}
}
.check-post-code__btns {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 40px;
}
.check-post-code__btn {
	position: relative;
	display: block;
	width: 100%;
	max-width: 400px;
	border-radius: 40px;
	box-sizing: border-box;
	text-align: center;
	border: none;
	padding: 21px 40px;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
}
.check-post-code__btn--submit {
	background-color: #FF0200;
	color: #fff;
}
.check-post-code__btn--submit::after {
	right: 20px;
	background-image: url(/img/common/icon_btn_white_02.svg);
}
.check-post-code__btn--back {
	background-color: #fff;
	border: 1px solid #7A6A56;
	color: #7A6A56;
}
.check-post-code__btn--back::after {
	left: 15px;
	background-image: url(/img/common/icon_btn_gray_01.svg);
}
.check-post-code__btn:disabled {
	opacity: .5;
	cursor: default;
}
.check-post-code__btn::after {
	position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  transform: translateY(-50%);
}
.check-post-code__txt-line {
	position: relative;
	text-align: center;
	margin-bottom: 24px;
	span {
		position: relative;
		display: inline-block;
		padding: 0 24px;
		background-color: #fff;
		z-index: 5;
	}
}
.check-post-code__txt-line::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #BFBFBF;
	content: "";
}

.check-post-code__note {
	margin-bottom: 24px;
	border: 1px solid #BFBFBF;
	border-radius: 6px;
	padding: 16px;
	font-size: 15px;
	line-height: 1.5;
	a {
		color: #0000FF;
		text-decoration: underline
	}
	a:hover {
		text-decoration: none
	}
}
.check-post-code__note-ttl {
	font-weight: 700;
	margin-bottom: 16px;
}
.check-post-code-unsupported {
	/* min-width: 300px; */
	margin: 50px auto;
	line-height: 25px;
}
