@charset "UTF-8";

[hidden] {
  display: none !important;
}


:root {
  --kitz_blue: #02459F;
  --kitz_blue02: #0C85DD;
  --kitz_skyblue: #03C5FF;
  --kitz_line: #707070;
  --kitz_line2: #BCBCBC;
  --kitz_text: #000;
  --kitz_white: #fff;
  --kitz_bg: #E6F5FF;
}

.is-hidden { display: none !important; }

table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
td div{
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
sup {
  font-size: 0.8em;
  vertical-align: super;
  line-height: 1;
}


.bg_blue{
    background-color: var(--kitz_blue)!important;
}
.bg_blue02{
    background-color: var(--kitz_blue02)!important;
}
.bg_gray{
    background-color: #F5F5F5!important;
}
.bg_white{
    background-color: var(--kitz_white)!important;
}

.bd_blue{
    border: solid 1px var(--kitz_blue) !important;
}
.bd_blue02{
    border: solid 1px var(--kitz_blue02) !important;
}
.bd_gray{
    border: solid 1px #F5F5F5;
}
.bd_white{
    border: solid 1px var(--kitz_white)!important;
}

.c_blue{
    color: var(--kitz_blue)!important;
}
.c_blue02{
    color: var(--kitz_blue02)!important;
}
.c_gray{
    color: #F5F5F5!important;
}
.c_white{
    color: var(--kitz_white)!important;
}
.c_red{
  color: #E20000!important;
}




/* チェックボックス */
.check_box{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 35px auto;
}
.check_box label {
  font-size: 14px;
  color: var(--kitz_text);
  display: flex;
  align-items: center;
  margin-right: 50px;
  gap: 6px
}
.check_box input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.check_box input[type="checkbox"]:checked {
  background: var(--kitz_blue);
border: 1px solid #BBBBBB;
}
.check_box input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 8px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}

/* ラジオボタン */
.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
}
.radio input {
  appearance: none;
  width: 18px;
  height: 18px;
  background-color: var(--kitz_white);
  border: 1px solid var(--kitz_line);
  border-radius: 50%;
  position: relative;
}
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #0C85DD;
  border-radius: 50%;
}


/* td width */
.th_45{
  width: 45px;
}
.th_80{
  width: 80px;
}
.th_160{
  width: 160px;
}
.th_170{
  width: 160px;
}
.th_555{
  width: 555px;
}


/* flex */
.flex{
  display: flex!important;
  flex-direction: row!important;
}



/* =========================
   第二階層タイトルエリア
   ========================= */
.layer2_title {
  text-align: center;
  margin: 20px 0 40px;
}

.layer2_title_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* タイトル */
.layer2_title_txt {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.2;
  color: var(--kitz_blue);
  margin: 0 0 40px;
  position: relative;
  display: inline-block;
}

.layer2_title_txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: var(--kitz_blue);
}
.layer2_title_copy{
  font-size: 16px;
  text-align: center;
  margin: 0 0 25px;
}
.layer2_title_copy a{
  color: #0C85DD;
  text-decoration: underline;
}


/* 矢印つきタイトル */
.arrow_title_txt{
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    margin-left: 30px;
    position: relative;
    text-align: left;
    color: var(--kitz_text);
}
.arrow_title_txt::before{
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/common/arrow_right_blue.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}


/* インナー */
.innner{
  width: 1046px;
  margin: 0 auto;
}


/* =========================
   検索エリア
   ========================= */
.search_inner {
  width: 100%;
  padding: 50px 0;
  margin: 0 auto;
  background-color: var(--kitz_bg);
}

.search_body h2 {
  position: relative;
  margin: 20px;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search_body h2::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(../images/common/arrow_right_blue.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}

/* 見出し（トグル） */
.search_toggle {
  top: 38px;
  left: 210px;
  position: absolute;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #0C85DD;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* 見出しの左側に▶ */
.search_toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -25px;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-right: 1px solid #0C85DD;
  border-bottom: 1px solid #0C85DD;
  transform: rotate(45deg);
}
.search_toggle[aria-expanded="true"]::after {
  top: 9px;
  transform: rotate(-135deg);
}
[data-accordion].is_open .search_toggle::after {
  transform: rotate(-135deg);
  top: 9px;
}

.search_body {
  position: relative;
  width: 1048px;
  margin: 0 auto;
  padding: 16px 0;
  border-radius: 8px;
}

/* キーワードフォーム */
.keyword_form {
  display: flex;
  align-items: center;
  gap: 16px;
}

.keyword_input {
  flex: 1 1 auto;
  height: 44px;
  padding: 0 16px;
  font-size: 16px;
  color: var(--kitz_text);
  background: var(--kitz_white);
  border: 1px solid var(--kitz_line);
  border-radius: 6px;
}

.keyword_input::placeholder {
  color: var(--kitz_line);
  opacity: 1;
}

.keyword_btn {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 24px;
  font-size: 16px;
  color: var(--kitz_white);
  background: var(--kitz_blue);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.keyword_btn:hover { filter: brightness(0.95); }

/* =========================
   絞り込み条件
   ========================= */
.conditions {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.cond_inner {
  padding: 0;
  width: 1048px;
  margin: 0 auto;
}

.cond_ttl {
  font-size: 28px;
  font-weight: bold;
  color: var(--kitz_blue);
  text-align: center;
  margin: 8px 0 24px;
  text-underline-offset: 6px;
  text-decoration: underline;
}

.cond_row {
  padding: 12px 0;
  border-top: 1px solid #BBBBBB;
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 24px;
  align-items: start;
}
.cond_row_top{
    border-top: 1px solid #BBBBBB!important;
}
.cond_row_bottom{
    border-bottom: 1px solid #BBBBBB!important;
}

.cond_row:first-of-type { border-top: 0; }

.cond_row_{
  width: 1048px;
  margin: 0 auto;
  border-top: 1px solid #BBBBBB;
  text-align: right;
  padding: 12px 0;
  font-size: 14px;
}

.cond_label {
  font-size: 14px;
  color: var(--kitz_text);
  line-height: 24px;
}

.cond_field {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 5px 30px;
  font-size: 14px;
  color: var(--kitz_line);
  background: var(--kitz_white);
  border: 0;
  border-radius: 18px;
  line-height: 1;
}

.chip_on {
  color: var(--kitz_white);
  background: var(--kitz_blue);
  border-color: var(--kitz_blue);
}

.chip_disabled {
  color: var(--kitz_white);
  background: #DBDBDB;
  border-color: #DBDBDB;
}

.cond_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  width: 100%;
  margin-bottom: 10px;
}

.r {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--kitz_text);
}

.r input {
  appearance: none;
  width: 18px;
  height: 18px;
  background-color: var(--kitz_white);
  border: 1px solid var(--kitz_line);
  border-radius: 50%;
  position: relative;
}

/* .r input:checked {
  border-color: var(--kitz_skyblue);
} */

.r input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #0C85DD;
  border-radius: 50%;
}

.aster {
  display: inline-block;
  margin-left: 4px;
  color: var(--kitz_blue);
}

.cond_classes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cond_foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 10px;
}

.cond_count {
  font-size: 18px;
  margin-right: 40px;
  color: var(--kitz_text);
}
.cond_count span{
  color: #E20000!important;
}
.num {
  font-size: 28px;
  color: #E20000!important;
  font-weight: 700;
  padding: 0 6px;
}
.cond_count.is-zero .num,.cond_count.is-zero span{
  color: #E20000!important;
}

.cond_actions {
  display: flex;
  gap: 16px;
}
.cond_actions .btn {
    width: 140px;
    padding: 12px 0;
    border-radius: 10px;
    border: 1.5px solid;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid var(--kitz_blue);
}

.btn_ghost {
  color: var(--kitz_blue);
  background: var(--kitz_white);
}

.btn_primary {
  color: var(--kitz_white);
  background: var(--kitz_blue);
  border-color: var(--kitz_blue);
}

.cond_note {
  border-top: 1px solid var(--kitz_line);
  font-size: 12px;
  color: var(--kitz_text);
  text-align: right;
  padding: 10px 0;
}

/* =========================
   一覧テーブル
   ========================= */
.item_inner {
  position: relative;
  margin: 60px auto 100px;
  width: 100%;
  max-width: 1100px;
}

.item_notes {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 60px;
  color: var(--kitz_text);
}
.item_notes li {
  padding-left: 16px;
  text-indent: -16px;
}

.item_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.item_actions .add_btn,.item_actions .reset_btn{
    min-width: 180px;
}
.item_display {
    position: absolute;
    top: 80px;
    right: 0;
    margin-left: auto;
    font-size: 14px;
    color: var(--kitz_line);
}
.item_display_{
    top: 130px;
}
.item_select {
  padding: 4px 8px;
  color: var(--kitz_line);
}

.item_table {
  width: 100%;
  background-color: #FFF;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.item_table input{
  width: 20px;
  height: 20px;
}
.item_table input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0 auto;
}

.item_table input[type="checkbox"]:checked {
  background: var(--kitz_blue);
border: 1px solid #BBBBBB;
margin: 0 auto;
}
.item_table01 input[type="checkbox"]:checked {
  background: #0C85DD;
border: 1px solid #BBBBBB;
margin: 0 auto;
}

.item_table input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}


.item_table a{
  color: #0C85DD;
  text-decoration: underline;
}

.item_table01 thead tr th:nth-child(1) {
  width: 40px !important;
  background-color: #0C85DD;
}
.item_table01 thead tr th:nth-child(2) {
  width: 90px !important;
  background-color: #0C85DD;
}
.item_table01 thead tr th:nth-child(3) {
  width: 80px !important;
  background-color: #0C85DD;
}
.item_table01 thead tr th:nth-child(4) {
  width: 110px !important;
  background-color: #0C85DD;
}
.item_table01 thead tr th:nth-child(5) {
  width: 100px !important;
  background-color: #0C85DD;
}
.item_table01 thead tr th:nth-child(6) {
  background-color: #0C85DD;
}
.item_table01 thead tr:nth-child(2) th{
  width: 85px !important;
  background-color: #0C85DD;
}
.item_table01 thead tr:nth-child(1) th:nth-child(7) {
  width: 100px !important;
  color: #0C85DD;
  background-color: #FFF;
  border: solid #0C85DD 1px;
}



.item_table02 thead tr th:nth-child(1) {
  width: 40px !important;
}
.item_table02 thead tr th:nth-child(2) {
  width: 90px !important;
}
.item_table02 thead tr th:nth-child(3) {
  width: 80px !important;
}
.item_table02 thead tr th:nth-child(4) {
  width: 110px !important;
}
.item_table02 thead tr th:nth-child(5) {
  width: 100px !important;
}
.item_table02 thead tr th:nth-child(6) {
  width: 50px !important;
}
.item_table02 thead tr:nth-child(2) th{
  width: 80px !important;
}
.item_table02 thead tr:nth-child(1) th:nth-child(9) {
  width: 100px !important;
  color: #02459F;
  background-color: #FFF;
  border: solid #02459F 1px;
}


.item_table11 thead tr th:nth-child(1) {
  width: 40px !important;
}
.item_table11 thead tr th:nth-child(11) {
  width: 60px !important;
}
.item_table11 thead tr th:nth-child(12) {
  width: 80px !important;
  color: #02459F;
  background-color: #FFF;
  border: solid #02459F 1px;
}

.item_table11 thead tr th,.item_table11_ thead tr th{
  border-top: solid #02459F 1px;
  border-bottom: solid #02459F 1px;
}

.item_table11  .fileicon{
    position: relative;
    padding-left: 36px;
    text-align: left;
}
.item_table11  .fileicon::before{
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/common/fileicon.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.item_table11_ thead tr th:nth-child(1) {
  width: 40px !important;
}
.item_table11_ thead tr th:nth-child(2) {
  width: 110px !important;
}
.item_table11_ thead tr th:nth-child(3) {
  width: 55px !important;
}
.item_table11_ thead tr th:nth-child(4) {
  width: 55px !important;
}
.item_table11_ thead tr th:nth-child(5) {
  width: 55px !important;
}
.item_table11_ thead tr th:nth-child(6) {
  width: 55px !important;
}
.item_table11_ thead tr th:nth-child(7) {
  width: 140px !important;
}
.item_table11_ thead tr th:nth-child(15) {
  width: 60px !important;
}
.item_table11_ thead tr th:nth-child(16) {
  width: 80px !important;
  color: #02459F;
  background-color: #FFF;
  border: solid #02459F 1px;
}
.item_table11 .icon_btn.off {
  background: url(../images/common/materials_off_gray.svg) no-repeat center;
}
.item_table11 .icon_btn.off p{
  color: #C2D8E6;
}

.item_table14 thead tr th:nth-child(3) {
  width: 280px !important;
}

.item_table14 thead tr th:nth-child(8) {
  width: 100px !important;
}

.item_table16 thead tr th:nth-child(1) {
  width: 40px !important;
}
.item_table16 thead tr th:nth-child(2) {
  width: 400px !important;
}
.item_table16 thead tr th:nth-child(6) {
  width: 100px !important;
}
.item_table16 tbody tr td:nth-child(2) {
  text-align: left;
}

/* タブ */
.tab_results {
  position: absolute;
  top: 135px;
  right: 0;
  width: 420px;
  background-color: #DDDDDD;
  padding: 10px;
  gap: 10px;
  border-radius: 4px;
}
.tab_results::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 80px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #DDDDDD transparent transparent transparent;
}

.tab_results .tab-button.active{
  background-color: #0C85DD;
  color: #FFF;
  border: 0px solid #02459F!important;
}
.tab_results .tab-button.tab-button2.active{
  background-color: #02459F;
  color: #FFF;
  border: 0px solid #02459F!important;
}
.tab_results .tab-button{
    position: relative;
    width: 200px;
    flex: 1;
    padding: 3px;
    cursor: pointer;
    background: #fff;
    font-size: 13px;
    font-weight: 500!important;
    transition: background 0.3s;
    color: #0C85DD;
    border: 1px solid #0C85DD!important;
    border-radius: 5px;
}
.tab_results .tab-button.tab-button2{
    color: #02459F;
    border: 1px solid #02459F!important;
}
.tab_results .tab-button::before{
    position: absolute;
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    top: 8px;
    left: 7px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: url(../images/common/check.svg) center / contain no-repeat;
}

.item_table{
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    margin-bottom: 50px;
}
.item_table thead {
  color: var(--kitz_white);
}
.item_table thead th,
.item_table thead td {
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 2px;
}
.item_table thead tr th div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}
.item_table th,
.item_table td {
  position: relative;
  font-size: 12px;
  min-width: 65px;
  border-right: 0.5px solid #BBBBBB;
  padding: 10px;
  text-align: center;
  line-height: 1.2;
}
.item_table td.no-data{
  color: #DBDBDB;
}
.item_table td:after{
    content: "";
    position: absolute;
    width: 110%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #DADADA;
}
.item_table_ tbody tr:nth-child(even) {
  background-color: #F8F8F8;
}

.item_table td:last-child::after{
    width: 100%;
}
.item_table td:last-child{
  border-right: 0px solid #BBBBBB;
}
.item_table th{
  border: 0.5px solid var(--kitz_white);
}
.item_img {
  display: contents;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.slider_track picture picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon_btn {
  position: relative;
  width: 30px;
  height: 37px;
  display: block;
  margin: 0 auto 10px;
  background: url(../images/common/materials_on.svg) no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.icon_btn p {
    position: absolute;
    color: var(--kitz_blue);
    font-size: 6px;
    width: 80%;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    line-height: 1;
    letter-spacing: 0;
}
.icon_btn.off {
  background: url("../images/common/materials_off.svg") no-repeat center;
  background-size: contain;
}
.icon_btn.off p{
  color: #C2D8E6;
}
.icon_btn.off::after {
    background: url(../images/common/download_off.svg) no-repeat center;
}
.icon_btn.off {
  pointer-events: none;
}

.btn_detail {
    padding: 5px;
    border-radius: 4px;
    display: inline-block;
    color: var(--kitz_white);
    background-color: var(--kitz_blue);
    color: #FFF!important;
    text-decoration: none!important;
}
.item_table01 .btn_detail{
    padding: 5px;
    background-color: #0C85DD;
}
.btn_detail_delete{
    padding: 5px;
    border-radius: 4px;
    display: inline-block;
    color: var(--kitz_blue)!important;
    border: solid 1px var(--kitz_blue);
    background-color: var(--kitz_white);
    text-decoration: none!important;
}

.item_pagination {
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.item_pagination .pages a {
  margin: 0 5px;
  text-decoration: none;
  color: #0C85DD;
}
.item_pagination .pages a.current {
  color: #707070;
}




.declaration{
  width: 1046px;
  text-align: center;
  margin: 0 auto 75px;
  padding-bottom: 75px;
  border-bottom: 1px solid var(--kitz_line);
}
.declaration_{
  border-bottom: 0px solid var(--kitz_line);
}
.declaration_copy01{
    font-size: 16px;
    text-align: center;
    margin: 0 0 25px;
}
.declaration_copy01 a{
  color: #0C85DD;
  text-decoration: underline;
}
.declaration_copy02{
    width: 790px;
    font-size: 18px;
    text-align: center;
    padding: 25px 0;
    background-color: #E6F5FF;
    margin: 0 auto;
}
.declaration_copy02 a{
  color: #0C85DD;
  text-decoration: underline;
}
.declaration_option {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.declaration_check {
  font-size: 14px;
  color: var(--kitz_text);
  display: flex;
  align-items: center;
  gap: 6px
}
.declaration_option input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.declaration_option input[type="checkbox"]:checked {
  background: var(--kitz_blue);
  border: 1px solid #BBBBBB;
}
.declaration_option input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 8px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}
.declaration_form{
    width: 790px;
    margin: 0 auto 25px;
}
.declaration_form .note{
    font-size: 14px;
    text-align: left;
    color: #E20000;
    margin: 25px auto 80px;
}
.declaration_input{
    width: 758px;
    margin: 0 auto;
    flex: 1 1 auto;
    height: 44px;
    padding: 0 16px;
    font-size: 16px;
    color: var(--kitz_text);
    background: var(--kitz_white);
    border: 1px solid var(--kitz_line);
    border-radius: 6px;
}
.declaration_form .btn_area{
    width: 310px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.declaration_form .btn_area button,.declaration_form .btn_area a{
    width: 135px;
    font-size: 18px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.download{
  width: 1046px;
  text-align: center;
  margin: 0 auto 75px;
  padding-bottom: 75px;
  border-bottom: 1px solid var(--kitz_line);
}
.download_{
  border-bottom: 0px solid var(--kitz_line);
}
.download_copy{
  width: 700px;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}
.export_btn{
    position: relative;
    display: block;
    background-color: var(--kitz_blue);
    width: 400px;
    color: #FFF;
    font-size: 16px;
    padding: 15px 0;
    margin: 50px auto 0;
    border-radius: 5px;
}
.export_btn::after{
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 30px;
  background: url(../images/common/export_btn.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.export_btn_::after{
  background: url(../images/common/arrow_white.svg) no-repeat center;
}
.download .note{
  width: 640px;
  font-size: 14px;
  text-align: left;
  margin: 40px auto 0;
  color: #E20000;
}
.download .note .line{
  text-decoration: underline;
}
.download .note .icon01,.download .note .icon02{
  position: relative;
}
.download .note .icon01::after{
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../images/common/icon01.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.download .note .icon02::after{
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/icon02.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}



.login_copy{
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}
.login-area {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 0 0 100px;
}

.login-box, .register-box {
  font-size: 18px;
  border: 2px solid #DDDDDD;
  padding: 50px;
  width: 540px;
  background: #fff;
}
.register-box{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.register-box p{
  margin-bottom: 15px;
}
.form-row {
  margin-bottom: 25px;
}
.form-row label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    margin-left: 30px;
    position: relative;
    text-align: left;
    color: var(--kitz_text);
}
.form-row label::before{
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/common/arrow_right_blue.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}
.form-row input {
  width: 415px;
  padding: 10px;
  border: 1px solid #707070;
  border-radius: 4px;
}
.form-options {
  font-size: 14px;
  margin-bottom: 30px;
}
.form-options .forgot a {
  color: #0D85DD;
  text-decoration: none;
  margin-left: 40px;
}
.form-submit button,
.register-btn {
    width: 220px;
    background: var(--kitz_blue);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    padding: 15px 0;

}
.login_form label{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: var(--kitz_line);
}
.login_form input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.login_form input[type="checkbox"]:checked {
  background: var(--kitz_blue);
  border: 1px solid #BBBBBB;
}
.login_form input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}


.userupdate,
.complete-message {
  width: 1100px;
  margin: 0 auto;
  border: solid  2px #DDDDDD;
  padding: 60px;
}

.userupdate_copy{
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}
.userupdate-section{
  border-top:1px solid #e9edf3;
  padding-top:28px;
  margin-top:28px;
}
.userupdate-section:first-of-type{
  border-top:none;
  padding-top:0;
  margin-top:0;
}

.userupdate-section-title{
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    margin-left: 30px;
    position: relative;
    text-align: left;
    color: var(--kitz_text);
    margin-left: 175px;
}
.userupdate-section-title::before{
    content: "";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/common/arrow_right_blue.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}
.userupdate-cut{
  border-bottom: 1px solid #BBBBBB;
}
.userupdate-grid{
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px 18px;
    padding-left: 150px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px #BBBBBB;
    align-items: start;
}

.userupdate-label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    margin-top: 10px;
}
.userupdate-label2{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    margin-top: 0;
    background-color: #E6F5FF;
    padding: 10px ;
}
.userupdate-label2_{
    padding: 10px ;
}

.userupdate-required{
    position: relative;
    top: -0.3em;
    color: #e04848;
    margin-left: 6px;
    font-weight: 700;
    font-size: 0.6em;
    vertical-align: super;
}

.userupdate-field{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.userupdate-input,
.userupdate-select{
  appearance:none;
  width:100%;
  max-width:560px;
  height:44px;
  padding:0 12px;
  border:1px solid #d9dee5;
  border-radius:8px;
  background:#fff;
  font-size:14px;
  outline:none;
  color: #707070;
  transition: box-shadow .15s, border-color .15s, background .15s, color .15s;
}
.userupdate-input_{
    padding: 12px 12px;
    height: 19px;
}
.userupdate-select{
  max-width: 587px!important;
  }
.userupdate-input:focus,
.userupdate-select:focus{
  border-color:#0b63c7;
  box-shadow: 0 0 0 3px rgba(11,99,199,.12);
}
.userupdate-input[disabled],
.userupdate-input.is-readonly{
  background:#f5f7fa;
  color:#4a4a4a;
}

.userupdate-select{
  background-image: linear-gradient(45deg, transparent 50%, #9aa4b2 50%),
                    linear-gradient(135deg, #9aa4b2 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}



.userupdate-half > .userupdate-input{ max-width:270px; }

.userupdate-help{
    width: 100%;
    font-size: 14px;
    color: #707070;
    margin-top: 6px;
}

.userupdate-mt20{ margin-top:20px; }

.userupdate-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
    margin: 60px auto 20px;
}
.userupdate-btn:disabled{opacity:.5; cursor:not-allowed}


.userupdate-btn,
.complete-btn{
  width: 220px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  padding: 15px 0
}

.userupdate-btn-primary,
.complete-btn-primary{
  background: var(--kitz_blue);
  color: #fff;
}

.userupdate-btn-ghost{
  background:#fff;
  border:1px solid #02459F;
  color: #02459F;
}

.userupdate-btn-danger{
    position: relative;
    background: #fff;
    border: 1px solid #E20000;
    color: #E20000;
    padding: 2px 0 2px 18px;
    line-height: 1.2;
}
.userupdate-btn-danger::before{
  position: absolute;
   content: "×";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: inherit;
  font-weight: 300;
}


.newpss_copy{
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}
.newpss-area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.newpss-box {
  font-size: 18px;
  border: 2px solid #DDDDDD;
  padding: 50px;
  width: 1100px;
  background: #fff;
}
.newpss_form label{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: var(--kitz_line);
}
.newpss-form .form-row{
  width: 435px;
  margin: 0 auto 20px;
}
.newpss-form .note{
  font-size: 14px;
  color: #707070;
  margin-bottom: 60px;
}
.newpss-form .form-row:first-child{
  display: flex;
  width: 100%;
  margin: 0 auto 45px;
  padding-bottom: 45px;
  border-bottom: solid 1px #BBBBBB;
  flex-direction: column;
  align-items: center;
}
.newpss-form .form-row label{
  width: 415px;
}


.target_products{
  width: 1048px;
  margin: 40px auto 80px;
}
.target_products h2 {
    position: relative;
    margin: 20px;
    font-size: 16px;
    color: var(--kitz_text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.target_products h2::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 20px;
    background: url(../images/common/arrow_right_blue.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}
.nochoice_copy01{
  display: flex;
  font-size: 16px;
  height: 320px;
  border: solid 1px #DBDBDB;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
}
.nochoice_copy02{
  display: flex;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  background-color: #E6F5FF;
  height: 95px;
}




.tp-scroll {
  height: 180px;
  resize: vertical;
  display: block;
}


.target-products {
  margin: 40px 0;
}

.tp-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

.tp-table-wrap {
    overflow-y: auto;
  background: #fff;

  font-size: 16px;
}

.tp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}


.tp-table thead th {
    width: 150px;
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    padding: 5px 0;
    text-align: center;
    border-right: solid 1px #fff;
}

.tp-table-head{
    background: #02459F;
    color: #FFF;
}

.tp-table-body tbody td {
    padding: 15px 6px;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    font-size: 14px;
    vertical-align: middle;
}
.tp-table-body tbody td:last-child{
    border-right: 0px solid #CCCCCC;
}

.tp-table thead tr th:first-child,.tp-table tbody tr td:first-child{
  width: 60px!important;
}
.tp-table thead tr th,.tp-table tbody tr td{
  width: 230px!important;
}

.tp-table tr.is-selected {
  background-color: #E6F5FF;
}

.tp-table-body input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.tp-detail {
  margin-top: 40px;
  padding: 0 30px 30px;
  border: 1px solid #707070;
  background: #FFF;
  overflow: auto;
  resize: vertical;
  min-height: 100px;
}

.tp-detail_copy{
  font-size: 16px;
  margin-top: 30px;
}
.tp-detail_copy a{
  position: relative;
}
.tp-detail_copy a::after{
  content: "";
  position: absolute;
  right: 3px;
  top: 40%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url(../images/common/link03.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.tp-detail a{
    color: #0C85DD;
    text-decoration: underline;
}

.tp-panel {
  display: none;
}

.tp-panel.is-active {
  display: block;
}

.tp-block {
  padding: 30px 0 0;
}

.tp-block-ttl {
  width: 100%;
  font-size: 18px;
  margin: 0 0 10px;
  display: inline-block;
  padding: 4px 10px;
  background: #E6F5FF;
  border-radius: 4px;
}
.tp-block-ttl span{
  font-size: 0.8em;
}
.tp-block-ttl2{
  background:#02459F;
  color: #FFF;
}

.tp-dllink {
  display: flex;
  margin: 10px 0;
}
.tp-dl{
  margin-left: 20px;
}
.tp-dl div{
  display: flex;
  font-size: 16px;
  margin-bottom: 10px;
}
.tp-dl dt {
  width: 150px;
}

.tp-dl dd {
  margin: 0;
}

.tp-html {
    font-size: 16px;
    margin-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.tp-links li{
  display: flex;
}
.tp-links li p{
  color: #707070;
}
.tp-links li p,.tp-links li a{
  width: 20%;
}
.tp-links li p:first-of-type{
  width: 10%;
}

.tp-html ul {
}

.tp-html a {
  text-decoration: underline;
}

/* =========================
   検索結果
   ========================= */
.searchresults_inner {
  width: 100%;
  padding: 50px 0;
  margin: 0 auto;
  background-color: #F5F5F5;
}
.td2{
}
.td2in{
    display: flex;
    flex-direction: row;
}
.td2con{
  position: relative;
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    gap: 20px;
}
.td2con.flex{
  padding: 10px 25px 10px 10px;
}
.td2con::after{
    content: "";
    position: absolute;
    top: 51%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 160%;
    background: #BBB;
}
.td2in .td2con:last-child::after{
  width: 0;
}
.searchresults_btn01{
    background-color: #0C85DD;
    border: 0;
    color: #FFF !important;
    text-decoration: none!important;
    border-radius: 5px;
    padding: 5px 8px;
}
.searchresults_btn02{
    width: 140px;
    border: 0;
    background-color: #0C85DD;
    color: #FFF !important;
    text-decoration: none!important;
    padding: 5px;
    border-radius: 20px;
    margin: 0 auto;
    border: solid 1px #0C85DD;
}


/* 一覧に追加する後 */
.td2in.disabled {

}
.td2in.disabled label {
  pointer-events: none;
}
.searchresults_btn02.active {
  background-color: #FFF!important;
  color: #0C85DD!important;
  border: solid 1px #0C85DD;
}
.td2in .r input:disabled:checked::after{
    content: "";
    position: absolute;
    inset: 3px;
    background: #000;
    border-radius: 50%;
}





/* =========================
   商品詳細
   ========================= */

.productdetail {
  width: 1110px;
  margin: 0 auto;
}

.productdetail_inner {
  padding: 50px 0 80px;
  margin-bottom: 80px;
  border-bottom: 1px var(--kitz_line) solid;
}

.productdetail_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--kitz_blue);
  padding-bottom: 12px;
  margin-bottom: 50px;
  font-size: 14px;
}

.productdetail_title {
  font-size: 28px;
  color: var(--kitz_blue);
  margin: 0;
}

.productdetail_body {
  display: grid;
  grid-template-columns: 460px 1fr;
  column-gap: 40px;
}

.productdetail_left {}

.productdetail_mainimg {
  width: 420px;
  height: 320px;
  border: 1px solid var(--kitz_line);
  background: var(--kitz_white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.productdetail_mainimg img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.productdetail_icon{
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.productdetail_icon img{
  width: 75px;
  height: 75px;
  margin-right: 5px;
}
.productdetail_icon p{
  font-size: 34px;
}

.productdetail_thumbs {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 16px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}

.productdetail_thumbs .thumb {
  width: 130px;
  height: 96px;
  padding: 0;
  border: 1px solid var(--kitz_line);
  background: var(--kitz_white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.productdetail_thumbs img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.productdetail_right {}

.productdetail_lead {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.productdetail_pressnote {
  font-size: 12px;
  color: #727272;
  text-align: right;
  margin-bottom: 6px;
}

/* テーブル共通 */
.productdetail_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  font-size: 14px;
}

.productdetail_table th,
.productdetail_table td {
  border: 1px solid var(--kitz_line2);
  padding: 5px 12px;
  text-align: center;
}

.productdetail_table thead th {
  background: var(--kitz_white);
  text-align: center;
}

.productdetail_table_small thead th.c1 { width: 120px; }
.productdetail_table_small thead th.c2 { width: 260px; }
.productdetail_table_small thead th.c3 { width: 260px; }

/* KVテーブル（左右見出し） */
.productdetail_table_kv tbody th {
  width: 260px;
  text-align: left;
}

/* 細部の色味・余白 */
.productdetail_table_kv th {
  border: 0px solid var(--kitz_white);
  border-right: 2px solid var(--kitz_white);
  padding: 5px 24px;
}
.productdetail_table_kv td {
  border: 0px solid var(--kitz_white);
  text-align: left;
  padding: 5px 24px;
}

.productdetail_table_kv tr {
  background: #EBEAEA;
}
.productdetail_table_kv tr:nth-child(odd) {
  background: #F4F4F4;
}

/* --------------- link --------------- */
.link { width: 1100px; margin: 0 auto; }
.link_inner {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 80px;
  border-bottom: 1px #DBDBDB solid;
}
.link_lead {
  text-align: center;
  font-size: 18px;
  color: var(--kitz_text);
  margin: 0 0 30px;
}
.link_box_head {
  background: var(--kitz_blue);
  color: var(--kitz_white);
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
}

.link_list { list-style: none; margin: 22px 0 0; padding: 0 12px; }
.link_item { padding: 12px 0; text-align: center; }
.link_anchor {
  position: relative;
  font-size: 16px;
  color: #0C85DD;
  text-decoration: none;
}

.link_anchor::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/common/link02.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}

/* --------------- download --------------- */
.download { 
  width: 1110px;
  margin: 0 auto;
  border-bottom: 0px;
}
.download_inner { 
  padding: 0 0 80px;
  margin-bottom: 80px;
  border-bottom: 1px #BBBBBB solid;
}
.download_lead {
  text-align: center;
  font-size: 16px;
  margin: 0 0 25px;
  color: var(--kitz_text);
  line-height: 1.6;
}

.download_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 50px;
    border-collapse: separate;
  /* border-spacing: 0 10px; */
}
.download_table th,
.download_table td {
  position: relative;
  font-size: 14px;
  border-right: 1px solid #DBDBDB;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
}

.download_table th:nth-child(1) {
  width: 50px;
}

.download_table th:nth-child(2) {
  width: 300px;
}

.download_table th:nth-child(3) {
  width: 630px;
}

.download_table th:nth-child(4) {
  width: 117px;
}

.download_table td:last-child{
  border-right: 0px solid #DBDBDB;
}
.download_table td:after {
    content: "";
    position: absolute;
    width: 110%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #DADADA;
}
.download_table td:last-child:after{
    width: 100%;
}
.download_table thead th {
  font-size: 16px;
  line-height: 1.2;
  background: var(--kitz_blue);
  color: var(--kitz_white);
  font-weight: 400;
  text-align: center;
  padding: 5px 3px;
  border: 0.5px solid var(--kitz_white);
}
.download_table thead tr th div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.download_table .col_check { width: 60px; }
.download_table .col_type { width: 280px; }
.download_table .col_file { width: auto; }
.download_table .col_dl { width: 180px; text-align: center; }

.download_icon{
  position: relative;
  width: 30px;
  height: 37px;
  display: block;
  background: url(../images/common/materials_on.svg) no-repeat center;
  background-size: contain;
  border: none;
  margin-right: 15px;
}
.download_icon p{
  position: absolute;
  color: #02459F;
  font-size: 6px;
  width: 80%;
  height: auto;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
}
.download_icon.disabled{
    background: url(../images/common/materials_off.svg) no-repeat center;
    background-size: contain;
}
.download_icon.disabled p{
  color: #C2D8E6;
}
.download_flex{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    flex-direction: row;
}




.icon_dl{
  content: "";
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 28px;
  background: url(../images/common/download_on.svg) no-repeat center;
  background-size: contain;
}

.download_actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.download_table input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0 auto;
}

.download_table input[type="checkbox"]:checked {
  background: var(--kitz_blue);
border: 1px solid #BBBBBB;
}

.download_table input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}




/* --------------- memberdownload --------------- */
.memberdownload {
  width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.memberdownload_inner {
  text-align: center;
  padding: 0 0 80px;
  margin-bottom: 80px;
  border-bottom: 1px #BBBBBB solid;
}

.md_needlogin { /* エラーカラー（ブランド外なので据え置き） */
  color: #e53935;
}

.memberdownload_lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--kitz_text);
  margin: 0 0 25px;
}

.md_loginlink {
  color: #0C85DD;
  text-decoration: underline;
}


.memberdownload_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  table-layout: fixed;
  font-size: 14px;
  border-collapse: separate;
    /* border-spacing: 0 10px; */
}

.memberdownload_table th,
.memberdownload_table td {
    position: relative;
   border-right: 1px solid #BBBBBB;
  padding: 5px 0;
  vertical-align: middle;
  text-align: center;
  background: var(--kitz_white);
}

.memberdownload_table th:nth-child(1) {
  width: 50px;
}

.memberdownload_table th:nth-child(2) {
  width: 160px;
}

.memberdownload_table th:nth-child(3) {
  width: 145px;
}

.memberdownload_table th:nth-child(4) {
  width: 120px;
}

.memberdownload_table th:nth-child(5) {
  width: 120px;
}

.memberdownload_table th:nth-child(6) {
  width: 100px;
}

.memberdownload_table th:nth-child(7) {
  width: 100px;
}

.memberdownload_table th:nth-child(8) {
  width: 100px;
}

.memberdownload_table th:nth-child(9) {
  width: 100px;
}

.memberdownload_table th:nth-child(10) {
  width: 100px;
}

.memberdownload_table td:last-child{
  border-right: 0px solid #BBBBBB;
}
.memberdownload_table td:after {
    content: "";
    position: absolute;
    width: 110%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #DADADA;
}
.memberdownload_table td:last-child:after{
    width: 100%;
}
.memberdownload_table td{
  padding: 15px;
}
.memberdownload_table td:first-child{
  padding: 0;
}

.anzenproduct_inner {
  text-align: center;
  padding: 0 0 40px;
}
.anzenproduct_table tbody tr:nth-child(even) td{
  background-color: #F8F8F8;
}

.anzenproduct_table th{
    border-top: #0C85DD 1px solid!important;
    border-bottom: #0C85DD 1px solid!important;
}
.anzenproduct_table th[colspan="2"]{
    border-bottom: #FFF 1px solid!important;
}

.anzenproduct_table th:nth-child(1) {
  width: 160px;
  background-color: #0C85DD;
}
.anzenproduct_table th:nth-child(2) {
  width: 160px;
  background-color: #0C85DD;
}
.anzenproduct_table th:nth-child(3) {
  width: 160px;
  background-color: #0C85DD;
}
.anzenproduct_table th:nth-child(4) {
  width: 160px;
  background-color: #0C85DD;
}
.anzenproduct_table th:nth-child(5) {
  width: 450px;
  color: #0C85DD;
  border: #0C85DD 1px solid ;
  background-color: #FFF;
}
.anzenproduct_actions {
    padding-bottom: 80px;
    border-bottom: 1px #BBBBBB solid;
}
.anzenproduct_actions .comparison_btn{
  width: 290px;
}
.anzenproduct_actions .topbtn{
  margin: 0;
}


.memberdownload_table thead th {
  font-size: 15px;
  line-height: 1.2;
  background: var(--kitz_blue);
  color: var(--kitz_white);
  font-weight: 400;
  text-align: center;
  padding: 5px 3px;
  border: 0.5px solid var(--kitz_white);
}

.memberdownload_table input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.memberdownload_table input[type="checkbox"]:checked {
  background: var(--kitz_blue);
border: 1px solid #BBBBBB;
}

.memberdownload_table input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}

.memberdownload_table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin-bottom: 50px;
}

.memberdownload_table tbody td {
  background: #fff;
  background-clip: padding-box;
}
.memberdownload_table tbody td:first-child{
  padding: 0;
}
.memberdownload_table tbody td.col_price,
.memberdownload_table tbody td.col_doc {
    text-align: right;
}

/* .memberdownload_table tbody tr + tr td {
  border-top: 10px solid transparent;
} */
.memberdownload_flex{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.memberdownload_flex .download_icon{
    margin-right: 0px;
    margin-left: 3px;
    margin-bottom: 5px;
}

.md_allhead {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.md_sizehead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.md_sizehead_ttl { font-weight: bold; }

.md_sizehead_unit { display: flex; gap: 24px; }
.md_sizehead_unit .mm,
.md_sizehead_unit .inch { font-size: 13px; opacity: .95; }

.md_sizecell { 
    display: flex;
    justify-content: center;
    gap: 24px;
}

.md_sizecell_mm,
.md_sizecell_inch { display: inline-block; min-width: 48px; }

.md_price { letter-spacing: .03em; }

.md_doccell {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: default;
  margin-right: 20px;
}

.md_doccell input[type="checkbox"] { width: 18px; height: 18px; }
.md_doccell .icon_dl{ right: -30px; }

/* ボタン群 */
.memberdownload_actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 28px;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn_ghost {
  color: var(--kitz_blue);
  border-color: var(--kitz_blue);
  background: var(--kitz_white);
}
.btn_ghost:disabled{
    background-color: #FFF!important;
    color: #bbbbbb!important;
    border: #bbbbbb 1px solid !important;
}
.btn_primary:disabled{
    background-color: #BBBBBB!important;
    color: #FFF!important;
    border: none!important;
}

.btn_primary {
  color: var(--kitz_white);
  background: var(--kitz_blue);
}

.btn_secondary {
  color: var(--kitz_white);
  background: var(--kitz_skyblue);
}

.is_disabled,
.is_disabled:hover {
  cursor: not-allowed;
}

/* --------------- link02 --------------- */
.link02 {
  width: 1110px;
  margin: 0 auto;
  padding: 0 0 80px;
  margin-bottom: 80px;
  border-bottom: 1px #BBBBBB solid;
}
.link02_inner {
  display: flex;
  width: 550px;
  justify-content: space-between;
  margin: 0 auto;
}
.link02 a{
  font-size: 16px;
  text-align: center;
  min-width: 250px !important;
}

/* --------------- other --------------- */
.other {
  width: 1110px;
  margin: 0 auto;
}

.other_inner {
  padding: 0 0 80px;
  margin-bottom: 80px;
  text-align: center;
}
.other ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;s
}
.other li{
  margin-bottom: 15px;
}
.other_img{
  width: 345px;
  height: 195px;
  background: var(--kitz_white);
  margin-bottom: 5px;
}
.other_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.other li p{
  font-size: 14px;
  text-align: left;
}



.downloadlist_con{
  padding: 60px 0;
}
.downloadlist_con ul{
  text-align: left;
  font-size: 16px;
  margin-left: 30px;
}
.downloadlist_con-grid{
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px 18px;
    align-items: start;
}
.downloadlist_con-label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    margin-top: 0;
    background-color: #F5F5F5;
    padding: 10px 25px;
}
.downloadlist_con-radio .radio{
  width: 150px;
  padding: 10px 0;
}
.downloadlist_con .delete{
  color: #0C85DD;
  background-color: #FFF;
  border: solid 1px #0C85DD;
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto;
  padding: 5px 10px;
}
.downloadlist_con .up {
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  background-color: #0C85DD;
  border-radius: 5px;
}
.downloadlist_con tbody tr:last-child .down{
  background-color: #E6E6E6;
}
.downloadlist_con tbody tr:first-child .up{
  background-color: #E6E6E6;
}
.downloadlist_con .up::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background: url(../images/common/arrow_up.svg) no-repeat center / contain;
  pointer-events: none;
}
.downloadlist_con .down {
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  background-color: #0C85DD;
  border-radius: 5px;
}
.downloadlist_con .down::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background: url(../images/common/arrow_down.svg) no-repeat center / contain;
  pointer-events: none;
}

.downloadlist_con .updown {
  position: relative;
}
.downloadlist_con .updown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  background: url(../images/common/arrow_updown.svg) no-repeat center / contain;
  pointer-events: none;
}

.downloadlist_con_copy {
    text-align: left;
    font-size: 16px;
    margin-left: 30px;
    margin-bottom: 15px;
}

.downloadlist_con_btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 100px auto;
}


#timeModal {
  display: none;
}


#serviceModal {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(187, 187, 187, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
}

.modal {
  background: #fff;
  width: 740px;
  max-width: 90%;
  padding: 60px;
  position: relative;
  text-align: center;
}

.modal-header {
  background: #02459F;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
}

.modal-body {
  padding: 30px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 25px;
  height: 2px;
  background: #BBBBBB;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}


.facorite_modal{
  background-color: #FFF;
  padding: 40px 50px;
}
.facorite_modal h2{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.facorite_modal p{
  font-size: 15px;
  margin-bottom: 15px;
}
.facorite_modal_btn{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.facorite_modal_btn a{
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-radius: 5px;
}
.facorite_modal_btn .facorite_modal_btn01{
  color: #707070;
  background-color: #E4E4E4;
}
.facorite_modal_btn .facorite_modal_btn02{
  color: #FFFFFF;
  background-color: #02459F;
}



.productnumber {
  margin: 0 auto;
  padding: 60px 0;
  background: var(--kitz_bg);
}
.productnumber p{
  font-size: 16px;
}
.productnumber_inner {
  position: relative;
  max-width: 1046px;
  margin: 0 auto
}
.productnumber_desc {
  font-size: 16px;
  color: var(--kitz_text);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 55px;
}
.productnumber_box {
  position: relative;
  margin-bottom: 55px
}
.productnumber_label {
  position: relative;
  margin: 20px;
  font-size: 16px;
  color: var(--kitz_text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px
}
.productnumber_label::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(../images/common/arrow_right_blue.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.productnumber_textarea {
  width: 994px;
  height: 120px;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px 25px;
  border: 1px solid var(--kitz_line);
  border-radius: 6px;
  resize: vertical;
  color: var(--kitz_text);
  background: var(--kitz_white);
  margin-bottom: 20px;
}
.productnumber_textarea::placeholder {
  color: #BBBBBB!important;
}

.productnumber_option {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 40px;
}
.productnumber_option div{
  display: flex;
  gap: 20px;
}
.productnumber_check {
  font-size: 14px;
  color: var(--kitz_text);
  display: flex;
  align-items: center;
  margin-right: 50px;
  gap: 6px
}
.productnumber_option input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.productnumber_option input[type="checkbox"]:checked {
  background: var(--kitz_blue);
border: 1px solid #BBBBBB;
}
.productnumber_option input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 8px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 1px;
}

.productnumber_btn {
  width: 140px;
  background: var(--kitz_blue);
  color: var(--kitz_white);
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
}
#exactCheck:checked ~ .productnumber_btn {
  background: var(--kitz_blue);
  color: var(--kitz_white);
  cursor: pointer;
}
.productnumber_btn:disabled {
  background: #DBDBDB;
  color: var(--kitz_white);
  cursor: not-allowed;
}


.alert{
    position: absolute;
    bottom: 60px;
    display: table;
    padding: 2px 20px 2px 50px;
    color: #E20000;
    background-color: #FFE5E5;
    border-radius: 5px;
    border: solid 1px #E20100;
    min-width: 460px;
    text-align: center;
}
.alert p{
    font-size: 14px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.alert p::before{
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url(../images/common/alert.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}
.productnumber_box .alert{
  position: absolute;
  top: 285px;
  left: 0;
}
.item_inner .alert{
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}



/* タブ */
.tabs {
  width: 1100px;
  margin: 0 auto;
  font-family: sans-serif;
}

.tab-buttons {
  display: flex;
}

.tab-button {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  color: #BBBBBB;
  border: none;
  font-size: 16px;
  transition: background 0.3s;
  border-bottom: 2px solid #ccc;
}

.tab-button:last-child {
  border-right: none;
}

.tab-button.active {
  color: #02459F;
  border-bottom: solid 2px #02459F;
  font-weight: bold;
}

.tab-content {
  display: none;
  border-top: none;
}

.tab-content.active {
  display: block;
}


.note{
  font-size: 16px;
}

.comparison{
  position: relative;
  text-align: center;
  background-color: #FFF;
  max-width: 80%;
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}
.comparison_close{
    position: absolute;
    font-size: 40px;
    font-weight: 100;
    line-height: 1;
    top: 10px;
    right: 10px;
    color: #BBBBBB;
    cursor: pointer;
}
.comparison_copy{
  font-size: 16px;
  text-align: center;
  margin: 0 auto 15px;
}
.comparison_copy span{
  font-size: 0.8em;
  color: #E20000;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
  table-layout: fixed;
  text-align: center;
}
.compare-table thead{
  background-color: #02459F;
}
.compare-table thead:nth-child(1) {
  width: 10%;
}
.compare-table thead th:nth-child(2),
.compare-table thead th:nth-child(3),
.compare-table thead th:nth-child(4),
.compare-table thead th:nth-child(5),
.compare-table thead th:nth-child(6) {
  width: 18%;
}

.compare-table th,
.compare-table td {
  border: 1px solid #fff;
  padding: 10px 8px;
  word-break: break-all;
  text-align: center;
}
.compare-table th:first-child{
  width: 10%;
  background-color: #D6E1EA;
}


/* trが偶数で tdが偶数 */
.compare-table tbody tr:nth-child(even) td:nth-child(even) {
  background-color: #F8F8F8;
}

/* trが偶数で tdが奇数 */
.compare-table tbody tr:nth-child(even) td:nth-child(odd) {
  background-color: #F2F2F2;
}

/* trが奇数で tdが偶数 */
.compare-table tbody tr:nth-child(odd) td:nth-child(even) {
  background-color: #F3F3F3;
}

/* trが奇数で tdが奇数 */
.compare-table tbody tr:nth-child(odd) td:nth-child(odd) {
  background-color: #E6E6E6;
}




/* 見出し行（製品記号） */
.compare-table thead th {
  background: #02459F!important;
  color: #fff;
  font-weight: 400;
  text-align: center;
  position: relative;
}

/* 閉じるボタン */
.compare-table .close-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #fff;
    color: #02459F;
    border: none;
    width: 20px;
    height: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    margin: 0 auto;
}
.compare-table .close-btn:hover {
  background: #ccc;
}

/* 追加／削除ボタン */
.add-btn,
.del-btn {
  display: inline-block;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.add-btn {
  background: #0059b2;
  color: #fff;
}

.del-btn {
  background: #bbb;
  color: #0059b2;
  border: 1px solid #0059b2;
}

/* スクロール対応（5件時に横スクロール） */
.compare-table-wrapper {
  overflow-x: auto;
}
.compare-table {
  min-width: 900px;
}






/* ぐるぐるローダー用 */
.download_btn,
.comparison_btn {
  position: relative;
  overflow: hidden;
}

.download_btn .label,
.download_btn .spinner,
.comparison_btn .label,
.comparison_btn .spinner {
  vertical-align: middle;
}

.download_btn .spinner,
.comparison_btn .spinner {
  display: none;
  width: 1.05em;
  height: 1.05em;
  margin-left: 0.5em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.download_btn.is-loading,
.comparison_btn.is-loading {
  pointer-events: none;
  opacity: 0.9;
}

.download_btn.is-loading .spinner,
.comparison_btn.is-loading .spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
