/* --------------- S:Util --------------- */
.util {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom:40px;
}

.util .total {
  font-size:2rem;
}

.util .total span {
  font-weight:700;
  color:#cb0000;
}

.util .search form {
  display: flex;
}

.util .search input,
.util .search select {
  height:42px;
  font-size:1.6rem;
  padding: 0 20px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  letter-spacing: -0.03em;
}

.util .search input {
  width:calc(100% - 44px);
  border-right: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 300;
}

.util .search select {
  width:100%;
  background-repeat: no-repeat;
  background-image: url('/child/img/icon/select-arrow.png');
  background-position: right 20px center;
  background-size: 14px 8px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #a7a7a7;
  border: none;
}

.util .search button {
  position: absolute;
  top:-1px;
  right:-1px;
  width:44px;
  height:44px;
  padding:0px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/child/img/icon/btn_search.png');
  background-color: #333;
  border-radius: 5px;
}

.util .search .search-select {
  width:200px;
  margin-right:8px;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
} 

.util .search .search-input {
  position: relative;
  width:332px;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  box-sizing: border-box;
}

@media(max-width:1200px) {
  .util .search input,
  .util .search select {
    font-size:1.5rem;
  }
}

@media(max-width:1024px) {
  .util {
    margin-bottom:35px;
  }
  
  .util .search input,
  .util .search select {
    height:40px;
    padding: 0 18px;
  }
  
  .util .search input {
    width:calc(100% - 42px);
  }
  
  .util .search select {
    width:100%;
    background-position: right 18px center;
  }
  
  .util .search button {
    width:42px;
    height:42px;
  }
  
  .util .search .search-select {
    width:180px;
  } 
  
  .util .search .search-input {
    width:310px;
  }
}

@media(max-width:768px) {
  .util {
    margin-bottom:30px;
  }

  .util .search {
    width: 100%;
  }
  
  .util .search input,
  .util .search select {
    height:38px;
    padding: 0 16px;
    font-size:1.2rem;
  }
  
  .util .search input {
    width:calc(100% - 40px);
  }

  .util .search button {
    width:40px;
    height:40px;
    background-size: 13px;
  }
  
  .util .search select {
    background-size: 12px 7px;
    background-position: right 14px center;
  }
  
  
  .util .search .search-select {
    width:160px;
    margin-right: 10px;
  } 
  
  .util .search .search-input {
    width: calc(100% - 170px);
  }
}

@media(max-width:500px) {
  .util {
    flex-direction: column;
    align-items: start;
    margin-bottom:25px;
  }
  
  .util .search {
    width: 100%;
  }

  .util .search input,
  .util .search select {
    height:35px;
    padding: 0 14px;
    font-size:1.2rem;
  }
  
  .util .search input {
    width:calc(100% - 35px);
  }
  
  .util .search select {
    width:100%;
    background-position: right 14px center;
  }
  
  .util .search button {
    width:37px;
    height:37px;
  }
  
  .util .search .search-select {
    width:120px;
    margin-right:8px;
  } 
  
  .util .search .search-input {
    width: calc(100% - 128px);
  }
}
/* --------------- E:Util --------------- */

/* --------------- S: Store Util --------------- */

.util--store .search {
  width: 100%;
}

.util--store .search form{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.util--store .radio-tab {
  display: flex; 
  align-items: center;
  gap: 0 40px;
  margin-right: 15px;
}

.util--store .radio-tab label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.util--store .radio-tab label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.util--store .radio-tab label i {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/icon/input-check.png');
}

.util--store .radio-tab label input[type="radio"]:checked ~ i {
  background-image: url('/child/img/icon/input-checked.png');
}

.util--store .radio-tab label p {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.util--store .search .wrap {
  display: flex;
  align-items: center;
}

@media(max-width:1200px) {
  .util--store .radio-tab {
    gap: 0 20px;
  }
  
  .util--store .radio-tab label i {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  
  .util--store .radio-tab label p {
    font-size: 1.4rem;
  }
}

@media(max-width:1024px) {
  .util--store .search form{
    flex-direction: column;
    gap: 15px;
  }

  .util--store .radio-tab {
    gap: 0 20px;
  }
  
  .util--store .radio-tab label i {
    width: 12px;
    height: 12px;
    margin-right: 5px;
  }
  
  .util--store .search input,
  .util--store .search select {
    height:38px;
    padding: 0 16px;
    font-size:1.2rem;
  }
  
  .util--store .search input {
    width:calc(100% - 40px);
  }

  .util--store .search button {
    width:40px;
    height:40px;
    background-size: 13px;
  }
  
  .util--store .search select {
    background-size: 12px 7px;
    background-position: right 14px center;
  }
  
  
  .util--store .search .search-select {
    width:160px;
    margin-right: 10px;
  } 
  
  .util--store .search .search-input {
    width: calc(100% - 170px);
  }
}

@media(max-width:1024px) {
  .util--store .search form{
    gap: 10px;
  }

  .util--store .radio-tab {
    gap: 0 10px;
  }
  
  .util--store .radio-tab label i {
    width: 12px;
    height: 12px;
    margin-right: 5px;
  }
    
  .util--store .radio-tab label p {
    font-size: 1.4rem;
  }
  
  .util--store .search input,
  .util--store .search select {
    height:35px;
    padding: 0 10px;
    font-size:1.2rem;
  }
  
  .util--store .search input {
    width:calc(100% - 35px);
  }
  
  .util--store .search select {
    width:100%;
    background-position: right 10px center;
  }
  
  .util--store .search button {
    width:35px;
    height:35px;
  }
  
  .util--store .search .search-select {
    width:110px;
    margin-right:5px;
  } 
  
  .util--store .search .search-input {
    width: calc(100% - 115px);
  } 
}
/* --------------- E: Store Util --------------- */

/* --------------- S:Pagination --------------- */
.pagination {
  display: flex;
  justify-content: center;
  margin-top:77px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:27px;
  height:27px;
  margin: 0 6px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:#fff;
  text-align: center;
  font-size:1.6rem;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
  color: #5c5c5c;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
  font-weight:700;
  border-radius: 50%;
  background-color: #2b8cbf;
  color: #fff;
}

.pagination a.pagination__backward {
  background-image: url('/child/img/icon/pagination-backward.png');
}

.pagination a.pagination__prev {
  background-image: url('/child/img/icon/pagination-prev.png');
}

.pagination a.pagination__forward {
  background-image: url('/child/img/icon/pagination-forward.png');
}

.pagination a.pagination__next {
  background-image: url('/child/img/icon/pagination-next.png');
}

@media(max-width:1200px) {
  .pagination {
    margin-top:65px;
  }
  
  .pagination a {
    font-size:1.5rem;
  }
}


@media(max-width:1024px) {
  .pagination {
    margin-top:55px;
  }
  
  .pagination a {
    width:25px;
    height:25px;
    font-size:1.5rem;
  }
}

@media(max-width:768px) {
  .pagination {
    margin-top:45px;
  }
  
  .pagination a {
    width:23px;
    height:23px;
    font-size:1.3rem;
  }
}


@media(max-width:500px) {
  .pagination {
    margin-top:35px;
  }
  
  .pagination a {
    width:21px;
    height:21px;
    margin: 0 5px;
    font-size:1.2rem;
  }
}
/* --------------- E:Pagination --------------- */

/* --------------- S:Basic --------------- */
/* List */
.bbs-store .util {
  margin: 75px 0 20px;
}

.basic-list .table {
  width:100%;
  border-top:2px solid #000;
}

.basic-list .table .thead {
  background-color: #e7e7e7;
  border-bottom: 1px solid #c8c8c8;
}

.basic-list .table .box {
  cursor: pointer;
  border-bottom:1px solid #c8c8c8;
}

.basic-list .table .tr {
  display: flex;
  align-items: center;
}

.basic-list .table .no {
  max-width: 130px;
  width: 10.156%;
}

.basic-list .table .name {
  max-width: 175px;
  width: 13.671%;
}

.basic-list .table .subject {
  max-width: 713px;
  width: 55.703%;
  padding-left: 43px;
}

.basic-list .table .tel {
  max-width: 197px;
  width: 15.39%;
}

.basic-list .table .icon {
  max-width: 65px;
  width: 5.078%;
}

.basic-list .table .map {
  /* display: none; */
  width: 100%;
  max-height: 0;
  padding: 0 40px;
  overflow: hidden;
  transition: all .3s ease-out;
}

.basic-list .table .map > div {
  position: relative;
  width: 100%;
  /* padding-top: calc(480/1200*100%); */
  aspect-ratio: 2.5 / 1;
  /* margin: 35px 0 40px; */
  margin: 39px 0 40px;
  /* transition: all .3s ease-out; */
  transition: all 0.3s ease-out;
}

.basic-list .table .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.basic-list .table .th {
  padding:21px 15px 22px;
}

.basic-list .table .td {
  padding:16px 15px;
  
}

.basic-list .table .th,
.basic-list .table .td p {
  font-size:1.8rem;
  text-align: center;
} 

.basic-list .table .th {
  font-weight: 500;
}


.basic-list .table .td.icon i {
  display: block;
  width: 16px;
  height: 24px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/icon/store-map.png');
}

.basic-list .table .subject p {
  display: block;
  /* overflow: hidden; */
  /* white-space: nowrap; */
  /* text-overflow: ellipsis; */
  text-align: left;
}

.basic-list .table .table_message {
  width: 100%;
}

.basic-list .table .table_message .td {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding:50px 0px;
} 

.basic-list .table .table_message p {
  font-size:2rem;
}


.basic-list .table .box.on .map {
  max-height: none;
}


@media(max-width:1200px) {
  .bbs-store .util {
    margin: 65px 0 20px;
  }
  
  .basic-list .table .no {
    max-width: 130px;
    width: 11%;
  }
  
  .basic-list .table .name {
    max-width: 175px;
    width: 14%;
  }
  
  .basic-list .table .subject {
    max-width: 713px;
    width: 53%;
    padding-left: 35px;
  }
  
  .basic-list .table .tel {
    max-width: 197px;
    width: 16%;
  }
  
  .basic-list .table .icon {
    max-width: 65px;
    width: 6%;
  }
  
  .basic-list .table .map {
    padding: 0 35px;
  }
   
  .basic-list .table .box .map > div {
    margin: 30px 0 35px;
  }

  .basic-list .table .th {
    padding:20px 15px;
  }
  
  .basic-list .table .td {
    padding:16px 15px;
    
  }
  
  .basic-list .table .th,
  .basic-list .table .td p {
    font-size:1.6rem;
  } 
  
  .basic-list .table .td.icon i {
    width: 15px;
    height: 22px;
  }

  .basic-list .table .table_message .td {
    padding:50px 0px;
  } 
  
  .basic-list .table .table_message p {
    font-size:1.8rem;
  }
 
}
 

@media(max-width:1024px) {
  .bbs-store .util {
    margin: 55px 0 15px;
  }
  
  .basic-list .table .no {
    max-width: 130px;
    width: 11%;
  }
  
  .basic-list .table .name {
    max-width: 175px;
    width: 14%;
  }
  
  .basic-list .table .subject {
    max-width: 713px;
    width: 52%;
    padding-left: 25px;
  }
  
  .basic-list .table .tel {
    max-width: 197px;
    width: 16%;
  }
  
  .basic-list .table .icon {
    max-width: 65px;
    width: 7%;
  }
  
  .basic-list .table .map {
    padding: 0 30px;
  }
   
  .basic-list .table .box .map > div {
    margin: 25px 0 30px;
  }

  .basic-list .table .th {
    padding:15px 12px;
  }
  
  .basic-list .table .td {
    padding:15px 12px;
    
  }
  
  .basic-list .table .th,
  .basic-list .table .td p {
    font-size:1.6rem;
  } 
  
  .basic-list .table .td.icon i {
    width: 14px;
    height: 21px;
  }
  
  .basic-list .table .table_message .td {
    padding:45px 0px;
  } 
  
  .basic-list .table .table_message p {
    font-size:1.8rem;
  }
 
}

@media(max-width:768px) {
  .basic-list-store {
    overflow: auto;
  }
  
  .basic-list-store .table {
    width: 780px;
  }
  
  .bbs-store .util {
    margin: 45px 0 15px;
  }
  
  .basic-list .table .no {
    max-width: 130px;
    width: 11%;
  }
  
  .basic-list .table .name {
    max-width: 175px;
    width: 14%;
  }
  
  .basic-list .table .subject {
    max-width: 713px;
    width: 52%;
    padding-left: 25px;
  }
  
  .basic-list .table .tel {
    max-width: 197px;
    width: 16%;
  }
  
  .basic-list .table .icon {
    max-width: 65px;
    width: 7%;
  }
  
  .basic-list .table .map {
    padding: 0 25px;
  }

  .basic-list .table .box .map > div {
    margin: 20px 0 25px;
  }
  
  .basic-list .table .th {
    padding:12px 10px;
  }
  
  .basic-list .table .td {
    padding:12px 10px;
  }
  
  .basic-list .table .th,
  .basic-list .table .td p {
    font-size:1.4rem;
  } 
  
  .basic-list .table .td.icon i {
    width: 11px;
    height: 17px;
  }
  
  .basic-list .table .table_message .td {
    padding:40px 0px;
  } 
  
  .basic-list .table .table_message p {
    font-size:1.6rem;
  }
  
}

@media(max-width:500px) {
  .basic-list-store .table {
    width: 665px;
  }
  
  .bbs-store .util {
    margin: 35px 0 15px;
  }
  
  .basic-list .table .no {
    max-width: 130px;
    width: 11%;
  }
  
  .basic-list .table .name {
    max-width: 175px;
    width: 14%;
  }
  
  .basic-list .table .subject {
    max-width: 713px;
    width: 52%;
    padding-left: 25px;
  }
  
  .basic-list .table .tel {
    max-width: 197px;
    width: 16%;
  }
  
  .basic-list .table .icon {
    max-width: 65px;
    width: 7%;
  }
  
  .basic-list .table .map {
    padding: 0 20px;
  }
   
  .basic-list .table .box .map > div {
    margin: 15px 0 20px;
  }

  .basic-list .table .th,
  .basic-list .table .td p {
    font-size:1.2rem;
  } 
  
  .basic-list .table .td.icon i {
    width: 10px;
    height: 15px;
  }
  
  .basic-list .table .table_message .td {
    padding:35px 0px;
  } 
  
  .basic-list .table .table_message p {
    font-size:1.4rem;
  }
}
/* --------------- E:Basic --------------- */

/* --------------- S:Gallery --------------- */
/* List */
.gallery-list .list {
  display: flex;
  flex-wrap: wrap;
  margin:-20px;
}

.gallery-list .list li {
  flex:0 0 33.33%;
  max-width:33.33%;
  padding:20px;
  letter-spacing: -0.03em;
}

.gallery-list .list .thumb {
  position: relative;
  width:100%;
  height:0;
  padding-top: calc(240/400*100%);
  overflow: hidden;
  border-radius: 10px;
}

.gallery-list .list .thumb div {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  transition:all .4s ease-out;
	will-change: transform;
}

.gallery-list .list .cont {
  padding-top:30px;
  margin-bottom: -3px;
  letter-spacing: -0.03em;
}

.gallery-list .list .category {
  display: block;
  margin-bottom: 7px;
  font-size: 2rem;
  font-weight: 700;
  font-style: normal;
  color: #187baf;
}

.gallery-list .list .subject {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4em;
  font-size:2.4rem;
  font-weight:600;
  margin-bottom:17px;
}

.gallery-list .list .data {
  font-size:1.8rem;
  font-weight: 500;
  color:#a8a8a8;
}

.gallery-list .list li:hover .thumb div {
  transform: scale(1.05);
}

@media(max-width:1200px) {
  .gallery-list .list .category {
    margin-bottom: 7px;
    font-size: 1.8rem;
  }
  
  .gallery-list .list .subject {
    font-size:2rem;
  }
  
  .gallery-list .list .data {
    font-size:1.6rem;
  }
}

@media(max-width:1024px){
  .gallery-list .list {
    margin:-18px;
  }
  
  .gallery-list .list li {
    padding:18px;
  }
  
  .gallery-list .list .cont {
    padding-top:25px;
  }
  
  .gallery-list .list .subject {
    margin-bottom:14px;
  }
}

@media(max-width:768px){
  .gallery-list .list {
    margin:-10px;
  }
  
  .gallery-list .list li {
    flex:0 0 50%;
    max-width:50%;
    padding:10px;
  }
  
  .gallery-list .list .cont {
    padding-top:20px;
  }
  
  .gallery-list .list .category {
    margin-bottom: 5px;
    font-size: 1.5rem;
  }
  
  .gallery-list .list .subject {
    font-size:1.7rem;
    margin-bottom:12px;
  }
  
  .gallery-list .list .data {
    font-size:1.4rem;
  }
}

@media(max-width:500px){
  .gallery-list .list {
    margin:-5px;
  }
  
  .gallery-list .list li {
    padding:5px;
  }
  
  .gallery-list .list .cont {
    padding-top:15px;
    margin-bottom: -1px;
  }
  
  .gallery-list .list .category {
    margin-bottom: 3px;
    font-size: 1.4rem;
  }
  
  .gallery-list .list .subject {
    font-size:1.5rem;
    margin-bottom:6px;
  }
  
  .gallery-list .list .data {
    font-size:1.3rem;
  }
}

/* View */
.basic-view .view_head {
  padding:0 0 17px;
}

.basic-view .view_head h3 {
  font-size:3.2rem;
  margin: -4px 0 33px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.basic-view .view_head .info {
  display: flex;
}

.basic-view .view_head .info li {
  font-size:1.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.basic-view .view_head .info li span {
  display: inline-block;
  margin-left: 12px;
  font-weight: 300;
  color: #a6a6a6;
}

.basic-view .view_area {
  min-height:986px;
  height: 100%;
  padding: 35px 66px 35px 0;
  border-top:2px solid #ddd;
  border-bottom:1px solid #7f7f7f;
}

.basic-view .view_area .img {
  width: 100%;
  margin-bottom: 20px;
}

.basic-view .view_area p {
  font-size:1.8rem;
  line-height: 1.55;
  color: #000;
  letter-spacing: -0.03em;
  margin-bottom: 9px;
}

.basic-view .view_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  width:240px;
  margin: 40px auto 0;
}

.basic-view .view_btns .button--black {
  width:100%;
  height:64px;
  background-color: #494949;
  font-size:2rem;
  font-weight: 500;
  color: #fff;
}

@media(max-width:1200px){
  .basic-view .view_head {
    padding:0 0 17px;
  }
  
  .basic-view .view_head h3 {
    font-size:2.6rem;
    margin: -4px 0 33px;
  }
  
  .basic-view .view_head .info li {
    font-size:1.6rem;
  }
  
  .basic-view .view_head .info li span {
    margin-left: 12px;
  }
  
  .basic-view .view_area {
    min-height:886px;
    padding: 35px 40px 35px 0;
  }
  
  .basic-view .view_area .img {
    margin-bottom: 20px;
  }
  
  .basic-view .view_area p {
    font-size:1.6rem;
    margin-bottom: 9px;
  }
  
  .basic-view .view_btns {
    width:220px;
    margin: 40px auto 0;
  }
  
  .basic-view .view_btns .button--black {
    height:60px;
    font-size:1.8rem;
  }
}

@media(max-width:1024px){
  .basic-view .view_head {
    padding:0 0 15px;
  }
  
  .basic-view .view_head h3 {
    font-size:2.2rem;
    margin: -4px 0 30px;
  }
  
  .basic-view .view_head .info li {
    font-size:1.6rem;
  }
  
  .basic-view .view_head .info li span {
    margin-left: 12px;
  }
  
  .basic-view .view_area {
    min-height:786px;
    padding: 30px 30px 30px 0;
  }
  
  .basic-view .view_area .img {
    margin-bottom: 18px;
  }
  
  .basic-view .view_area p {
    font-size:1.6rem;
    margin-bottom: 9px;
  }
  
  .basic-view .view_btns {
    width: 200px;
    margin: 35px auto 0;
  }
  
  .basic-view .view_btns .button--black {
    height:55px;
    font-size:1.8rem;
  }
}


@media(max-width:768px){
  .basic-view .view_head {
    padding:0 0 13px;
  }
  
  .basic-view .view_head h3 {
    font-size:2rem;
    margin: -3px 0 25px;
  }
  
  .basic-view .view_head .info li {
    font-size:1.4rem;
  }
  
  .basic-view .view_head .info li span {
    margin-left: 10px;
  }
  
  .basic-view .view_area {
    min-height:686px;
    padding: 25px 0;
  }
  
  .basic-view .view_area .img {
    margin-bottom: 16px;
  }
  
  .basic-view .view_area p {
    font-size:1.4rem;
    margin-bottom: 7px;
  }
  
  .basic-view .view_btns {
    width: 180px;
    margin: 30px auto 0;
  }
  
  .basic-view .view_btns .button--black {
    height:50px;
    font-size:1.5rem;
  }
}


@media(max-width:500px){
  .basic-view .view_head {
    padding:0 0 10px;
  }
  
  .basic-view .view_head h3 {
    font-size:1.8rem;
    margin: -3px 0 20px;
  }
  
  .basic-view .view_head .info li {
    font-size:1.3rem;
  }
  
  .basic-view .view_head .info li span {
    margin-left: 8px;
  }
  
  .basic-view .view_area {
    min-height:586px;
    padding: 20px 0;
  }
  
  .basic-view .view_area .img {
    margin-bottom: 14px;
  }
  
  .basic-view .view_area p {
    font-size:1.3rem;
    margin-bottom: 5px;
  }
  
  .basic-view .view_btns {
    width: 160px;
    margin: 25px auto 0;
  }
  
  .basic-view .view_btns .button--black {
    height:45px;
    font-size:1.4rem;
  }
}
/* --------------- E:Gallery --------------- */

/* ------------------- S : FAQ ------------------- */
.faq .list {
  border-top: 2px solid #2b8cbf;
}

.faq .list li {
  padding: 20px;
  border-bottom: 1px solid #adadad;
}

.faq .list .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq .list .faq-question .faq-question-wrap {
  display: flex;
  align-items: center;
}

.faq .list .faq-question i {
  display: block;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/icon/faq-icon.png');
}

.faq .list .faq-question .subject {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.faq .list .faq-question .arrow {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/icon/faq-arrow.png');
  transition: transform .3s ease-out;
}

.faq .list .faq-answer {
  height: 0;
  overflow: hidden;
  transition: all .3s ease-out;
  /* margin-top: 40px;/ */
}

.faq .list .faq-answer__wrap {
  display: flex;
}

.faq .list .faq-answer__wrap i {
  display: block;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/icon/faq-icon2.png');
}

.faq .list .faq-answer__wrap .context {
  width: calc(100% - 68px);  
  margin: 10px 0 11px;
  padding-right: 95px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1.77;
  color: #404040;
}

.faq .list li.on .faq-answer {
  height: auto;
  overflow: hidden;
  margin-top: 40px;
}

.faq .list li.on .faq-question .arrow {
  transform: rotate(-180deg);
}

@media(max-width:1200px) {
  .faq .list li {
    padding: 20px;
  }

  .faq .list .faq-question i {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  
  .faq .list .faq-question .subject {
    font-size: 1.8rem;
  }
  
  .faq .list .faq-question .arrow {
    width: 24px;
    height: 24px;
  }
  
  .faq .list li.on .faq-answer {
    margin-top: 35px;
  }

  
  .faq .list .faq-answer__wrap i {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  
  .faq .list .faq-answer__wrap .context {
    width: calc(100% - 60px);  
    padding-right: 85px;
    font-size: 1.6rem;
  }
}

@media(max-width:1024px) {
  .faq .list li {
    padding: 18px;
  }

  .faq .list .faq-question i {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }
  
  .faq .list .faq-question .subject {
    font-size: 1.8rem;
  }
  
  .faq .list .faq-question .arrow {
    width: 20px;
    height: 20px;
  }
  
  .faq .list li.on  .faq-answer {
    margin-top: 30px;
  }

  
  .faq .list .faq-answer__wrap i {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }
  
  .faq .list .faq-answer__wrap .context {
    width: calc(100% - 53px);  
    padding-right: 25px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .faq .list li {
    padding: 15px;
  }
  
  .faq .list .faq-question .faq-question-wrap {
    width: calc(100% - 20px);
  }

  .faq .list .faq-question i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .faq .list .faq-question .subject {
    width: calc(100% - 45px);
    font-size: 1.5rem;
  }
  
  .faq .list .faq-question .arrow {
    width: 15px;
    height: 15px;
  }
  
  .faq .list li.on .faq-answer {
    margin-top: 25px;
  }
  
  .faq .list .faq-answer__wrap i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .faq .list .faq-answer__wrap .context {
    width: calc(100% - 60px);  
    margin: 8px 0;
    padding-right: 20px;
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .faq .list li {
    padding: 10px;
  }

  .faq .list .faq-question .faq-question-wrap {
    width: calc(100% - 17px);
  }
  
  .faq .list .faq-question i {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }
  
  .faq .list .faq-question .subject {
    width: calc(100% - 35px);
    font-size: 1.3rem;
  }
  
  .faq .list .faq-question .arrow {
    width: 12px;
    height: 12px;
  }
  
  .faq .list li.on .faq-answer {
    margin-top: 20px;
  }
  
  .faq .list .faq-answer__wrap i {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }
  
  .faq .list .faq-answer__wrap .context {
    width: calc(100% - 45px);  
    padding-right: 12px;
    margin: 5px 0;
    font-size: 1.2rem;
  }
}


/* ------------------- E : FAQ ------------------- */

/* --------------- S:Examples Slide --------------- */
.examples .examples-list {
  position: relative;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.examples .examples-list .swiper-container {
  width: 100%;
  overflow: visible;
}

.examples .examples-list .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s ease-out;
}

.examples .examples-list .swiper-slide::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

.examples .examples-list .swiper-slide .thumbnail {
  padding-top: calc(315 / 540*100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #4c4c4c;
}

.examples .examples-list .swiper-slide .subject {
  width: 100%;
  height: 84px;
  padding: 28px 30px;
  background-color: #fff;
}

.examples .examples-list .swiper-slide .subject p {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  /* color: #a5a5a5; */
}

.examples .examples-list .swiper-slide-active::after,
.examples .examples-list .swiper-slide-next::after {
  display: none;
}

.examples .prev,
.examples .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 58px;
  height: 58px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.examples .prev {
  left: -80px;
}

.examples .next {
  right: -80px;
}

.examples .prev {
  background-image: url('/child/img/icon/example-prev.png');
}

.examples .next {
  background-image: url('/child/img/icon/example-next.png');
}

.examples .swiper-button-disabled {
  opacity: 0.3;
}

@media(min-width:1201px) {
  .examples .examples-list .swiper-slide-active:hover,
  .examples .examples-list .swiper-slide-next:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  }
  
}

@media(max-width:1400px) {
  .examples .prev {
    left: -30px;
  }

  .examples .next {
    right: -30px;
  }
}

@media(max-width:1200px) {
  .examples .examples-list {
    max-width: 1120px;
    width: 100%;
    padding-bottom: 10px;
  }
  
  .examples .examples-list .swiper-slide .subject {
    height: 84px;
    padding: 25px;
  }
  
  .examples .examples-list .swiper-slide .subject p {
    font-size: 2rem;
  }
  
  .examples .prev,
  .examples .next {
    width: 50px;
    height: 50px;
  }
  
  .examples .prev {
    left: 10px;
    transform: translate(-50%, -50%);
  }
  
  .examples .next {
    right: 10px;
    transform: translate(50%, -50%);
  }
  
  .examples .examples-list .swiper-slide-active,
  .examples .examples-list .swiper-slide-next {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  }
}


@media(max-width:1024px) {
  .examples .examples-list {
    max-width: 1120px;
    width: 100%;
    padding-bottom: 10px;
  }
  
  .examples .examples-list .swiper-slide .subject {
    height: auto;
    padding: 20px;
  }
  
  .examples .examples-list .swiper-slide .subject p {
    font-size: 2rem;
  }
  
  .examples .prev,
  .examples .next {
    width: 45px;
    height: 45px;
  }
  
  .examples .prev {
    left: 10px;
    transform: translate(-50%, -50%);
  }
  
  .examples .next {
    right: 10px;
    transform: translate(50%, -50%);
  }
}

@media(max-width:768px) {
  .examples .examples-list {
    max-width: 1120px;
    width: 100%;
    padding: 0 15px 10px;
  }
  
  .examples .examples-list .swiper-slide .subject {
    height: auto;
    padding: 15px;
  }
  
  .examples .examples-list .swiper-slide .subject p {
    font-size: 1.7rem;
  }
  
  .examples .prev,
  .examples .next {
    width: 40px;
    height: 40px;
  }
  
  .examples .prev {
    left: 10px;
    transform: translate(-50%, -50%);
  }
  
  .examples .next {
    right: 10px;
    transform: translate(50%, -50%);
  }
}

@media(max-width:500px) {
  .examples .examples-list {
    max-width: 1120px;
    width: 100%;
    padding: 0 30px 10px;
  }
  
  .examples .examples-list .swiper-slide .subject {
    height: auto;
    padding: 10px;
  }
  
  .examples .examples-list .swiper-slide .subject p {
    font-size: 1.5rem;
  }
  
  .examples .prev,
  .examples .next {
    display: none;
  }
  
  .examples .examples-list .swiper-slide-next::after {
    display: block;
  }
  
  .examples .examples-list .swiper-slide-next {
    box-shadow: none;
  }
}
/* --------------- E:Examples Slide --------------- */


.bbs-modal .modal-content .swiper-container {
  max-width: 900px;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.bbs-modal .modal-content .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
}

.bbs-modal .modal-content .swiper-container .swiper-slide .thumbnail {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #5c5c5c;
}

.bbs-modal .modalControls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  max-width: 1130px;
  width: 100%;
  padding: 0 15px;
  z-index: 10;
}

.bbs-modal .modalControls .prev, 
.bbs-modal .modalControls .next {
  /* position: absolute; */
  /* top: 50%;
  transform: translateY(-50%);
  z-index: 10; */
  width: 58px;
  height: 58px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.bbs-modal .modalControls .prev {
  left: 15px;
  background-image: url('/child/img/icon/example-modal-prev.png');
}

.bbs-modal .modalControls .next {
  right: 15px;
  background-image: url('/child/img/icon/example-modal-next.png');
}

@media(max-width:1200px) {
  .bbs-modal .modalControls .prev, 
  .bbs-modal .modalControls .next {
    width: 50px;
    height: 50px;
  }
  
  .bbs-modal .modalControls .prev {
    left: 35px;
  }
  
  .bbs-modal .modalControls .next {
    right: 35px;
  }
}

@media(max-width:1024px) {
  .bbs-modal .modalControls .prev, 
  .bbs-modal .modalControls .next {
    width: 45px;
    height: 45px;
  }
}

@media(max-width:768px) {
  .bbs-modal .modalControls .prev, 
  .bbs-modal .modalControls .next {
    width: 40px;
    height: 40px;
  }
}

@media(max-width:500px) {
  .bbs-modal .modalControls .prev, 
  .bbs-modal .modalControls .next {
    width: 35px;
    height: 35px;
  }
}
/* --------------- E:Examples Slide Modal --------------- */

/* --------------- S:Examples Slide Modal Blind--------------- */
.buildingFilm  .bbs-modal .modal-content .swiper-container .swiper-slide .thumbnail {
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #5c5c5c;
}
/* --------------- E:Examples Slide Modal Blind--------------- */

/* --------------- S:Examples Slide Modal Blind--------------- */
.filmBlind .bbs-modal .modal-container {
  max-width: 630px;
}

.filmBlind .bbs-modal .modal-content .swiper-container .swiper-slide .thumbnail {
  width: 100%;
  aspect-ratio: 0.712 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #5c5c5c;
}
/* --------------- E:Examples Slide Modal Blind--------------- */

/* --------------- S:Examples Slide Building --------------- */
.buildingFilm  .examples .examples-list {
  max-width: 1080px;
}

.buildingFilm .examples .examples-list .swiper-slide .thumbnail {
  padding-top: calc(520 / 520* 100%);
}

.buildingFilm .examples .examples-list .prev {
  left: -98px;
}

.buildingFilm .examples .examples-list .next {
  right: -98px;
}

@media(max-width:1200px){
  .buildingFilm .examples .examples-list .prev {
    left: 10px;
    transform: translate(-50%, -50%);
  }
  
  .buildingFilm .examples  .examples-list.next {
    right: 10px;
    transform: translate(50%, -50%);
  }
}

/* --------------- E:Examples Slide Building--------------- */

/* --------------- S:Examples Slide Blind--------------- */
.filmBlind .examples .examples-list {
  max-width: 1080px;
}

.filmBlind .examples .examples-list .swiper-slide {
  border-radius: 0;
}

.filmBlind .examples .examples-list .swiper-slide .thumbnail {
  padding-top: calc(728 / 520* 100%);
}

.filmBlind .examples .examples-list .swiper-slide::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.filmBlind .examples .examples-list .swiper-slide-active::after {
  display: none;
}

@media(min-width:1201px) {
  .filmBlind .examples .examples-list .swiper-slide-active:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  }
}
/* --------------- E:Examples Slide Blind--------------- */

/* --------------- E:Warranty Doc--------------- */
.warrantyDoc {
  padding: 0 0 80px;
}

/* .warrantyDoc .table {
  padding: 0 0 50px;
} */

@media(max-width:1200px) {
  .warrantyDoc {
    /* padding: 60px 80px; */
    padding: 0 0 60px;
  }
  
  /* .warrantyDoc .table {
    padding: 0 0 45px;
  } */
}

@media(max-width:1024px) {
  .warrantyDoc {
    /* padding: 40px 50px; */
    padding: 0 0 40px;
  }
  
  /* .warrantyDoc .table {
    padding: 0 0 40px;
  } */
}

@media(max-width:768px) {
  .warrantyDoc {
    /* padding: 30px; */
    padding: 0 0 30px;
  }
  
  /* .warrantyDoc .table {
    padding: 0 0 35px;
  } */
}

@media(max-width:500px) {
  .warrantyDoc {
    /* padding: 20px 15px; */
    padding: 0 0 20px;
  }
  
  /* .warrantyDoc .table {
    padding: 0 0 30px;
  } */
}
/* --------------- E:Warranty Doc--------------- */

/* --------------- S:estimate_form --------------- */
.estimate-form .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.estimate-form .wrap .row {
  max-width: 620px;
  width: calc(50% - 20px);
}

.estimate-form .form-table {
  margin-bottom: 76px;
}

.estimate-form .form-table:last-of-type {
  margin-bottom: 0;
}

.estimate-form .form-table > .box {
  width: 100%;
  padding: 26px 33px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  border: 1px solid #cccccc;
}

.estimate-form .form-table > .box p {
  font-size: 1.6rem;
  line-height: 1.56;
}

.estimate-form .form-table > .box p span {
  color: #ff3333;
}

.estimate-form .th {
  font-size: 1.8rem;
  font-weight: 500;
  color: #383838;
}

.estimate-form .form-table--01 .wrap {
  margin-bottom: 22px;
}

.estimate-form .form-table--01 .wrap:nth-of-type(2) {
  margin-bottom: 40px;
}

.estimate-form .form-table--01 .row {
  display: flex;
  align-items: center;
  height: 42px;
}

.estimate-form .form-table--01 .row .th {
  width: 120px;
  padding-right: 15px;
}

.estimate-form .form-table--01 .row .th span, 
.estimate-form .form-table--02 .row .th span {
  color: #ff3333;
}

.estimate-form .form-table--01 .row .td {
  width: calc(100% - 120px);
  height: 100%;
}

.estimate-form .form-table--01 .row .td input{
  width: 100%;
  height: 100%;
  padding: 0 15px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.estimate-form .form-table--01 .row .td #date {
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px 20px;
  background-image: url('/child/img/icon/calender.png');
}

.estimate-form .form-table--01 .row .td .ui-datepicker-trigger {
  display: none;
}

/* .estimate-form .form-table--01 .row .td .flatpickr-input.flatpickr-mobile {
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px 20px;
  background-image: url('/child/img/icon/calender.png');
} */

.estimate-form .form-table--01 .box p {
  position: relative;
  padding-left: 11px;
}

.estimate-form .form-table--01 .box p::after {
  content: "*";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.estimate-form .form-table--01 .box p:first-of-type::after{
  color: #ff3333;
} 

.estimate-form .form-table--02 {
  margin-bottom: 36px;
}

.estimate-form .form-table--02 .wrap {
  margin-bottom: 39px;
}

.estimate-form .form-table--02 .th {
  margin-bottom: 19px;
}

.estimate-form .form-table--02 .row .td {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #2c9dd8;
  border-radius: 24px;
}

.estimate-form .form-table--02 label {
  position: relative;
  width: 33.333%;
  height: 46px;
}

.estimate-form .form-table--02 .row:first-of-type label {
  width: 50%;
  
}

.estimate-form .form-table--02 label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.estimate-form .form-table--02 .row .td span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #797979;
}

.estimate-form .form-table--02 label input[type="radio"]:checked ~ span {
  background-color: #2c9dd8;
  font-weight: 600;
  color: #fff;
}

.estimate-form .form-table--02 .box {
  display: flex;
  align-items: center;
}

.estimate-form .form-table--02 .box i {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 17px;
  background-image: url('/child/img/sub/construction/estimate/img01.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.estimate-form .form-table--02 .box .text {
  width: calc(100% - 49px);
}

.estimate-form .form-table--03 {
  margin-bottom: 99px;
}

.estimate-form .form-table--03 .row {
  margin-bottom: 37px;
}

.estimate-form .form-table--03 .th {
  margin-bottom: 36px;
}

.estimate-form .form-table--03 .list {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin: -4px;
}

.estimate-form .form-table--03 .list .item {
  width: 14.285%;
  padding: 4px;
}

.estimate-form .form-table--03 .list .item .con {
  max-width: 176px;
  width: 100%;
}

.estimate-form .form-table--03 .list .item .title {
  margin-bottom: 12px;
  font-size: 1.6rem;
  text-align: center;
}

.estimate-form .form-table--03 .list .item .title p {
  font-weight: 700;
  color: #2b8cbf;
}

.estimate-form .form-table--03 .list .item .title span {
  display: block;
  font-weight: 600;
}

.estimate-form .form-table--03 .list .item .box {
  width: 100%;
  margin-bottom: 8px;
}

.estimate-form .form-table--03 .list .box:last-of-type {
  margin-bottom: 0;
}

.estimate-form .form-table--03 .list .box label {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
}

.estimate-form .form-table--03 .list label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.estimate-form .form-table--03 .list label .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  border: 1px solid #8e8e8e;
  text-align: center;
  border-radius: 5px;
}

.estimate-form .form-table--03 .list label .text p {
  font-size: 2rem;
  font-weight: 600;
  color: #797979;
  transition: all .2s ease-out;
}

.estimate-form .form-table--03 .list label .text span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  display: none;
  transition: all .2s ease-out;
}

.estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text {
  background-color: #2b8cbf;
  border-color: #2b8cbf;
} 

.estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text p {
  font-size: 1.6rem;
  color: #fff;
} 

.estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text span {
  display: block;
} 

.estimate-form .form-table--03 > .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  margin-top: 80px;
  border-top: 1px solid #797979;
  border-bottom: 2px solid #5f5f5f;
  border-right: none;
  border-left: none;
  background-color: #fff;
  border-radius: 0;
}

.estimate-form .form-table--03 > .box > p {
  position: relative;
  padding-left: 12px;
  font-size: 1.6rem;
  color: #ff3333;
}

.estimate-form .form-table--03 > .box > p::after {
  content: "*";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.estimate-form .form-table--03 .total-price {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.estimate-form .form-table--03 .total-price p {
  min-width: 140px;
  margin-left: 120px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: right;
}

.estimate-form .form-table--03 .total-price p span,
.estimate-form .form-table--03 .total-price p input {
  font-weight: 700;
  color: #191919;
}

.estimate-form .form-table--03 .total-price p input {
  border: none;
  height: 100%;
  text-align: right;
}

.estimate-form .form-table--04 .th {
  margin-bottom: 33px;
}

.estimate-form .form-table--04 {
  margin-bottom: 42px;
}

.estimate-form .estimate-agree {
  margin-bottom: 82px;
}

.estimate-form .estimate-inner {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.estimate-form .estimate-inner:last-of-type {
  margin-bottom: 0;
}

.estimate-form .estimate-inner input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.estimate-form .estimate-inner i {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/child/img/icon/agree-check.png');
  margin: -3px 10px 0 0;
  cursor: pointer;
}

.estimate-form .estimate-inner span {
  font-size: 1.8rem;
  line-height: 1;
}

.estimate-form .estimate-inner button {
  font-size: 1.8rem;
  line-height: 1;
  color: #3636ff;
  text-decoration: underline;
  position: relative;
  z-index:99;
}

.estimate-form .estimate-inner input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/icon/agree-checked.png');
}

.estimate-form .button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

  gap: 0 20px;
}

.estimate-form .button-wrap .button {
  width: 240px;
  height: 56px;
  background-color: #a9a9a9;
  border-radius: 28px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}

.estimate-form .button-wrap .button--submit {
  background-color: #2b8cbf;
}

@media(max-width:1200px){
  .estimate-form .form-table > .box p {
    font-size: 1.5rem;
  }

  .estimate-form .th {
    font-size: 1.6rem;
  }
  
  .estimate-form .form-table--01 .row .th {
    width: 105px;
    padding-right: 15px;
  }
  
  .estimate-form .form-table--01 .row .td {
    width: calc(100% - 120px);
    height: 100%;
  }
  
  .estimate-form .form-table--01 .row .td input{
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--02 .row .td span {
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--03 {
    margin-bottom: 90px;
  }
  
  .estimate-form .form-table--03 .list .item .title {
    font-size: 1.5rem;
  }

  .estimate-form .form-table--03 .list .box label {
    height: 50px;
  }
  
  .estimate-form .form-table--03 .list label .text p {
    font-size: 1.8rem;
  }
  
  .estimate-form .form-table--03 .list label .text span {
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text p {
    font-size: 1.5rem;
  } 

  .estimate-form .form-table--03 > .box > p {
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--03 .total-price {
    font-size: 2rem;
  }
  
  .estimate-form .form-table--03 .total-price p {
    min-width: 125px;
    margin-left: 105px;
    font-size: 2rem;
  }

  .estimate-form .estimate-inner span {
    width: calc(100% - 30px);
    font-size: 1.6rem;
  }
  
  .estimate-form .estimate-inner button {
    font-size: 1.6rem;
  }
  
  .estimate-form .button-wrap .button {
    width: 225px;
    height: 50px;
    font-size: 1.6rem;
  }
}

@media(max-width:1024px){
  .estimate-form .wrap {
    gap: 0 35px;
  }
  
  .estimate-form .wrap .row {
    width: calc(50% - 17.5px);
  }
  
  .estimate-form .form-table {
    margin-bottom: 65px;
  }
/*   
  .estimate-form .form-table:last-of-type {
    margin-bottom: 0;
  } */
  
  .estimate-form .form-table > .box {
    padding: 20px 25px;
  }
  
  /* .estimate-form .form-table > .box p {
    font-size: 1.5rem;
  }

  .estimate-form .th {
    font-size: 1.6rem;
  } */
  
  .estimate-form .form-table--01 .wrap {
    margin-bottom: 15px;
  }
  
  .estimate-form .form-table--01 .wrap:nth-of-type(2) {
    margin-bottom: 35px;
  }
  
  .estimate-form .form-table--01 .row {
    height: 40px;
  }
  
  .estimate-form .form-table--01 .row .th {
    width: 95px;
    padding-right: 10px;
  }
  
  .estimate-form .form-table--01 .row .td {
    width: calc(100% - 105px);
  }
  
  /* .estimate-form .form-table--01 .row .td input{
    font-size: 1.5rem;
  } */
  
  .estimate-form .form-table--01 .row .td #date {
    background-position: right 15px center;
    background-size: 16px 18px;
  }
  
  /* .estimate-form .form-table--01 .row .td .flatpickr-input.flatpickr-mobile {
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px 20px;
    background-image: url('/child/img/icon/calender.png');
  } */
  
  /* .estimate-form .form-table--01 .box p {
    padding-left: 11px;
  } */
  
  .estimate-form .form-table--02 {
    margin-bottom: 30px;
  }
  
  .estimate-form .form-table--02 .wrap {
    margin-bottom: 35px;
  }
  
  .estimate-form .form-table--02 .th {
    margin-bottom: 15px;
  }
  
  /* .estimate-form .form-table--02 .row .td {
    border-radius: 24px;
  } */
  
  .estimate-form .form-table--02 label {
    width: 33.333%;
    height: 40px;
  }
  
  /* .estimate-form .form-table--02 .row:first-of-type label {
    width: 50%;
  } */
  
  /* .estimate-form .form-table--02 .row .td span {
    border-radius: 24px;
    font-size: 1.5rem;
  } */
  
  .estimate-form .form-table--02 .box i {
    width: 25px;
    height: 25px;
    margin-right: 15px;
  }
  
  .estimate-form .form-table--02 .box .text {
    width: calc(100% - 45px);
  }
  
  .estimate-form .form-table--03 {
    margin-bottom: 80px;
  }
  
  .estimate-form .form-table--03 .row {
    margin-bottom: 35px;
  }
  
  .estimate-form .form-table--03 .th {
    margin-bottom: 35px;
  }
  
  /* .estimate-form .form-table--03 .list {
    margin: -4px;
  }
  
  .estimate-form .form-table--03 .list .item {
    width: 14.285%;
    padding: 4px;
  }
  
  .estimate-form .form-table--03 .list .item .con {
    max-width: 176px;
    width: 100%;
  }
  
  .estimate-form .form-table--03 .list .item .title {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--03 .list .item .box {
    margin-bottom: 8px;
  }
  
  .estimate-form .form-table--03 .list .box:last-of-type {
    margin-bottom: 0;
  } */
  
  .estimate-form .form-table--03 .list .box label {
    height: 45px;
  }
  
  /* .estimate-form .form-table--03 .list label .text p {
    font-size: 1.8rem;
  }
  
  .estimate-form .form-table--03 .list label .text span {
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text p {
    font-size: 1.5rem;
  }  */

  .estimate-form .form-table--03 > .box {
    padding: 15px 0;
    margin-top: 70px;
  }
  
  .estimate-form .form-table--03 > .box > p {
    width: calc(100% - 350px);
    padding-left: 12px;
    font-size: 1.5rem;
  }
  
  .estimate-form .form-table--03 .total-price {
    font-size: 2rem;
  }
  
  .estimate-form .form-table--03 .total-price p {
    min-width: 110px;
    margin-left: 90px;
    /* font-size: 2rem; */
  }

  .estimate-form .form-table--04 .th {
    margin-bottom: 30px;
  }
  
  .estimate-form .form-table--04 {
    margin-bottom: 40px;
  }
  
  .estimate-form .estimate-agree {
    margin-bottom: 70px;
  }
  
  .estimate-form .estimate-inner {
    margin-bottom: 15px;
  }

  .estimate-form .estimate-inner i {
    width: 18px;
    height: 18px;
  }
  
  .estimate-form .estimate-inner span {
    width: calc(100% - 23px);
    font-size: 1.6rem;
  }
  
  .estimate-form .estimate-inner button {
    font-size: 1.6rem;
  }

  .estimate-form .button-wrap {
    gap: 0 15px;
  }
  
  .estimate-form .button-wrap .button {
    width: 210px;
    height: 45px;
    /* border-radius: 28px; */
    /* font-size: 1.6rem; */
  }
  
}

@media(max-width:768px){
  .estimate-form .wrap {
    gap: 20px 0;
  }
  
  .estimate-form .wrap .row {
    max-width: 100%;
    width: 100%;
  }
  
  .estimate-form .form-table {
    margin-bottom: 55px;
  }
  /*   
  .estimate-form .form-table:last-of-type {
    margin-bottom: 0;
  } */
  
  .estimate-form .form-table > .box {
    padding: 15px 20px;
  }
  
  .estimate-form .form-table > .box p {
    font-size: 1.3rem;
  }

  .estimate-form .th {
    font-size: 1.4rem;
  }
  
  .estimate-form .form-table--01 .wrap {
    margin-bottom: 20px;
  }
  
  .estimate-form .form-table--01 .wrap:nth-of-type(2) {
    margin-bottom: 30px;
  }
  
  .estimate-form .form-table--01 .row {
    height: 35px;
  }
  
  .estimate-form .form-table--01 .row .th {
    width: 85px;
    padding-right: 10px;
  }
  
  .estimate-form .form-table--01 .row .td {
    width: calc(100% - 95px);
  }
  
  .estimate-form .form-table--01 .row .td input{
    padding: 0 12px;
    font-size: 1.3rem;
  }
  
  .estimate-form .form-table--01 .row .td #date {
    background-position: right 12px center;
    background-size: 15px 16px;
  }
  
  /* .estimate-form .form-table--01 .row .td .flatpickr-input.flatpickr-mobile {
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px 20px;
    background-image: url('/child/img/icon/calender.png');
  } */
  
  .estimate-form .form-table--01 .box p {
    padding-left: 10px;
  }
  
  .estimate-form .form-table--02 {
    margin-bottom: 25px;
  }
  
  .estimate-form .form-table--02 .wrap {
    margin-bottom: 30px;
  }
  
  .estimate-form .form-table--02 .th {
    margin-bottom: 12px;
  }
  
  .estimate-form .form-table--02 .th.marker,
  .estimate-form .form-table--03 .th.marker  {
    display: flex;
    align-items: center;
    gap: 0 8px;
  }
  
  .estimate-form .form-table--02 .th.marker::before,
  .estimate-form .form-table--03 .th.marker::before {
    content: "";
    display: block;
    width: 2px;
    height: 18px;
    background-color: #2b8cbf;
  }
  
  /* .estimate-form .form-table--02 .row .td {
    border-radius: 24px;
  } */
  
  .estimate-form .form-table--02 label {
    width: 33.333%;
    height: 35px;
  }
  
  /* .estimate-form .form-table--02 .row:first-of-type label {
    width: 50%;
  } */
  
  .estimate-form .form-table--02 .row .td span {
    /* border-radius: 24px; */
    font-size: 1.3rem;
  }
  
  .estimate-form .form-table--02 .box i {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  
  .estimate-form .form-table--02 .box .text {
    width: calc(100% - 40px);
  }
  
  .estimate-form .form-table--03 {
    margin-bottom: 70px;
  }
  
  .estimate-form .form-table--03 .row {
    margin-bottom: 30px;
  }
  
  .estimate-form .form-table--03 .th {
    margin-bottom: 30px;
  }
  
  .estimate-form .form-table--03 .list {
    /* margin: -4px; */
    gap: 10px 0;
  }
  
  .estimate-form .form-table--03 .list .item {
    width: 25%;
    padding: 4px;
  }
  
  /* .estimate-form .form-table--03 .list .item .con {
    max-width: 176px;
    width: 100%;
  } */
  
  .estimate-form .form-table--03 .list .item .title {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
/*   
  .estimate-form .form-table--03 .list .item .box {
    margin-bottom: 8px;
  } */
  
  .estimate-form .form-table--03 .list .box label {
    height: 40px;
  }
  
  .estimate-form .form-table--03 .list label .text p {
    font-size: 1.6rem;
  }
  
  .estimate-form .form-table--03 .list label .text span {
    font-size: 1.3rem;
  }
  
  .estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text p {
    font-size: 1.3rem;
  } 

  .estimate-form .form-table--03 > .box {
    padding: 12px 0;
    margin-top: 60px;
  }
  
  .estimate-form .form-table--03 > .box > p {
    width: calc(100% - 350px);
    padding-left: 10px;
    font-size: 1.3rem;
  }
  
  .estimate-form .form-table--03 .total-price {
    font-size: 1.8rem;
  }
  
  .estimate-form .form-table--03 .total-price p {
    min-width: 90px;
    margin-left: 50px;
    font-size: 1.8rem;
  }

  .estimate-form .form-table--04 .th {
    margin-bottom: 20px;
  }
  
  .estimate-form .form-table--04 {
    margin-bottom: 35px;
  }
  
  .estimate-form .estimate-agree {
    margin-bottom: 60px;
  }
  
  .estimate-form .estimate-inner {
    margin-bottom: 12px;
  }

  .estimate-form .estimate-inner i {
    width: 15px;
    height: 15px;
    margin: -2px 8px 0 0;
  }
  
  .estimate-form .estimate-inner span {
    font-size: 1.4rem;
  }
  
  .estimate-form .estimate-inner button {
    font-size: 1.4rem;
  }

  .estimate-form .button-wrap {
    gap: 0 12px;
  }
  
  .estimate-form .button-wrap .button {
    width: 195px;
    height: 40px;
    /* border-radius: 28px; */
    font-size: 1.4rem;
  }
  
}


@media(max-width:500px){
  .estimate-form .wrap {
    gap: 15px 0;
  }
  
  .estimate-form .form-table {
    margin-bottom: 45px;
  }
  /*   
  .estimate-form .form-table:last-of-type {
    margin-bottom: 0;
  } */
  
  .estimate-form .form-table > .box {
    padding: 10px 15px;
  }
  
  .estimate-form .form-table > .box p {
    font-size: 1.1rem;
  }

  .estimate-form .th {
    font-size: 1.2rem;
  }
  
  .estimate-form .form-table--01 .wrap {
    margin-bottom: 15px;
  }
  
  .estimate-form .form-table--01 .wrap:nth-of-type(2) {
    margin-bottom: 25px;
  }
  
  .estimate-form .form-table--01 .row {
    height: 30px;
  }
  
  .estimate-form .form-table--01 .row .th {
    width: 80px;
    padding-right: 10px;
  }
  
  .estimate-form .form-table--01 .row .td {
    width: calc(100% - 90px);
  }
  
  .estimate-form .form-table--01 .row .td input{
    padding: 0 10px;
    font-size: 1.1rem;
  }
  
  .estimate-form .form-table--01 .row .td #date {
    background-position: right 10px center;
    background-size: 14px 15px;
  }
  
  /* .estimate-form .form-table--01 .row .td .flatpickr-input.flatpickr-mobile {
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px 20px;
    background-image: url('/child/img/icon/calender.png');
  } */
  
  .estimate-form .form-table--01 .box p {
    padding-left: 10px;
  }
  
  .estimate-form .form-table--02 {
    margin-bottom: 20px;
  }
  
  .estimate-form .form-table--02 .wrap {
    margin-bottom: 25px;
  }
  
  .estimate-form .form-table--02 .th {
    margin-bottom: 10px;
  }
  
  .estimate-form .form-table--02 .th.marker,
  .estimate-form .form-table--03 .th.marker  {
    gap: 0 6px;
  }
  
  .estimate-form .form-table--02 .th.marker::before,
  .estimate-form .form-table--03 .th.marker::before {
    width: 2px;
    height: 15px;
  }
  
  /* .estimate-form .form-table--02 .row .td {
    border-radius: 24px;
  } */
  
  .estimate-form .form-table--02 label {
    width: 33.333%;
    height: 30px;
  }
  
  /* .estimate-form .form-table--02 .row:first-of-type label {
    width: 50%;
  } */
  
  .estimate-form .form-table--02 .row .td span {
    /* border-radius: 24px; */
    font-size: 1.1rem;
  }
  
  .estimate-form .form-table--02 .box i {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  
  .estimate-form .form-table--02 .box .text {
    width: calc(100% - 28px);
  }
  
  .estimate-form .form-table--03 {
    margin-bottom: 60px;
  }
  
  .estimate-form .form-table--03 .row {
    margin-bottom: 25px;
  }
  
  .estimate-form .form-table--03 .th {
    margin-bottom: 15px;
  }
  
  .estimate-form .form-table--03 .list {
    margin: -2px;
    gap: 8px 0;
  }
  
  .estimate-form .form-table--03 .list .item {
    width: 25%;
    padding: 2px;
  }
  
  /* .estimate-form .form-table--03 .list .item .con {
    max-width: 176px;
    width: 100%;
  } */
  
  .estimate-form .form-table--03 .list .item .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
/*   
  .estimate-form .form-table--03 .list .item .box {
    margin-bottom: 8px;
  } */
  
  .estimate-form .form-table--03 .list .box label {
    height: 35px;
  }
  
  .estimate-form .form-table--03 .list label .text p {
    font-size: 1.4rem;
  }
  
  .estimate-form .form-table--03 .list label .text span {
    font-size: 1.1rem;
  }
  
  .estimate-form .form-table--03 .list label input[type="radio"]:checked ~ .text p {
    font-size: 1.1rem;
  } 

  .estimate-form .form-table--03 > .box {
    flex-direction: column;
    gap: 10px 0;
    padding: 10px 0;
    margin-top: 50px;
  }
  
  .estimate-form .form-table--03 > .box > p {
    width: 100%;
    padding-left: 10px;
    font-size: 1.1rem;
  }
  
  .estimate-form .form-table--03 .total-price {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.6rem;
  }
  
  .estimate-form .form-table--03 .total-price p {
    min-width: 70px;
    margin-left: 30px;
    font-size: 1.6rem;
  }

  .estimate-form .form-table--04 .th {
    margin-bottom: 20px;
  }
  
  .estimate-form .form-table--04 {
    margin-bottom: 30px;
  }
  
  .estimate-form .estimate-agree {
    margin-bottom: 50px;
  }
  
  .estimate-form .estimate-inner {
    margin-bottom: 10px;
  }

  .estimate-form .estimate-inner i {
    width: 13px;
    height: 13px;
    margin: 0 7px 0 0;
  }
  
  .estimate-form .estimate-inner span {
    width: calc(100% - 20px);
    font-size: 1.2rem;
  }
  
  .estimate-form .estimate-inner button {
    font-size: 1.2rem;
  }

  .estimate-form .button-wrap {
    gap: 0 10px;
  }
  
  .estimate-form .button-wrap .button {
    width: 180px;
    height: 35px;
    /* border-radius: 28px; */
    font-size: 1.2rem;
  }
  
}
/* --------------- E:estimate_form --------------- */

/* --------------- S:estimate_List --------------- */
.basic-list-estimate .tr {
  width: 100%;
}

.basic-list-estimate .tr label {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #c8c8c8;
}

.basic-list-estimate .tr label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.estimate-form .form-table--04 .basic-list-estimate .th {
  margin-bottom: 0;
}

.basic-list-estimate .table .th,
.basic-list-estimate .table .td {
  text-align: center;
  padding: 17px 15px 18px;
  font-size: 1.8rem;
}

.basic-list-estimate .table .td p {
  font-size: 1.8rem;
}

.basic-list-estimate .table .th {
  padding: 22px 15px 21px;
  font-weight: 500;
}

.basic-list-estimate .table .td.subject {
  text-align: left;
  padding-left: 40px;
}

.basic-list-estimate .table .no {
  max-width: 128px;
  width: 10%;
}

.basic-list-estimate .table .no i {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/child/img/sub/construction/estimate/list-radio.png');
}

.basic-list-estimate .tr label input[type="radio"]:checked ~ .no i {
  background-image: url('/child/img/sub/construction/estimate/list-radio-checked.png');
}

.basic-list-estimate .table .name {
  max-width: 180px;
  width: 14.062%;
}

.basic-list-estimate .table .subject {
  max-width: 773px;
  width: 60.859%;
}

.basic-list-estimate .table .tel {
  max-width: 199px;
  width: 15.546%;
}

@media(max-width:1200px) {
  .basic-list-estimate .table .th,
  .basic-list-estimate .table .td {
    font-size: 1.6rem;
    padding: 17px 15px 18px;
  }
  
  .basic-list-estimate .table .td p {
    font-size: 1.6rem;
  }
  
  .basic-list-estimate .table .th {
    padding: 22px 15px 21px;
  }
  
  .basic-list-estimate .table .td.subject {
    padding-left: 35px;
  }
  
  .basic-list-estimate .table .no {
    max-width: 128px;
    width: 10%;
  }
  
  .basic-list-estimate .table .no i {
    width: 14px;
    height: 14px;
    margin: 0 auto;
  }
  
  .basic-list-estimate .table .name {
    max-width: 180px;
    width: 14.062%;
  }
  
  .basic-list-estimate .table .subject {
    max-width: 773px;
    width: 60.859%;
  }
  
  .basic-list-estimate .table .tel {
    max-width: 199px;
    width: 15.546%;
  }
}

@media(max-width:1024px) {
  .basic-list-estimate .table .th,
  .basic-list-estimate .table .td {
    padding: 15px 10px;
  }
  
  .basic-list-estimate .table .th {
    padding: 20px 10px;
  }
  
  .basic-list-estimate .table .td.subject {
    padding-left: 30px;
  }
  
  .basic-list-estimate .table .no {
    max-width: 128px;
    width: 10%;
  }
  
  .basic-list-estimate .table .no i {
    width: 14px;
    height: 14px;
    margin: 0 auto;
  }
  
  .basic-list-estimate .table .name {
    width: 15.5%;
  }
  
  .basic-list-estimate .table .subject {
    width: 55%;
  }
  
  .basic-list-estimate .table .tel {
    width: 19.5%;
  }
}

@media(max-width:768px) {
  .basic-list-estimate .table {
    width: 840px;
  }
  
  .basic-list-estimate .table .th,
  .basic-list-estimate .table .td {
    padding: 15px 10px;
    font-size: 1.4rem;
  }
  
  .basic-list-estimate .table .td p {
    font-size: 1.4rem;
  }
  
  .basic-list-estimate .table .th {
    padding: 15px 10px;
  }
  
  .basic-list-estimate .table .td.subject {
    padding-left: 25px;
  }
  
  .basic-list-estimate .table .no {
    width: 8%;
  }
  
  .basic-list-estimate .table .no i {
    width: 12px;
    height: 12px;
  }
  
  .basic-list-estimate .table .name {
    width: 15.5%;
  }
  
  .basic-list-estimate .table .subject {
    width: 57%;
  }
  
  .basic-list-estimate .table .tel {
    width: 19.5%;
  }
}

@media(max-width:670px) {
  .basic-list-estimate {
    overflow: auto;
  }
  
  .basic-list-estimate .table {
    width: 640px;
  }
}

@media(max-width:500px) {
  .basic-list-estimate .table {
    width: 560px;
  }
  
  .basic-list-estimate .table .td {
    font-size: 1.2rem;
    padding: 12px 10px;
  }
  
  .basic-list-estimate .table .th p,
  .basic-list-estimate .table .td p {
    font-size: 1.2rem;
  }
  
  .basic-list-estimate .table .th {
    padding: 12px 10px;
  }
  
  .basic-list-estimate .table .td.subject {
    padding-left: 20px;
  }
  
  .basic-list-estimate .table .no i {
    width: 12px;
    height: 12px;
  }
}

/* --------------- E:estimate_List --------------- */

/* --------------- S:Warranty_List --------------- */

.bbs-warranty .util {
  margin-bottom: 20px;
}

.basic-list-warranty .tr {
  border-bottom: 1px solid #c8c8c8;
}

.basic-list-warranty .tr,
.basic-list-warranty .tr a {
  display: flex;
  align-items: center;
  width: 100%;
}

.basic-list-warranty .table .th {
  padding: 21px 15px;
}

.basic-list-warranty .table .td {
  padding: 18px 15px 17px;
}

.basic-list-warranty .tbody .tr {
  background-color: #f9f9f9;  
}

.basic-list-warranty .table .no {
  max-width: 95px;
  width: 7.421%;
}

.basic-list-warranty .table .reissue {
  max-width: 206px;
  width: 16.093%;
}

.basic-list-warranty .table .client {
  max-width: 135px;
  width: 10.546%;
}

.basic-list-warranty .table .warranty-num {
  max-width: 289px;
  width: 22.578%;
}

.basic-list-warranty .table .store {
  max-width: 270px;
  width: 21.093%;
}

.basic-list-warranty .table .data {
  max-width: 280px;
  width: 21.875%;
  margin-left: 5px;
}

.bbs-warranty .pagination {
  margin-top: 40px;
}

.bbs-warranty .pagination a {
  background-color: transparent;
}

.bbs-warranty .pagination a.current {
  background-color: #2b8cbf;
}

/* 2024-11-01 추가 */
.basic-list-warranty .table .car-type {
  max-width: 135px;
  width: 12%;
}

.basic-list-warranty .table .desire  {
  width: 17%;
}

.basic-list-warranty .table .price  {
  width: 15%;
}

/* 2024-11-01 추가 */

@media(max-width:1200px) {
  .basic-list-warranty .table .th {
    padding: 20px 12px;
  }
  
  .basic-list-warranty .table .td {
    padding: 15px 12px;
  }
  
  .basic-list-warranty .table .no {
    max-width: 95px;
    width: 7.421%;
  }
  
  .basic-list-warranty .table .reissue {
    max-width: 206px;
    width: 16.093%;
  }
  
  .basic-list-warranty .table .client {
    max-width: 135px;
    width: 10.546%;
  }
  
  .basic-list-warranty .table .warranty-num {
    max-width: 289px;
    width: 22.578%;
  }
  
  .basic-list-warranty .table .store {
    max-width: 270px;
    width: 21.093%;
  }
  
  .basic-list-warranty .table .data {
    max-width: 280px;
    width: 21.875%;
    margin-left: 0;
  }
  
  .bbs-warranty .pagination {
    margin-top: 35px;
  }
}

@media(max-width:1024px) {
  .bbs-warranty .util {
    margin-bottom: 15px;
  }
  
  .basic-list-warranty .table .th {
    padding: 20px 12px;
  }
  
  .basic-list-warranty .table .td {
    padding: 15px 12px;
  }
  
  .basic-list-warranty .table .no {
    max-width: 95px;
    width: 7.421%;
  }
  
  .basic-list-warranty .table .reissue {
    max-width: 206px;
    width: 16.093%;
  }
  
  .basic-list-warranty .table .client {
    max-width: 135px;
    width: 10.546%;
  }
  
  .basic-list-warranty .table .warranty-num {
    max-width: 289px;
    width: 22.578%;
  }
  
  .basic-list-warranty .table .store {
    max-width: 270px;
    width: 21.093%;
  }
  
  .basic-list-warranty .table .data {
    max-width: 280px;
    width: 21.875%;
  }
  
  .bbs-warranty .pagination {
    margin-top: 30px;
  }
}

@media(max-width:768px) {
  .basic-list-warranty .table .th {
    padding: 20px 10px;
  }
  
  .basic-list-warranty .table .td {
    padding: 15px 12px;
  }
  
  .basic-list-warranty .table .no {
    max-width: 95px;
    width: 8%;
  }
  
  .basic-list-warranty .table .reissue {
    width: 13%;
  }
  
  .basic-list-warranty .table .client {
    max-width: 135px;
    width: 12%;
  }
  
  .basic-list-warranty .table .warranty-num {
    max-width: 289px;
    width: 23%;
  }
  
  .basic-list-warranty .table .store {
    max-width: 270px;
    width: 22%;
  }
  
  .basic-list-warranty .table .data {
    max-width: 280px;
    width: 22%;
  }
  
  .bbs-warranty .pagination {
    margin-top: 25px;
  }
}

@media(max-width:645px) {
  .basic-list-warranty {
    overflow: auto;
  }
  
  .basic-list-warranty .table {
    width: 615px;
  }
}

@media(max-width:500px) {
  .basic-list-warranty .table {
    width: 515px;
  }
  
  .basic-list-warranty.estimate .table {
    width: 575px;
  }
  
  .basic-list-warranty .table .th {
    padding: 15px 8px;
  }
  
  .basic-list-warranty .table .td {
    padding: 12px 10px;
  }
  
  .basic-list-warranty .table .no {
    max-width: 95px;
    width: 8%;
  }
  
  .basic-list-warranty .table .reissue {
    width: 13%;
  }
  
  .basic-list-warranty .table .client {
    max-width: 135px;
    width: 12%;
  }
  
  .basic-list-warranty .table .warranty-num {
    max-width: 289px;
    width: 23%;
  }
  
  .basic-list-warranty .table .store {
    max-width: 270px;
    width: 22%;
  }
  
  .basic-list-warranty .table .data {
    max-width: 280px;
    width: 22%;
  }
  
  .bbs-warranty .pagination {
    margin-top: 20px;
  }
}
/* --------------- E:Warranty_List --------------- */
/* --------------- E:Warranty_Form --------------- */
.warrantyForm .form-table {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 0 40px;
  margin-bottom: 20px;
  color: #383838;
}

.warrantyForm .form-table .title {
  width: 100%;
  margin-top: -4px;
}

.warrantyForm .form-table .title p {
  font-size: 2.8rem;
  font-weight: 700;
}

.warrantyForm .form-table .title p span {
  display: inline-block;
  margin-left: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #888888;
}

.warrantyForm .form-table .title p em {
  font-style: normal;
  font-weight: 700;
}

.warrantyForm .form-table .title .line {
  display: block;
  width: 40px;
  height: 2px;
  margin: 11px 0 40px;
}

.warrantyForm .form-table--01 .title .line {
  background-color: #fabe00;
}

.warrantyForm .form-table--02 .title .line, 
.warrantyForm .form-table--05 .title .line {
  background-color: #e1133c;
}

.warrantyForm .form-table--03 .title .line, 
.warrantyForm .form-table--04 .title .line {
  background-color: #2b8cbf;
}

.warrantyForm .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 620px;
  width: calc(50% - 20px);
  margin-bottom: 20px;
}

.warrantyForm .th {
  width: 120px;
  padding-right: 15px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #383838;
}

.warrantyForm.estimate .th {
  width: 130px;
}

.warrantyForm .th span {
  color: #ff3333;
}

.warrantyForm .td {
  width: calc(100% - 120px);
}

.warrantyForm.estimate .td {
  width: calc(100% - 130px);
}


.warrantyForm .td p,
.warrantyForm .td input,
.warrantyForm .td select {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  border-radius: 5px;
  color: #010101;
}

.warrantyForm .td.block p,
.warrantyForm .td.block input,
.warrantyForm .td.block select {
  background-color: #dbdbdb;
}

.warrantyForm .td select {
  background-image: url('/child/img/icon/warranty-select.png');
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: right 16px center;
}


.warrantyForm  #date {
  background-image: url('/child/img/icon/calender.png');
  background-repeat: no-repeat;
  background-size: 18px 20px;
  background-position: right 16px center;
}

.warrantyForm  .ui-datepicker-trigger {
  display: none;
}

.warrantyForm .td p {
  display: flex;
  align-items: center;
  background-color: #ddd;
}

.warrantyForm .row > span {
  width: 100%;
  margin-top: 7px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #888;
}

.warrantyForm .form-table--02 .row--05 {
  max-width: 100%;
  width: 100%;
} 

.warrantyForm .form-table--04 .td {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px 16px;
}

.warrantyForm .form-table--04 .row {
  align-items: start;
  max-width: 100%;
  width: 100%;
}

.warrantyForm .form-table--04 .row--01 {
  margin-bottom: 35px;
}

.warrantyForm .form-table--04 .row--02 {
  margin-bottom: 33px;
}

.warrantyForm .form-table--04 .row--04, 
.warrantyForm .form-table--04 .row--05 {
  align-items: center;
}

.warrantyForm .form-table--04 .td .select,
.warrantyForm .form-table--04 .row--05 input {
  max-width: 376px;
  width: calc(33.333% - 11px);
}

.warrantyForm .form-table--04 .td .select:last-of-type {
  margin-right: 0;
}

.warrantyForm .form-table--04 .td p {
  height: auto;
  padding: 0;
  margin-bottom: 10px;
  background-color: transparent;
  border: none;
  font-size: 1.8rem;
  font-weight: 600;
  color: #383838;
}

.warrantyForm .form-table--04 .row--05 .td {
  align-items: center;
}

.warrantyForm .form-table--04 .row--05 .td span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 300;
  color: #a7a7a7;
}

.warrantyForm .form-table--05 {
  margin-bottom: 16px;
}

.warrantyForm .form-table--05 .row {
  max-width: 100%;
  width: 100%;
}

.warrantyForm .form-table--05 .td {
  width: 100%;
}

.warrantyForm .form-table--05 .td textarea {
  width: 100%;
  height: 160px;
  padding: 17px;
  font-size: 1.6rem;
  font-weight: 300;
}

.warrantyForm .button-wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 0 20px;
}

.warrantyForm .button-wrap .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  background-color: #a9a9a9;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
}

.warrantyForm .button-wrap .button--check {
  background-color: #2b8cbf;
}

.warrantyForm .button-wrap .button--back,
.warrantyForm .button-wrap .button--reissue,
.warrantyForm .button-wrap .button--issue,
.warrantyForm .button-wrap .button--list {
  background-color: #474747;
}

@media(max-width:1200px) {
  .warrantyForm .form-table {
    gap: 0 30px;
    margin-bottom: 20px;
  }
  
  .warrantyForm .form-table .title {
    margin-top: -3px;
  }
  
  .warrantyForm .form-table .title p {
    font-size: 2.2rem;
  }
  
  .warrantyForm .form-table .title p span {
    margin-left: 20px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table .title .line {
    width: 35px;
    height: 2px;
    margin: 11px 0 35px;
  }
  
  .warrantyForm .row {
    max-width: 620px;
    width: calc(50% - 15px);
    margin-bottom: 20px;
  }
  
  .warrantyForm .th {
    width: 110px;
    padding-right: 15px;
    font-size: 1.6rem;
  }
  
  .warrantyForm.estimate .th {
    width: 120px;
  }
  
  .warrantyForm .td {
    width: calc(100% - 110px);
  }
  
  .warrantyForm.estimate .td {
    width: calc(100% - 120px);
  }
  
  .warrantyForm .td p,
  .warrantyForm .td input,
  .warrantyForm .td select {
    height: 40px;
    padding: 0 12px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .td select {
    background-size: 14px 8px;
    background-position: right 12px center;
  }
  
  .warrantyForm  #date {
    background-size: 18px 20px;
    background-position: right 12px center;
  }
  
  .warrantyForm .row > span {
    margin-top: 7px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table--04 .td {
    gap: 20px 16px;
  }

  .warrantyForm .form-table--04 .row--01 {
    margin-bottom: 30px;
  }
  
  .warrantyForm .form-table--04 .row--02 {
    margin-bottom: 30px;
  }
  
  .warrantyForm .form-table--04 .td .select,
  .warrantyForm .form-table--04 .row--05 input {
    max-width: 376px;
    width: calc(33.333% - 11px);
  }
  
  .warrantyForm .form-table--04 .td p {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table--04 .row--05 .td span {
    font-size: 1.4rem;
  }
  
  .warrantyForm .form-table--05 {
    margin-bottom: 16px;
  }
  
  .warrantyForm .form-table--05 .td textarea {
    height: 140px;
    padding: 12px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .button-wrap {
    gap: 0 20px;
  }
  
  .warrantyForm .button-wrap .button {
    width: 220px;
    height: 50px;
    border-radius: 28px;
    font-size: 1.6rem;
  }
}

@media(max-width:1024px) {
  .warrantyForm .form-table {
    gap: 0 20px;
    margin-bottom: 15px;
  }
  
  .warrantyForm .form-table .title {
    margin-top: -2px;
  }
  
  .warrantyForm .form-table .title p {
    font-size: 2.2rem;
  }
  
  .warrantyForm .form-table .title p span {
    margin-left: 15px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table .title .line {
    width: 30px;
    height: 2px;
    margin: 11px 0 30px;
  }
  
  .warrantyForm .row {
    max-width: 620px;
    width: calc(50% - 10px);
    margin-bottom: 15px;
  }
  
  .warrantyForm .th {
    width: 110px;
    padding-right: 12px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .td {
    width: calc(100% - 110px);
  }
  
  .warrantyForm .td p,
  .warrantyForm .td input,
  .warrantyForm .td select {
    height: 35px;
    padding: 0 12px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .td select {
    background-size: 12px 6px;
    background-position: right 12px center;
  }
  
  .warrantyForm  #date {
    background-size: 16px 18px;
    background-position: right 12px center;
  }
  
  .warrantyForm .row > span {
    margin-top: 7px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table--04 .td {
    gap: 15px 12px;
  }

  .warrantyForm .form-table--04 .row--01 {
    margin-bottom: 20px;
  }
  
  .warrantyForm .form-table--04 .row--02 {
    margin-bottom: 25px;
  }
  
  .warrantyForm .form-table--04 .td .select,
  .warrantyForm .form-table--04 .row--05 input {
    max-width: 376px;
    width: calc(33.333% - 10px);
  }
  
  .warrantyForm .form-table--04 .td p {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table--04 .row--05 .td span {
    font-size: 1.4rem;
  }
  
  .warrantyForm .form-table--05 {
    margin-bottom: 15px;
  }
  
  .warrantyForm .form-table--05 .td textarea {
    height: 120px;
    padding: 12px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .button-wrap {
    gap: 0 10px;
  }
  
  .warrantyForm .button-wrap .button {
    width: 200px;
    height: 45px;
    border-radius: 28px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .warrantyForm .form-table {
    gap: 15px 0;
    margin-bottom: 12px;
  }
  
  .warrantyForm .form-table .title {
    margin-top: -1px;
  }
  
  .warrantyForm .form-table .title p {
    font-size: 1.8rem;
  }
  
  .warrantyForm .form-table .title p span {
    margin-left: 12px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .form-table .title .line {
    width: 25px;
    height: 2px;
    margin: 11px 0 25px;
  }
  
  .warrantyForm .row {
    /* flex-direction: column;
    align-items: start; */
    max-width: 100%;
    width: 100%;
    margin-bottom: 12px;
  }
  
  .warrantyForm .th {
    width: 90px;
    padding-right: 10px;
    font-size: 1.4rem;
  }
  
  .warrantyForm.estimate .th {
    width: 100px;
  }
  
  .warrantyForm .td {
    width: calc(100% - 90px);
  }
  
  .warrantyForm.estimate .td {
    width: calc(100% - 100px);
  }
  
  .warrantyForm .td p,
  .warrantyForm .td input,
  .warrantyForm .td select {
    height: 30px;
    padding: 0 12px;
    font-size: 1.2rem;
  }
  
  .warrantyForm .td select {
    background-size: 10px 5px;
    background-position: right 12px center;
  }
  
  .warrantyForm  #date {
    background-size: 14px 16px;
    background-position: right 12px center;
  }
  
  .warrantyForm .flatpickr-mobile {
    display: none;
  }
  
  .warrantyForm .row > span {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .form-table--03 {
    gap: 0 12px;
  }
  
  .warrantyForm .form-table--03 .row {
    width: calc(50% - 6px);
  }
  
  .warrantyForm .form-table--04 .row {
    flex-direction: column;
    align-items: start;
    gap: 5px 0;
  }
  
  .warrantyForm .form-table--04 .td {
    width: 100%;
    gap: 15px 12px;
  }

  .warrantyForm .form-table--04 .row--01 {
    margin-bottom: 15px;
  }
  
  .warrantyForm .form-table--04 .row--02 {
    margin-bottom: 20px;
  }
  
  .warrantyForm .form-table--04 .td .select,
  .warrantyForm .form-table--04 .row--05 input {
    max-width: 376px;
    width: calc(33.333% - 8px);
  }
  
  .warrantyForm .form-table--04 .td p {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .form-table--04 .row--05 .td span {
    font-size: 1.2rem;
  }
  
  .warrantyForm .form-table--05 {
    margin-bottom: 15px;
  }
  
  .warrantyForm .form-table--05 .td textarea {
    height: 120px;
    padding: 12px;
    font-size: 1.4rem;
  }
  
  .warrantyForm .button-wrap {
    gap: 0 5px;
  }
  
  .warrantyForm .button-wrap .button {
    width: 180px;
    height: 40px;
    border-radius: 28px;
    font-size: 1.6rem;
  }
}

@media(max-width:500px) {
  .warrantyForm .form-table {
    gap: 10px 0;
  }
  
  .warrantyForm .form-table .title {
    margin-top: 0px;
  }
  
  .warrantyForm .form-table .title p {
    font-size: 1.6rem;
  }
  
  .warrantyForm .form-table .title p span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
    font-size: 1.2rem;
  }
  
  .warrantyForm .form-table .title .line {
    width: 20px;
    margin: 8px 0 15px;
  }
  
  .warrantyForm .row {
    flex-direction: column;
    align-items: start;
    gap: 5px 0;
    margin-bottom: 10px;
  }
  
  .warrantyForm .th,
  .warrantyForm.estimate .th {
    width: 100%;
    padding-right: 0;
    font-size: 1.2rem;
  }
  
  
  .warrantyForm .td,
  .warrantyForm.estimate .td {
    width: 100%;
  }
  
  .warrantyForm .td p,
  .warrantyForm .td input,
  .warrantyForm .td select {
    height: 30px;
    padding: 0 10px;
    font-size: 1.1rem;
  }
  
  .warrantyForm .td select {
    background-size: 8px 4px;
    background-position: right 10px center;
  }
  
  .warrantyForm  #date {
    background-size: 12px 14px;
    background-position: right 10px center;
  }
  
  .warrantyForm .flatpickr-input.flatpickr-mobile {
    display: none;
  }
  
  
  .warrantyForm .row > span {
    margin-top: 3px;
    font-size: 1.2rem;
  }
  
  .warrantyForm .form-table--03 .row {
    width: 100%;
  }
  
  .warrantyForm .form-table--04 .row {
    flex-direction: column;
    align-items: start;
    gap: 5px 0;
  }
  
  .warrantyForm .form-table--04 .td {
    width: 100%;
    gap: 10px 0;
  }

  .warrantyForm .form-table--04 .row--01 {
    margin-bottom: 10px;
  }
  
  .warrantyForm .form-table--04 .row--02 {
    margin-bottom: 20px;
  }
  
  .warrantyForm .form-table--04 .td .select,
  .warrantyForm .form-table--04 .row--05 input {
    max-width: 100%;
    width: 100%;
  }
  
  .warrantyForm .form-table--04 .td p {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
  
  .warrantyForm .form-table--04 .row--05 .td span {
    margin-top: -5px;
    font-size: 1.1rem;
  }
  
  .warrantyForm .form-table--05 {
    margin-bottom: 15px;
  }
  
  .warrantyForm .form-table--05 .td textarea {
    height: 120px;
    padding: 10px;
    font-size: 1.2rem;
  }
  
  .warrantyForm .button-wrap {
    gap: 0 4px;
  }
  
  .warrantyForm .button-wrap .button {
    width: 160px;
    height: 35px;
    border-radius: 28px;
    font-size: 1.4rem;
  }
  
  .warrantyFormView .button-wrap {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .warrantyFormView .button-wrap .button {
    width: calc(50% - 4px);
    height: 35px;
  }
  
}
/* --------------- E:Warranty_Form --------------- */

