.header-text{
	text-align:center;
	padding-bottom: 50px;
}
.db_area{
	width:100%;
	height:auto;
	border-radius:24px;
	padding:20px;
	background-color: rgba(255, 255, 255, 0.8); /* ¹ÝÅõ¸í ¹è°æ */
}
.db_area .title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
	color:#44116f;
	padding-bottom:20px;
}

.db_area .inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.db_area .input {
    width: 100%;
    height: 45px;
    display: flex;
}
.db_area .input>span {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}
.db_area .radio2 input[type=radio] {
    display: none;
}
.db_area .input input {
    width: calc(100% - 60px);
    height: auto;
    border: 1px solid #ccc;
    padding-left: 10px;
    border-radius: 8px;
}
.db_area .apply {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.db_area .info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 10px;
}
.db_area .phone{
    width: calc(100% - 60px);
    height: 100%;
    display: flex;
}
.db_area .radio2 {
    width: calc(100% - 60px);
    height: 100%;
    display: flex;
    gap: 10px;
}
.db_area .info label {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.db_area .radio2 input[type=radio]:checked+label {
    font-size: 1rem;
    font-weight: 700;
    background-color: #7453fc;
    border: none;
    color: #fff;
}
.db_area .radio2 input[type=radio]+label {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
		background:#fff;
}
.db_area .sel {
    border: 1px solid #ccc;
    width: 80px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
}
.db_area .btn_submit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7453fc;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

.db_result {
	border: 1px solid #ccc;
	background-color: rgba(255, 255, 255, 0.8); /* ¹ÝÅõ¸í ¹è°æ */
    margin-top: 30px;
    padding:20px 20px;
    border-radius: 24px;
}
.db_result_item{
	display:grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px; /* ¿ä¼Ò °£ °£°Ý */
	margin-top: 10px;
}
.db_result_item .item {
	flex-direction: column;
	text-align: center;
  background-color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #404245;
}
.db_result_item .item img {
  vertical-align: top;
}

.db_result_item .item p {
  margin-top: 0px;
  font-size: 14px;
  color:#ff0000;
  font-weight:700;
}
.db_result_title {
  line-height: 36px;
  font-size: 30px;
  font-weight: 700;
  color:#44116f;
}
.db_result_update {
  font-size: 14px;
  color:#333;
}
.db_result_update .bhdate{
  color:#ff0000;
  font-weight:700;
}
@media (max-width: 992px) {
	.db_result_title {
		width:100%;
	}
	.db_result_item{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.db_area .title{
		font-size:24px;
	}
	.db_result_title{
		font-size:24px;
	}
	.db_result .db_result_update .bhide{
		display:none;
	}
}

