html {
  height: 100%;
}
body {
  min-height: 100%;
  margin: 0;
  font-family: "Hiragino Sans", "Helvetica Neue", "Helvetica",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
p {
  margin: 0;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
* {
  box-sizing: border-box;
}

.header {
  width: 100%;
  min-width: 1440px;
  height: 60px;
  padding: 0 40px 0 24px;
  box-sizing: border-box;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #ddd;
}
.logo_and_title_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  width: 160px;
  height: auto;
  margin: 0 16px 0 0;
}
.app_title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}
.salesforce_status_and_user {
  display: flex;
}
.salesforce_status_logo {
  margin: 0 8px 0 0;
}
.salesforce_status_area {
  margin: 0 28px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.salesforce_status_link {
  color: #0d3776;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  cursor: pointer;
}
.salesforce_status_link:hover {
  text-decoration: underline;
}
.user_info_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_icon {
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}
.user_name {
  color: #0d3776;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
.user_detail_button {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0 10px;
  height: 19px;
}
.down_arrow_icon {
  width: 12px;
  height: 7.879px;
  margin: 0 0 0 8px;
}

.container {
  width: 100%;
  min-width: 1440px;
  display: flex;
  min-height: calc(100vh - 60px);
}

.menu {
  margin: 0;
  padding: 0;
}

.login_container {
  position: relative;
  background: #f5f5f5;
  width: 100%;
  display: flex;
  min-height: calc(100vh - 60px);
}
.login_box {
  width: 423px;
  padding: 24px 0 30px;
  text-align: center;
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  background: #fff;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.login_text {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.login_button {
  display: block;
  width: 192px;
  height: 48px;
  margin: 30px auto 0;
  border-radius: 4px;
  background: #d50580;
  text-decoration: none;
}
.login_button_label {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 48px;
}
.top_left_side_menu {
  width: 188px;
  flex-shrink: 0;
  border-right: 1px solid #ddd;
}
.top_left_side_menu_pick_list_label {
  padding: 24px 0 12px 24px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}
.pick_list {
  position: relative;
  height: 40px;
  margin: 0 24px 28px 24px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
  box-sizing: border-box;
  cursor: pointer;
}
.pick_list_select {
  padding: 0 0 0 12px;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  width: 100%;
  height: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
}
.pick_list_icon {
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: 12px;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
}
.month_menu_list {
  height: 41px;
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
  background-color: #ffffff;
  box-sizing: border-box;
  cursor: pointer;
}
.month_menu_list:last-child {
  border-bottom: 1px solid #ddd;
}
.month_menu_list:hover,
.month_menu_list.selected {
  background: #cfdcef;
}
.month_menu_list_text {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  padding: 0 0 0 24px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.selected .month_menu_list_text {
  font-weight: 600;
}
.top_main_area {
  width: 100%;
  padding: 37px 40px 60px 42px;
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.csv_execution_log_area {
  width: 100%;
}
.csv_execution_log_area.failed {
  margin: 0 10%;
}
.csv_execution_log_title {
  margin: 0 0 15px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.079px;
}
.csv_upload_area {
  width: 240px;
  margin: 0 0 0 40px;
  padding: 24px 24px 28px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.csv_upload_title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.csv_upload_procedure {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}
.csv_upload_procedure_area {
  margin: 20px 0 16px;
  display: flex;
  align-items: center;
}
.number_circle {
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background-color: #d50580;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.csv_upload_procedure {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}
.top_file_drop_area {
  width: 192px;
  height: 123px;
  margin: 0 0 24px 0;
  padding: 16px 34px;
  border-radius: 4px;
  border: 1px dashed #ddd;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #dddddd;
  position: relative;
}
.top_file_drop_area input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.top_file_drop_message {
  color: #999;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
}
.top_file_drop_message_file_name {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.4;
  padding: 0 10px;
  color: #333;
  display: none;
}
.top_file_drop_message_file_name.show {
  display: flex;
}
.top_file_drop_message_file_name .trash {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #9c3686;
  cursor: pointer;
  margin: 0 0 0 5px;
  padding: 0 0 0 14px;
  background: url(../images/trash-icon.svg) no-repeat left center;
}
.top_file_choose_button {
  width: 100px;
  height: 32px;
  padding: 8px 12px;
  margin: 8px auto;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  cursor: pointer;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}
.csv_upload_input_memo {
  width: 192px;
  height: 120px;
  padding: 16px 18px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-sizing: border-box;
  outline: none;
}
.csv_upload_input_memo::placeholder {
  color: #999;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
}
.error_message {
  font-size: 12px;
  line-height: 18px;
  color: #d50580;
  margin: 5px 0 0 0;
}
.error_message:empty {
  margin: 0;
}
.top_csv_upload_button {
  width: 100%;
  height: 48px;
  margin: 14px 0 0;
  border-radius: 4px;
  background: #d50580;
}
.top_csv_upload_button[type="button"],
.top_csv_upload_button:disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.top_csv_upload_button_label {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}

/* table */
.csv_execution_log_table {
  width: 100%;
  min-width: 843px;
  margin: 7px 0 0;
}
.csv_execution_log_table_th_line {
  height: 40px;
}
.csv_execution_log_table_th_line,
.csv_execution_log_table_td_line {
  display: flex;
  width: 100%;
  min-width: 838px;
  border: 0.5px solid #ddd;
}
.csv_execution_log_table_td_line {
  background: #eee;
}
.csv_execution_log_block {
  padding: 7px 16px;
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border: 0.5px solid #ddd;
}
.csv_execution_log_td_block {
  padding: 11px 13px 11px 16px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 0.5px solid #ddd;
  box-sizing: border-box;
  vertical-align: middle;
}
.csv_execution_log_table_th_line .csv_execution_log_block {
  background: #666;
}
.csv_execution_log_table_td_line:nth-child(2n + 1) .csv_execution_log_td_block {
  background: #eee;
}
.csv_execution_log_td_block_with_status_icon {
  display: flex;
  align-items: center;
}
.status_icon {
  margin: 0 8px 0 0;
}
.csv_execution_log_table_block_text {
  color: #000;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
}
.csv_execution_log_table_th_line
  .csv_execution_log_block
  .csv_execution_log_table_block_text {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
}
.in_progress {
  color: #666;
}
.csv_execution_log_table_block_text_link {
  color: #0d3776;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  text-decoration-line: underline;
}
.csv_execution_log_table_block_status_text_link {
  color: #000;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  text-decoration-line: underline;
}
.csv_execution_log_table_block_error_count_text_link {
  color: #d00000;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-decoration-line: underline;
}
.csv_execution_log_table_td_line
  .csv_execution_log_td_block.csv_execution_log_error_count {
  justify-content: flex-end;
}
.csv_execution_log_upload {
  width: 15%;
  min-width: 145px;
}
.csv_execution_log_name {
  width: 25%;
  min-width: 120px;
}
.csv_execution_log_failed_status {
  width: 15%;
  min-width: 120px;
}
.csv_execution_log_user {
  width: 15%;
  min-width: 120px;
}
.csv_execution_log_failed_content {
  width: 50%;
  min-width: 162px;
}
.csv_execution_log_csv {
  width: 40%;
  min-width: 162px;
}
.csv_execution_log_memo {
  width: 15%;
  min-width: 90px;
}
.csv_execution_log_status {
  width: 15%;
  min-width: 120px;
}
.csv_execution_log_error_count {
  width: 10%;
  min-width: 110px;
}
.csv_execution_log_table_pagination_area {
  margin: 42px 0 0;
  display: flex;
  justify-content: center;
}
.top_page_button {
  display: flex;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  text-decoration: none;
}
span.top_page_button {
  opacity: 0.5;
}
span.top_page_button._number {
  opacity: 1;
  background: #103675;
  border: none;
}
span.top_page_button._number .top_page_pagination_button_label {
  color: #fff;
}
a.top_page_button:hover {
  opacity: 0.5;
}
.top_page_pagination_button_label {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: #103675;
}

/* popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  z-index: 101;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  overscroll-behavior: contain;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: none;
}
.popup::-webkit-scrollbar {
  display: none;
}
.popup::before {
  content: "";
  width: 1px;
  height: calc(100vh + 1px);
  display: flex;
}
.popup.show {
  display: block;
}
.popup_close_button {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popup_salesforce_container {
  width: 760px;
  padding: 40px 34px;
  background-color: #ffffff;
  position: absolute;
  height: 80%;
  max-height: 535px;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  margin: auto;
}
.salesforce_status_and_update {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.popup_salesforce_title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}
.popup_salesforce_update {
  color: #000;
  text-align: right;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}
.popup_salesforce_data_status_table {
  width: 100%;
  margin: 16px 0 32px 0;
}
.popup_salesforce_data_status_th_table_line,
.popup_salesforce_data_status_td_table_line {
  width: 100%;
  display: flex;
}
.popup_salesforce_data_status_block {
  padding: 11px 16px 11px 16px;
  background: #fff;
  border: 0.5px solid #ddd;
}
.popup_salesforce_data_status_th_table_line
  .popup_salesforce_data_status_block {
  background: #666;
}
.popup_salesforce_data_status_td_table_line:nth-child(2n + 1)
  .popup_salesforce_data_status_block {
  background: #eee;
}
.popup_salesforce_data_status_block_text {
  color: #000;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  display: flex;
  justify-content: space-between;
}
.popup_salesforce_data_status_block_text_link {
  color: #d00000;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-decoration-line: underline;
}
.popup_salesforce_data_status_block_text_link[data-diff-value=""],
.popup_salesforce_data_status_block_text_link[data-diff-value="0"],
.popup_salesforce_data_status_block_text_link[data-failed-value=""],
.popup_salesforce_data_status_block_text_link[data-failed-value="0"] {
  color: #000;
  text-decoration-line: none;
  pointer-events: none;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
[data-sobject]:empty::before,
.popup_salesforce_data_status_block_text_link:empty::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  margin: -3px 0;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 12px;
  animation: spin 1s linear infinite;
}
.popup_salesforce_data_status_th_table_line
  .popup_salesforce_data_status_block
  .popup_salesforce_data_status_block_text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}
.popup_salesforce_data_status_salesforce_object {
  width: calc(100% / 3);
}
.popup_salesforce_data_status_all_record {
  width: calc(100% / 3);
}
.popup_salesforce_data_status_diff_count {
  width: calc(100% / 3);
}
.popup_error_container {
  width: 600px;
  height: 263px;
  padding: 44px 40px 56px 36px;
  background-color: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.popup_error_title {
  margin: 0 0 24px 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}
.popup_error_message_box {
  width: 100%;
  height: 120px;
  overflow: auto;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.popup_error_message {
  color: #000;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
}
.layer-upload {
  position: fixed;
  display: none;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}
.layer-upload.show {
  display: flex;
}
.layer-upload-inner {
  padding: 50px;
  width: 70%;
  margin: auto;
  background: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.layer-upload-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.layer-upload-progress {
  height: 15px;
  background: #ddd;
  position: relative;
}
.layer-upload-progress._space {
  margin: 0 0 15px 0;
}
.layer-upload-progress span {
  background: #215ca0;
  transition: width 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
.content {
  width: 100%;
  display: flex;
  align-self: center;
  justify-content: center;
}
.checkbox-area {
  display: flex;
  align-items: center;
}
.checkbox-text {
  font-size: 12px;
  line-height: 12px;
  margin: 0 0 0 4px;
  cursor: pointer;
}
.popup_salesforce_bottom {
  display: flex;
}
.popup_salesforce_bottom_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 52px 0 0;
}
.popup_salesforce_bottom_button {
  width: 118px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0 auto;
  border-radius: 4px;
  background: #d00000;
}
.popup_salesforce_bottom_button:disabled {
  cursor: wait;
  opacity: 0.5;
}
.previous_table_wrap {
  padding: 37px 40px 60px 42px;
  background: #f5f5f5;
}
.previous_table {
  width: 100%;
  border-collapse: collapse;
}
.previous_table_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: left;
  padding: 0 0 5px 16px;
}
.previous_table_select {
  text-align: left;
}
.previous_table_head {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  text-align: left;
  padding: 11px 13px 11px 16px;
  border: 1px solid #ddd;
}
.previous_table_head._1 {
  background: #fae7a1;
}
.previous_table_head._2 {
  background: #a8c4e5;
}
.previous_table_head._3 {
  background: #a8c4e5;
}
.previous_table_head._4 {
  background: #bdd7ab;
}
.previous_table_head._5 {
  background: #bdd7ab;
}
.previous_table_data {
  padding: 11px 13px 11px 16px;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  border: 1px solid #ddd;
}
.previous_table_data._1 {
  width: 200px;
  min-width: 200px;
  white-space: nowrap;
}
.previous_table_data._3 {
  width: 250px;
  min-width: 250px;
  white-space: nowrap;
}
.previous_table_data._5 {
  width: 250px;
  min-width: 250px;
  white-space: nowrap;
}
.previous_table_body tr:nth-child(2n + 1) .previous_table_data {
  background: #eee;
}
.previous_table_select_parts {
  width: 140px;
  height: 30px;
  font-size: 14px;
  text-indent: 4px;
  margin: 0 0 5px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.loading {
  display: none;
  position: fixed;
  z-index: 7777;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
}
.loading.show {
  display: flex;
}
