.estimate_section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.estimate_section_form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 588px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 920px) {
  .estimate_section_form {
    padding: 0;
  }
}

.estimate_section_head {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 920px) {
  .estimate_section_head {
    gap: 60px;
    margin-bottom: 50px;
  }
}

.estimate_section_message {
  display: flex;
  justify-content: center;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto 40px;
}
@media screen and (min-width: 920px) {
  .estimate_section_message {
    margin: 0 auto 60px;
  }
}

.estimate_section_request {
  width: 100%;
  height: auto;
  max-width: 1085px;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin: 0 auto;
}

.estimate_section_request_head {
  width: 100%;
  height: auto;
  display: none;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 920px) {
  .estimate_section_request_head {
    display: flex;
  }
}
.request_title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: flex-start;
}

.request_title_number {
  flex: 0 1 64px;
}
.request_title_maker {
  flex: 0 1 368px;
}
.request_title_model {
  flex: 0 1 308px;
}
.request_title_stock {
  flex: 0 1 119px;
}
.request_title_order {
  flex: 0 1 125px;
}
.request_form{
  height: auto;
}
@media screen and (min-width: 920px) {
  .request_form {
    min-height: 60px;
  }
}
.estimate_section_request_form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.estimate_section_request_form_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 920px) {
  .estimate_section_request_form_container {
    gap: 12px;
  }
}
.estimate_section_request_form_item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}
@media screen and (min-width: 920px) {
  .estimate_section_request_form_item {
    gap: 20px;
    flex-direction: row;
    align-items: stretch;
  }
}
.item_number {
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  flex: 0 1 100%;
}
@media screen and (min-width: 920px) {
  .item_number {
    flex: 0 1 64px;
  }
}
input:focus,
textarea:focus {
  outline:solid 2px #1CC1CF;
  box-shadow: 0 0 8px 0 #00000029;
}
input::placeholder,
textarea::placeholder {
  color: #B4B4B4;
}

input:read-only {
  border: 0 !important;
  background-color: #f2f2f2;
}
.form_manufacturer {
  flex: 0 1 100%;
}
@media screen and (min-width: 920px) {
  .form_manufacturer {
    flex: 0 1 368px;
  }
}
.form_partnumber {
  flex: 0 1 100%;
}
@media screen and (min-width: 920px) {
  .form_partnumber {
    flex: 0 1 308px;
  }
}
.form_stock {
  flex: 0 1 100%;
}
@media screen and (min-width: 920px) {
  .form_stock {
    flex: 0 1 119px;
  }
}
.form_order {
  flex: 0 1 100%;
}
.form_remove {
  align-items: center;
}
@media screen and (min-width: 920px) {
  .form_order {
    flex: 0 1 125px;
  }
}
.estimate_section_request_form_other {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 920px) {
  .estimate_section_request_form_other {
    flex-direction: row;
    gap: 40px;
    margin-bottom: 80px;
  }
}

.request_column {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 920px) {
  .request_column {
    gap: 20px;
  }
}
@media screen and (min-width: 920px) {
  .request_column_deadline {
    flex: 0 1 201px;
  }
}
@media screen and (min-width: 920px) {
  .request_column_textArea {
    flex: 1 1 0;
  }
}

.request_column_title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

input.flatpickr-input {
  width: 201px;
  padding: 12px !important;
  border: 1px solid #DFE5E0;
  border-radius: 4px;
}

input.flatpickr-input::placeholder {
  color: #B4B4B4;
}

.input_wrap {
  width: fit-content;
  height: auto;
  position: relative;
}
.input_wrap::before {
  content: "";
  position: absolute;
  background: url(../img/mypage/select.svg) center center no-repeat;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
}
@media screen and (min-width: 920px) {
  .input_wrap::before {
    width: 24px;
    height: 24px;
  }
}

textarea.form_textArea {
  width: 100%;
  height: 172px;
  border-radius: 4px;
  border: 1px solid #DFE5E0;
  padding: 7px 10px;
  font-size: 16px;
}
@media screen and (min-width: 920px) {
  textarea.form_textArea {
    padding: 10px;
  }
}

.confirm_link {
  width: 100%;
  max-width: 268px;
  margin: 0 auto;
}
@media screen and (min-width: 920px) {
  .confirm_link {
    max-width: 268px;
  }
}



.estimate_section_confirm {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
}


.estimate_section_confirm_inner {
  padding: 30px 20px;
  background-color: #F2F2F2;
  border-radius: 8px;
  max-width: 1064px;
  margin: 0 auto 60px;
}
@media screen and (min-width: 920px) {
  .estimate_section_confirm_inner {
    padding: 60px 40px;
    margin: 0 auto 80px;
  }
}

.estimate_section_confirm_head {
  width: 100%;
  height: auto;
  display: none;

}
@media screen and (min-width: 920px) {
  .estimate_section_confirm_head {
    display: flex;
    align-items: flex-end;
    padding-bottom: 12px;
    border-bottom: 1px solid #021530;
  }
}

.item_title {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 700;
  line-height: 0.9;
  white-space: nowrap;
}
.item_title_number {
  flex: 0 1 84px;
}
.item_title_maker {
  flex: 0 1 388px;
}
.item_title_model {
  flex: 0 1 328px;
}
.item_title_stock {
  flex: 0 1 99px;
}
.item_title_order {
  flex: 1 1 0;
}

.estimate_section_confirm_inner_list {
  margin-bottom: 8px;
  border-top: 1px solid #DFE5E0;
}
@media screen and (min-width: 920px) {
  .estimate_section_confirm_inner_list {
    border-top: 0;
  }
}

.estimate_section_confirm_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
}
@media screen and (min-width: 920px) {
  .estimate_section_confirm_item {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 28px 0;
  }
}

.estimate_section_confirm_item:not(:last-of-type) {
  border-bottom: 1px solid #DFE5E0;
}

.item_text {
  display: flex;
  justify-content: flex-start;
  font-size: 15px;
  align-items: center;
  word-break: break-all;
}
@media screen and (min-width: 920px) {
  .item_text {
    font-size: 16px;
  }
}

.item_text_number,
.item_text_stock {
  font-weight: 700;
}
@media screen and (min-width: 920px) {
  .item_text_number {
    flex: 0 1 84px;
  }
}
@media screen and (min-width: 920px) {
  .item_text_maker {
    flex: 0 1 388px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 920px) {
  .item_text_model {
    flex: 0 1 328px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 920px) {
  .item_text_stock {
    flex: 0 1 99px;
  }
}
@media screen and (min-width: 920px) {
  .item_text_order {
    flex: 1 1 0;
  }
}

.item_title_sp {
  flex: 0 1 80px;
}
@media screen and (min-width: 920px) {
  .item_title_sp {
    display: none;
  }
}

.estimate_section_confirm_inner_info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.deadline_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #021530;
}
@media screen and (min-width: 920px) {
  .deadline_contents {
    flex-direction: row;
    align-items: center;
    padding: 24px;
    gap: 20px;
  }
}

.contents_title {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 920px) {
  .contents_title {
    flex: 0 1 160px;
  }
}

.contents_title_icon {
  width: 24px;
  height: 24px;
  flex: 0 1 24px;
}

.contents_title_icon img {
  width: 100%;
  height: 100%;
}

.contents_title_large {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  flex: 1 1 0;
}
@media screen and (min-width: 920px) {
  .contents_title_large {
    font-size: 16px;
  }
}

@media screen and (min-width: 920px) {
  .deadline_contents_text,
  .request_contents_text {
    flex: 1 1 0;
  }
}

.deadline_contents_text > p {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 920px) {
  .deadline_contents_text > p {
    font-size: 20px;
  }
}

.request_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius:  0 0 8px 8px;
  border-right: 1px solid #021530;
  border-bottom: 1px solid #021530;
  border-left: 1px solid #021530;
}
@media screen and (min-width: 920px) {
  .request_contents {
    flex-direction: row;
    padding: 24px 40px 24px 24px;
    gap: 20px;
  }
}

.request_contents .contents_title {
  align-items: flex-start;
}

.request_contents_text > p {
  line-height: 1.75;
  word-break: break-all;
}
@media screen and (min-width: 920px) {
  .request_contents_text > p {
    font-size: 16px;
  }
}

.confirm_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.send_link {
  max-width: 100%;
}
@media screen and (min-width: 920px) {
  .send_link {
    max-width: 268px;
  }
}
.return_link {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
}

.return_link_icon {
  width: 20px;
  height: 20px;
  flex: 0 1 20px;
}
@media screen and (min-width: 920px) {
  .return_link_icon {
    width: 24px;
    height: 24px;
    flex: 0 1 24px;
  }
}
.return_link_icon img {
  width: 100%;
  height: 100%;
}

.return_link_text {
  flex: 1 1 0;
  font-size: 14px;
  line-height: 1.25;
}
@media screen and (min-width: 920px) {
  .return_link_text {
    font-size: 16px;
  }
}

.complete_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.complete_link {
  max-width: 100%;
  border: 1px solid #021530;
  background: #ffffff;
  color: #021530;
}
@media screen and (min-width: 920px) {
  .complete_link {
    max-width: 268px;
  }
}
.complete_link:hover {
  background: #ffffff;
  opacity: .6;
}
