
@charset "UTF-8";
@media screen and (max-width: 750px) {
    .pc{ display: none !important; }
    .sp{ display: block !important; }



:root {
  --kitz_blue: #02459F;
  --kitz_skyblue: #2b393d;
  --kitz_line: #707070;
  --kitz_text: #000;
  --kitz_white: #fff;
  --kitz_bg: #E6F5FF;
}


/* チェックボックス */
.check_box{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 35px auto;
}
.check_box label {
  font-size: 2.8vw;
  color: var(--kitz_text);
  display: flex;
  align-items: center;
  margin-right: 0;
  gap: 6px;
}
.check_box input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4.5vw;
  height: 4.5vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.5vw;
  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: 0.5vw;
  left: 1.3vw;
  width: 1vw;
  height: 2vw;
  border: solid #fff;
  border-width: 0 0.5vw 0.5vw 0;
  transform: rotate(45deg);
  border-radius: 0.2vw;
}

/* ラジオボタン */
.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4vw;
  width: 100%;
  margin-bottom: 1.333vw;
}
.radio input {
    appearance: none;
    width: 3.5vw;
    height: 3.5vw;
    background-color: var(--kitz_white);
    border: 1px solid var(--kitz_line);
    border-radius: 50%;
    position: relative;
}
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 0.4vw;
  background: var(--kitz_blue);
  border-radius: 50%;
}



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

.layer2_title_inner {
  max-width: 160.643vw;
  margin: 0 auto;
  padding: 0 2.677vw;
}

/* タイトル */
.layer2_title_txt {
  font-size: 4.5vw;
  font-weight: bold;
  letter-spacing: 0.5vw;
  color: var(--kitz_blue);
  margin: 0 0 7vw;
  position: relative;
  display: inline-block;
}

.layer2_title_txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2vw;
  width: 100%;
  height: 0.3vw;
  background-color: var(--kitz_blue);
}

.layer2_title_copy{
    font-size: 2.8vw;
    text-align: center;
    margin: 0 0 3.333vw;
}
.layer2_title_copy a{
  color: #0C85DD;
  text-decoration: underline;
}


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


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



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

.search_body h2 {
  position: relative;
  margin: 4vw;
  font-size: 3.8vw;
  color: var(--kitz_text);
  margin-bottom: 3vw;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

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

.search_body {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 3vw 0 0;
    border-radius: 2vw;
}

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

.keyword_input {
  flex: 1 1 auto;
  height: 10vw;
  padding: 0 2vw;
  font-size: 3.2vw;
  color: var(--kitz_text);
  background: var(--kitz_white);
  border: 1px solid var(--kitz_line);
  border-radius: 1vw;
}

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

.keyword_btn {
  flex: 0 0 auto;
  height: 10vw;
  padding: 0 6vw;
  font-size: 2.8vw;
  color: var(--kitz_white);
  background: var(--kitz_blue);
  border: 0;
  border-radius: 1vw;
  cursor: pointer;
}

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

/* =========================
   絞り込み条件
   ========================= */
.conditions {
  width: 100%;
  margin: 0 auto;
}
.cond_inner {
  padding: 0;
  width: 90vw;
  margin: 0 auto;
}
.cond_inner .cond_row:last-child{
      border-bottom: 1px solid var(--kitz_line);
}
.cond_ttl {
  font-size: 3.748vw;
  font-weight: bold;
  color: var(--kitz_blue);
  text-align: center;
  margin: 1.071vw 0 3.213vw;
  text-underline-offset: 0.803vw;
  text-decoration: underline;
}

.cond_row {
    width: max-content;
    padding: 5vw 0;
    border-top: 1px solid var(--kitz_line);
    display: flex;
    grid-template-columns: 160px 1fr;
    column-gap: 3.2vw;
    align-items: start;
    flex-direction: column;
}
.cond_row:first-of-type { border-top: 0 }
.cond_row_{
    width: 150vw;
    border-top: 0px solid var(--kitz_line);
    text-align: left;
    padding: 3vw 0 3vw 65vw;
    font-size: 3.2vw;
}
.cond_label {
  font-size: 3.2vw;
  color: var(--kitz_text);
  line-height: 3.2vw;
  margin-bottom: 3vw;
}
.cond_field {
   display: flex;
   flex-wrap: nowrap;
   gap: 2vw
  }
  .cond_field[data-group="std"] {
    flex-direction: column;
  }
.chip {
  width: max-content;
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 1.5vw 4vw;
  font-size: 3.2vw;
  color: #707070;
  background: var(--kitz_white);
  border: 0 solid var(--kitz_line);
  border-radius: 2.4vw;
  line-height: 1;
  cursor: pointer;
}
.chip_on {
  color: var(--kitz_white);
  background: var(--kitz_blue);
  border-color: var(--kitz_blue);
}
.chip_disabled {
  color: var(--kitz_white);
  background: #DBDBDB;
  pointer-events: none;
  opacity: 0.6;
}
.cond_radio {
  display: flex;
  flex-wrap: nowrap;
  gap: 4vw;
  width: 100%;
  margin-bottom: 10px
}
.r {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 2vw;
  font-size: 3.2vw;
  color: var(--kitz_text);
}
.r input {
    appearance: none;
    width: 3.5vw;
    height: 3.5vw;
    background-color: var(--kitz_white);
    border: 1px solid var(--kitz_line);
    border-radius: 50%;
    position: relative;
}
/* .r input:checked { border-color: var(--kitz_blue); } */
.r input:checked::after {
  content: "";
  position: absolute;
  inset: 0.35vw;
  background: #0C85DD;
  border-radius: 50%
}
.aster { display: inline-block; margin-left: 0.533vw; color: var(--kitz_blue); }
.cond_classes { display: flex; flex-wrap: wrap; gap: 12px }
.is-hidden { display: none !important; }
.cond_foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1vw;
flex-direction: column;
}
.cond_count { 
    font-size: 2.8vw;
    margin-bottom: 4vw;
    margin-right: 0;
    color: var(--kitz_text);
 }
.num {
  font-size: 4.5vw;
  color: var(--kitz_blue);
  font-weight: 700;
  padding: 0 6px
}
.cond_actions { display: flex; gap: 16px }
.cond_actions .btn{
  width: 40vw;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 12vw;
    font-size: 3.8vw;
    border-radius: 2vw;
    border: 0.3vw solid var(--kitz_blue);
    background: var(--kitz_white);
    color: var(--kitz_text);
}
.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: 1.6vw;
  color: var(--kitz_text);
  text-align: right;
  padding: 1.333vw 0;
}


/* =========================
   一覧テーブル
   ========================= */
.item_inner {
  position: relative;
  margin: 8vw auto 20vw;
  width: 100%;
  max-width: 90vw;
}
.item_inner_{
    margin: 5vw auto 8vw;
}

.item_notes {
  font-size: 2.8vw;
  line-height: 1.6;
  margin-bottom: 12vw;
  color: var(--kitz_text);
}
.item_notes li {
  padding-left: 2.8;
  text-indent: -2.8;
}
.item_notes .blue {
  color: var(--kitz_blue);
}
.item_notes_star { color: #E20000; }

.item_actions {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2vw;
  margin-bottom: 3vw;
}
.item_actions .add_btn,.item_actions .reset_btn{
    min-width: 43vw;
}
.item_display {
  position: absolute;
  top: auto;
  right: auto;
  left: 0;
  bottom: 9vw;
  gap: 3vw;
  display: flex;
  margin-left: auto;
  font-size: 2.8vw;
  color: var(--kitz_line);
  flex-direction: row;
  align-items: center;
}
.item_select {
  padding: 0.5vw 1vw;
  color: var(--kitz_line);
}

/* タブ */
.tab_results {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #DDDDDD;
  padding: 2vw;
  gap: 2vw;
  border-radius: 0.5vw;
  margin-bottom: 7vw;
}
.tab_results::after {
  content: "";
  position: absolute;
  bottom: -3vw;
  left: 46%;
  right: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5vw 3vw 0 3vw;
  border-color: #DDDDDD transparent transparent transparent;
}
.tab_results
.tab_results::after {
  content: "";
  position: absolute;
  bottom: -1.333vw;
  right: 10.667vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0vw;
  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: 48%;
  flex: 1;
  padding: 1.5vw;
  cursor: pointer;
  background: #fff;
  font-size: 2.8vw;
  font-weight: 500 !important;
  transition: background 0.3s;
  color: #0C85DD;
  border: 1px solid #0C85DD !important;
  border-radius: 0.667vw;
}
.tab_results .tab-button.tab-button2{
    color: #02459F;
    border: 1px solid #02459F!important;
}
.tab_results .tab-button::before{
position: absolute;
        content: "";
        display: block;
        width: 3vw;
        height: 3vw;
        top: 2.2vw;
        left: 2vw;
        -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 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3vw;
  font-size: 2.8vw;
}
.item_table input{
  width: 3vw;
  height: 3vw;
}
.item_table input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4.5vw;
  height: 4.5vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.5vw;
  background: #fff;
  cursor: pointer;
  position: relative;
}

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

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

.item_table01 thead tr th:nth-child(1) {
  width: 10vw !important; /* 30px */
  background-color: #0C85DD;
}
.item_table01 thead tr th:nth-child(2) {
  width: 25vw !important; /* 90px */
  background-color: #0C85DD;
}

.item_table01 thead tr th:nth-child(3) {
  width: 23vw !important; /* 80px */
  background-color: #0C85DD;
}

.item_table01 thead tr th:nth-child(4) {
  width: 30vw !important; /* 100px */
  background-color: #0C85DD;
}

.item_table01 thead tr th:nth-child(5) {
  width: 30vw !important; /* 100px */
  background-color: #0C85DD;
}

.item_table01 thead tr th:nth-child(6) {
  background-color: #0C85DD;
}

.item_table01 thead tr:nth-child(2) th {
  width: 23vw !important; /* 85px */
  background-color: #0C85DD;
}

.item_table01 thead tr:nth-child(1) th:nth-child(7) {
  width: 20vw !important; /* 85px */
  color: #0C85DD;
  background-color: #FFF;
  border: solid #0C85DD 1px;
}



.item_table02 thead tr th:nth-child(1) {
  width: 5vw !important; /* 30px */
}

.item_table02 thead tr th:nth-child(2) {
  width: 25vw !important; /* 90px */
}

.item_table02 thead tr th:nth-child(3) {
  width: 23vw !important; /* 80px */
}

.item_table02 thead tr th:nth-child(4) {
  width: 23vw !important; /* 100px */
}

.item_table02 thead tr th:nth-child(5) {
  width: 23vw !important; /* 100px */
}

.item_table02 thead tr th:nth-child(6) {
  width: 12vw !important; /* 40px */
}

.item_table02 thead tr:nth-child(2) th {
  width: 23vw !important; /* 80px */
}

.item_table02 thead tr:nth-child(1) th:nth-child(9) {
  width: 20vw !important; /* 85px */
  color: #02459F;
  background-color: #FFF;
  border: solid #02459F 1px;
}

.item_table11 thead tr th:nth-child(1) {
  width: 8vw !important;
}
.item_table11 thead tr th:nth-child(11) {
  width: 16vw!important;
}
.item_table11 thead tr th:nth-child(12) {
  width: 20vw !important; /* 80px */
  color: #02459F;
  background-color: #FFF;
  border: solid #02459F 1px;
}

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

.item_table11_{
  width: 400vw!important;
}
.item_table11_ thead tr th:nth-child(1) {
  width: 12vw !important; /* 40px */
}

.item_table11_ thead tr th:nth-child(2) {
  width: 20vw !important; /* 110px */
}

.item_table11_ thead tr th:nth-child(3) {
  width: 18vw !important; /* 55px */
}

.item_table11_ thead tr th:nth-child(4) {
  width: 18vw !important; /* 55px */
}

.item_table11_ thead tr th:nth-child(5) {
  width: 18vw !important; /* 55px */
}

.item_table11_ thead tr th:nth-child(6) {
  width: 18vw !important; /* 55px */
}

.item_table11_ thead tr th:nth-child(7) {
  width: 25vw !important; /* 140px */
}

.item_table11_ thead tr th:nth-child(15) {
  width: 16vw !important; /* 50px */
}

.item_table11_ thead tr th:nth-child(16) {
  width: 20vw !important; /* 80px */
  color: #02459F;
  background-color: #FFF;
  border: solid #02459F 1px; /* ← borderそのまま */
}
.item_table11 .icon_btn.off {
  background: url(../images/common/materials_off_gray_sp.svg) no-repeat center;
}

.item_table14 thead tr th:nth-child(3) {
    width: 60vw !important;
}
.item_table14 thead tr th:nth-child(8) {
  width:  20vw !important;
}

.item_table16{
  width: 180vw!important;
}
.item_table16 thead tr th:nth-child(1) {
  width: 20vw !important;
}
.item_table16 thead tr th:nth-child(2) {
  width: 60vw !important;
}
.item_table16 thead tr th:nth-child(6) {
  width: 20vw !important;
}
.item_table16 tbody tr td:nth-child(2) {
  text-align: left;
}



.item_table{
  border-collapse: separate;
  /* border-spacing: 0 3vw; */
}
.item_table thead {
  color: var(--kitz_white);
  background-color: var(--kitz_blue);
}
.item_table thead th,
.item_table thead td {
  font-size: 2.8vw;
  line-height: 1;
  padding: 2vw 0.5vw;
}
.item_table thead tr th div {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    align-items: center;
}
.item_table th,
.item_table td {
  position: relative;
  font-size: 2.8vw;
  min-width: 10vw;
  border-right: 0.5px solid #BBBBBB;
  padding: 3vw 2vw;
  text-align: center;
  line-height: 1.2;
}
.item_table td:after{
  content: "";
  position: absolute;
  width: 110%;
  left: 0;
  right: 0;
  bottom: 0;
    height: 1px;
  background: #DADADA;
}
.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: 18vw;
  height: 18vw;
  overflow: hidden;
}
.slider_track picture picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon_btn {
  position: relative;
  width: 6vw;
  height: 6vw;
  display: block;
  margin: 0 auto 2vw;
  background: url(../images/common/materials_on_sp.svg) no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.icon_btn p {
  display: none;
  position: absolute;
  color: var(--kitz_blue);
  font-size: 1.3vw;
  width: 65%;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  line-height: 1;
  letter-spacing: 0;
}
.icon_btn.off {
  background: url("../images/common/materials_off_sp.svg") no-repeat center;
  background-size: contain;
}
.icon_btn.disabled {
  background: url("../images/common/materials_off_sp.svg") no-repeat center;
  background-size: contain;
}
.icon_btn.disabled p{
  color: #DBDBDB;
}
.icon_btn.disabled::after {
    background: url(../images/common/download_off_sp.svg) no-repeat center;
}
.icon_btn.disabled {
  pointer-events: none;
}

.btn_detail {
    padding: 1vw;
    border-radius: 1vw;
    display: inline-block;
    color: var(--kitz_white);
    background-color: var(--kitz_blue);
    white-space: nowrap;
}
.btn_detail_delete{
    padding: 1vw;
    border-radius: 1vw;
    display: inline-block;
    color: var(--kitz_blue)!important;
    border: solid 1px var(--kitz_blue);
    background-color: var(--kitz_white);
    white-space: nowrap;
}

.item_pagination {
  display: flex;
  font-size: 2.8vw;
  justify-content: space-between;
  align-items: center;
  gap: 2.677vw;
  margin-top: 15vw;
}
.facorite .item_pagination{
  margin-top: 8vw;
}
.item_pagination .pages a {
  font-size: 3.2vw;
  margin: 0 0.5vw;
  text-decoration: none;
  color: #0C85DD;
}
.item_pagination .pages a.current {
  color: #707070;
}






.declaration{
  width: 90vw;
  text-align: center;
  margin: 0 auto 5vw;
  padding-bottom: 10vw;
  border-bottom: 1px solid var(--kitz_line);
}
.declaration_{
  border-bottom: 0px solid var(--kitz_line);
}
.declaration_copy01{
    font-size: 2.8vw;
    text-align: center;
    margin: 0 0 3.333vw;
}
.declaration_copy01 a{
  color: #0C85DD;
  text-decoration: underline;
}
.declaration_copy02{
    width: 90vw;
    font-size: 3.2vw;
    text-align: center;
    padding: 4vw 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: 5vw;
}
.declaration_check {
  font-size: 2.8vw;
  color: var(--kitz_text);
  display: flex;
  align-items: center;
  gap: 6px
}
.declaration_option input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4.5vw;
  height: 4.5vw;
  margin-right: 2vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.5vw;
  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: 0.5vw;
  left: 1.3vw;
  width: 1vw;
  height: 2vw;
  border: solid #fff;
  border-width: 0 0.5vw 0.5vw 0;
  transform: rotate(45deg);
  border-radius: 0.2vw;
}
.declaration_form{
    width: 90vw;
    margin: 0 auto 25px;
}
.declaration_form .note{
      font-size: 2.8vw;
      text-align: left;
      color: #E20000;
      margin: 3vw auto 10vw;
        text-indent: -1em;
    padding-left: 1em;
}
.declaration_input{
    width: 85vw;
    height: 8vw;
    margin: 0 auto;
    flex: 1 1 auto;
    padding: 1vw 2vw;
    font-size: 2.8vw;
    color: var(--kitz_text);
    background: var(--kitz_white);
    border: 1px solid var(--kitz_line);
    border-radius: 0.8vw;
}
.declaration_form .btn_area{
    width: 70vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.declaration_form .btn_area button,.declaration_form .btn_area a{
    width: 33vw;
    font-size: 3.8vw;
    height: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
}


.download{
  width: 90vw;
  text-align: center;
  margin: 0 auto 10vw;
  padding-bottom: 5vw;
  border-bottom: 1px solid var(--kitz_line);
}
.download_{
  border-bottom: 0px solid var(--kitz_line);
}
.download_copy{
  width: 90vw;
  font-size: 2.8vw;
  text-align: center;
  margin: 0 auto;
}
.export_btn{
    position: relative;
    display: block;
    background-color: var(--kitz_blue);
    width: 85vw;
    color: #FFF;
    font-size: 3.8vw;
    padding: 3vw 0;
    margin: 8vw auto 0;
    border-radius: 1.5vw;
}
.export_btn::after{
    content: "";
    position: absolute;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    width: 4.5vw;
    height: 6vw;
    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: 85vw;
  font-size: 2.8vw;
  text-align: left;
  margin: 0 auto;
  margin: 3vw auto 0;
  color: #E20000;
  text-indent: -1em;
    padding-left: 1em;
}
.download .note .line{
  text-decoration: underline;
}
.download .note .icon01,.download .note .icon02{
  position: relative;
}
.download .note .icon01::after{
  content: "";
  position: absolute;
  right: 0.4vw;
  top: 50%;
  transform: translateY(-50%);
  width: 2.3vw;
  height: 2.3vw;
  background: url(../images/common/icon01.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.download .note .icon02::after{
  content: "";
  position: absolute;
  right: 0.4vw;
  top: 50%;
  transform: translateY(-50%);
  width: 3vw;
  height: 2.5vw;
  background: url(../images/common/icon02.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}




.login_copy{
  font-size: 2.8vw;
  text-align: center;
  margin: 0 auto;
}
.login-area {
  display: flex;
  gap: 5vw;
  justify-content: center;
  padding: 0 0 20vw;
  flex-direction: column;
}

.login-box, .register-box {
  font-size: 3.8vw;
  border: 2px solid #DDDDDD;
  padding: 8vw 6vw;
  width: 90vw;
  background: #fff;
  margin: 0 auto;
}
.register-box{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.register-box p{
  margin-bottom: 3vw;
}
.form-row {
  margin-bottom: 5vw;
}
.form-row label {
    display: block;
    font-size: 3.8vw;
    margin-bottom: 0.7vw;
    margin-left: 6vw;
    position: relative;
    text-align: left;
    color: var(--kitz_text);
}
.form-row label::before{
    content: "";
    position: absolute;
    left: -6vw;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    background: url(../images/common/arrow_right_blue.svg) no-repeat center;
    background-size: contain;
    pointer-events: none;
}
.form-row input {
  font-size: 3.8vw;
  width: 74vw;
  padding: 1.5vw;
  border: 1px solid #707070;
  border-radius: 1vw;
}
.form-options {
  font-size: 2.8vw;
  margin-bottom: 4vw;
}
.form-options .forgot a {
  color: #0D85DD;
  text-decoration: none;
  margin-left: 5.333vw;
}
.form-submit button,
.register-btn {
  width: 60vw;
  background: var(--kitz_blue);
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  color: #FFF;
  font-size: 3.8vw;
  padding: 3vw 0;
  margin: 0 auto;
  border-radius: 1.5vw;
}
.form-submit button:hover,
.register-btn:hover {
  opacity: 0.9;
}
.login_form label{
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
    color: var(--kitz_line);
}
.login_form input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4vw;
  height: 4vw;
  margin-right: 2vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.533vw;
  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: 0.3vw;
  left: 1.2vw;
  width: 1.0vw;
  height: 2.0vw;
  border: solid #fff;
  border-width: 0 0.5vw 0.5vw 0;
  transform: rotate(45deg);
  border-radius: 0.133vw;
}





.userupdate{
  width: 90vw;
  margin: 0 auto;
  border: solid 2px #DDDDDD;
  padding: 8vw 5vw;
}

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

.userupdate-section-title{
    display: block;
    font-size: 3.8vw;
    margin-bottom: 0.7vw;
    margin-left: 6vw;
    position: relative;
    text-align: left;
    color: var(--kitz_text);
    margin-left: 6vw;
}
.userupdate-section-title::before{
    content: "";
    position: absolute;
    left: -6vw;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    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: flex;
  grid-template-columns: 180px 1fr;
  gap: 2vw 2.4vw;
  padding-left: 0;
  margin-bottom: 7vw;
  padding-bottom: 8vw;
  border-bottom: solid 0px #BBBBBB;
  align-items: flex-start;
  justify-items: end;
  flex-direction: row;
  flex-wrap: wrap;
}

.userupdate-grid__{
  border-bottom: solid 1px #BBBBBB;
}

.userupdate-grid_{
  background-color: #E6F5FF;
  padding: 5vw;
}
.userupdate-section_{
  margin-top: 5vw;
  border-bottom: solid 1px #BBBBBB;
}


.userupdate-label{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 3.8vw;
  margin-top: 3vw;
}
.userupdate-label2{
  width: 48%;
  font-size: 3.8vw;
  display: flex;
  grid-template-columns: 180px 1fr;
  gap: 0;
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: solid 0 #BBBBBB;
  align-items: flex-start;
  justify-items: end;
  flex-direction: row;
}
.userupdate-label2_{
  width: 100%;
    padding: 0vw;
}

.userupdate-required{
  color:#e04848;
  margin-left:0.8vw;
  font-weight:700;
}

.userupdate-field{
  display: flex;
  gap: 3vw;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 3vw;
  justify-content: space-between;
}
.userupdate-section_ .userupdate-field{
  width: 46%;
}
.userupdate-field_{
  width: 100% !important;
  flex-wrap: wrap;
}


.userupdate-input,
.userupdate-select{
  appearance: none;
  width: 100%;
  max-width: 74.667vw;
  height: 9vw;
  padding: 0 3vw;
  border: 1px solid #d9dee5;
  border-radius: 1vw;
  background: #fff;
  font-size: 3.2vw;
  outline: none;
  transition: box-shadow .15s, border-color .15s, background .15s, color .15s;
}
.userupdate-input_{
  padding: 3vw;
}
.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{
width: 100%;
  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:48%;
}

.userupdate-help{
    width: 100%;
    font-size: 2.8vw;
    color: #707070;
    margin-top: 0.8vw;
}

.userupdate-mt20{ margin-top:2.667vw; }

.userupdate-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 4vw 2.4vw;
  justify-content: center;
  margin: 10vw auto 8vw;
  flex-direction: column;
  align-items: center;
}
.userupdate-btn:disabled{opacity:.5; cursor:not-allowed}


.userupdate-btn{
  width: 60vw;
  font-weight: bold;
  border: none;
  border-radius: 1.5vw;
  cursor: pointer;
  display: block;
  font-size: 3.8vw;
  padding: 3vw 0;
}

.userupdate-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: 1.5vw 0 1.5vw 2.4vw;
  line-height: 1.2;
  font-size: 3.2vw;
}
.userupdate-btn-danger::before{
  position: absolute;
  content: "×";
  position: absolute;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5.5vw;
  color: inherit;
  font-weight: 300;
}



.newpss_copy{
  font-size: 2.8vw;
  text-align: center;
  margin: 0 auto;
}
.newpss-area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.newpss-box {
  font-size: 3.8vw;
  border: 2px solid #DDDDDD;
  padding: 8vw 6vw;
  width: 90vw;
  background: #fff;
}
.newpss_form label{
    display: flex;
    align-items: center;
    margin-bottom: 0.667vw;
    color: var(--kitz_line);
}
.newpss-form .form-row{
    width: 100%;
    margin: 0 auto 3vw;
}
.newpss-form .note{
  font-size: 2.8vw;
  color: #707070;
  margin-bottom: 8vw;
}
.newpss-form .form-row:first-child{
  display: flex;
  width: 100%;
  margin: 0 auto 6vw;
  padding-bottom: 6vw;
  border-bottom: solid 1px #BBBBBB;
  flex-direction: column;
  align-items: center;
}
.newpss-form .form-row label{
  width: 74vw;
}



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




.tp-scroll {
  max-height: fit-content;
  overflow: auto !important;
}


.target-products {
  margin: 5vw 0;
}

.tp-wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0;
}

.tp-table-wrap {
  background: #fff;
  overflow: hidden;
  font-size: 2.8vw;
}

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

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

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

.tp-table-body tbody td {
    padding: 3vw 1.5vw;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    font-size: 2.8vw;
    vertical-align: middle;
}

.tp-table thead tr th:first-child,.tp-table tbody tr td:first-child{
  width: 10vw!important;
}
.tp-table thead tr th,.tp-table tbody tr td{
  width: 30vw!important;
}
.tp-table thead tr th:last-child,.tp-table tbody tr td:last-child{
  width: 50vw!important;
}


.tp-table-body input[type="radio"] {
  width: 3.5vw;
  height: 3.5vw;
}

.tp-detail {
  width: 90vw;
  margin-top: 6vw;
  padding: 0 4vw 4vw;
  border: 1px solid #707070;
  background: #FFF;
}
.tp-detail_copy{
  font-size: 2.8vw;
  margin-top: 5vw;
}
.tp-detail_copy a{
  position: relative;
}
.tp-detail_copy a::after{
  content: "";
  position: absolute;
  right: 0.4vw;
  top: 40%;
  transform: translateY(-50%);
  width: 2.2vw;
  height: 2.2vw;
  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: 4vw 0 0;
}

.tp-block-ttl {
  width: 100%;
  font-size: 2.8vw;
  margin: 0 0 1.5vw;
  display: inline-block;
  padding: 2vw 1.5vw;
  line-height: 1.2;
  background: #E6F5FF;
  border-radius: 0.5vw;
}
.tp-block-ttl2{
  background:#02459F;
  color: #FFF;
}
.tp-block-ttl span{
  font-size: 0.6em;
}

.tp-dllink {
  display: flex;
  margin: 1.5vw 0;
}
.tp-dl{
  margin-left: 2.5vw;
}
.tp-dl div{
  display: flex;
  font-size: 2.8vw;
  margin-bottom: 2vw;
}
.tp-dl dt {
  width: 20vw;
}

.tp-dl dd {
  margin: 0;
}

.tp-html {
    font-size: 2.8vw;
    margin-left: 2.5vw;
    margin-bottom: 2vw;
    line-height: 1.4;
}

.tp-html ul {
}

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

/* =========================
   検索結果
   ========================= */
.searchresults_inner {
        width: 100vw;
        padding: 7vw 5vw;
        margin: 0 auto;
}
.td2{
}
.td2in{
  display: flex;
}
.td2con{
  position: relative;
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    padding: 2vw 1vw;
    gap: 5vw;
}
.td2con.flex{
    padding: 1.333vw;
}
.td2con::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.133vw;
  height: 90%;
  background: #BBB;
}
.td2in .td2con:last-child::after{
  width: 0;
}
.searchresults_btn01{
    background-color: #0C85DD;
    color: #FFF;
    border-radius: 0.667vw;
    padding: 0.667vw 1.067vw;
}
.searchresults_btn02{
    width: 30vw;
    font-size: 2.8vw;
    background-color: #0C85DD;
    color: #FFF;
    padding: 0.7vw;
    border-radius: 3vw;
    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: 0.35vw;
    background: #bbbbbb;
    border-radius: 50%;
}




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

.productdetail {
  width: 90vw;
  margin: 0 auto;
}

.productdetail_inner {
  padding: 5vw 0 10vw;
  margin-bottom: 10vw;
  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: 1.6vw;
  margin-bottom: 6vw;
  font-size: 2.8vw;
  flex-direction: row;
}

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

.productdetail_body {
  width: 85vw;
  display: flex;
  grid-template-columns: 90vw 1fr;
  column-gap: 0;
  flex-direction: column;
  margin: 0 auto;
}

.productdetail_left {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5vw;
}

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

.productdetail_mainimg img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.productdetail_icon{
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-left: 5vw;
}
.productdetail_icon img{
  width: 10vw;
  height: 10vw;
  margin-right: 2vw;
}
.productdetail_icon p{
  font-size: 5vw;
}

.productdetail_thumbs {
  display: grid;
  grid-template-columns: repeat(6, 13%);
  gap: 1vw;
  margin: 5vw auto;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.productdetail_thumbs .thumb {
  width: 100%;
  height: 12vw;
  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: 2.8vw;
  line-height: 1.2;
  margin: 0 0 2vw;
}

.productdetail_pressnote {
  font-size: 1.6vw;
  color: var(--kitz_text);
  text-align: right;
  margin-bottom: 0.8vw;
}

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

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

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

.productdetail_table_small thead th.c1 { width: 16vw; }
.productdetail_table_small thead th.c2 { width: 34.667vw; }
.productdetail_table_small thead th.c3 { width: 34.667vw; }

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

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

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



/* --------------- link --------------- */
.link {
  width: 90vw;
  margin: 0 auto;
}
.link_inner {
  padding: 2.667vw 0;
  text-align: center;
  margin-bottom: 10.667vw;
  border-bottom: 1px #DBDBDB solid;
}
.link_lead {
  text-align: center;
  font-size: 2.8vw;
  color: var(--kitz_text);
  margin: 0 0 4vw;
}
.link_box_head {
  background: var(--kitz_blue);
  color: var(--kitz_white);
  font-size: 2.8vw;
  text-align: center;
  padding: 2vw 0;
}

.link_list {
  list-style: none;
  margin: 0;
  padding: 0 1.6vw;
}
.link_item {
  padding: 3vw 0 0;
  text-align: center;
}
.link_anchor {
  position: relative;
  font-size: 2.8vw;
  color: #0C85DD;
  text-decoration: none;
}
.link_anchor:hover { text-decoration: underline; }

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

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

.download_table {
  width: 150vw!important;
  border-collapse: collapse;
  margin: 0 0 6vw;
    border-collapse: separate;
  /* border-spacing: 0 1.5vw; */
}
.download_table th,
.download_table td {
  position: relative;
  font-size: 2.8vw;
  border-right: 1px solid #DBDBDB;
  padding: 3vw;
  text-align: left;
  vertical-align: middle;
}

.download_table th:nth-child(1) {
  width: 5%;
}

.download_table th:nth-child(2) {
  width: 20%;
}

.download_table th:nth-child(3) {
  width: 40%;
}

.download_table th:nth-child(4) {
  width: 10%;
}

.download_table td:last-child{
  border-right: 0px solid #DBDBDB;
}
.download_table td:after {
    content: "";
    position: absolute;
    width: 110%;
    left: 0;
    right: 0;
    bottom: 0vw;
    height: 0.133vw;
    background: #DADADA;
}
.download_table td:last-child:after{
    width: 100%;
}
.download_table thead th {
  font-size: 2.8vw;
  line-height: 1.2;
  background: var(--kitz_blue);
  color: var(--kitz_white);
  font-weight: 400;
  text-align: center;
  padding: 1.5vw 0.5vw;
    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: 8vw; }
.download_table .col_type { width: 37.333vw; }
.download_table .col_file { width: auto; }
.download_table .col_dl { width: 24vw; text-align: center; }

.download_icon{
  position: relative;
  width: 5vw;
  height: 6vw;
  display: block;
  background: url(../images/common/materials_on_sp.svg) no-repeat center;
  background-size: contain;
  border: none;
  margin-right: 2vw;
}
.download_icon p{
  display: none;
  position: absolute;
  color: #02459F;
  font-size: 1vw;
  width: 3vw;
  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_sp.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: 0;
}




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

.download_actions {
  width: 90vw;
  display: flex;
  justify-content: center;
  gap: 2.133vw;
  margin-top: 3vw;
}
.download_actions button{
  width: 30%;
  max-width: 30%;
  min-width: 30%;
  height: 9vw;
  border-radius: 2vw;
}

.download_table input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4.5vw;
  height: 4.5vw;
  margin-right: 2vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.5vw;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 1vw auto;
  left: 50%;
  transform: translateX(-50%);
}
.check_all{
  left: 0!important;
  transform: translateX(0)!important;
}

.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: 0.5vw;
  left: 1.3vw;
  width: 1vw;
  height: 2vw;
  border: solid #fff;
  border-width: 0 0.5vw 0.5vw 0;
  transform: rotate(45deg);
  border-radius: 0.2vw;
}

.anzenproduct_inner {
  text-align: center;
  padding: 0 0 8vw;
}


/* --------------- memberdownload --------------- */
.memberdownload { width: 90vw; margin: 0 auto; }

.memberdownload_inner {
  text-align: center;
  padding: 0 0 10.667vw;
  margin-bottom: 10.667vw;
  border-bottom: 1px var(--kitz_line) solid;
}

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

.memberdownload_lead {
  text-align: center;
  font-size: 2.8vw;
  line-height: 1.8;
  color: var(--kitz_text);
  margin: 0 auto 5vw;
}
.md_loginlink {
  color: #0C85DD;
  text-decoration: underline;
}
.md_loginlink:hover{
  text-decoration: underline;
}

.memberdownload_table {
  border-collapse: collapse;
  margin-bottom: 3vw;
  table-layout: fixed;
  font-size: 2.8vw;
  border-collapse: separate;
    /* border-spacing: 0 1.5vw; */
}

.memberdownload_table th,
.memberdownload_table td {
    position: relative;
   border-right: 1px solid #BBBBBB;
  padding: 2vw 1vw;
  vertical-align: middle;
  text-align: center;
  background: var(--kitz_white);
}
.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: 0.133vw;
    background: #DADADA;
}
.memberdownload_table td:last-child:after{
    width: 100%;
}
.memberdownload_table td{ padding: 0.667vw 0; }

.memberdownload_table thead th {
  font-size: 2.8vw;
  line-height: 1.2;
  border: 0.5px solid var(--kitz_white);
  background: var(--kitz_blue);
  color: var(--kitz_white);
  font-weight: 400;
}



.memberdownload_table input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4.5vw;
  height: 4.5vw;
  margin-right: 1vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.5vw;
  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: 0.5vw;
  left: 1.3vw;
  width: 1vw;
  height: 2vw;
  border: solid #fff;
  border-width: 0 0.5vw 0.5vw 0;
  transform: rotate(45deg);
  border-radius: 0.2vw;
}

.memberdownload_table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 2.8vw;
  margin-bottom: 6vw;
}

.memberdownload_table tbody td {
  background: #fff;
  background-clip: padding-box;
}
/* 
.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: 0;
    margin-bottom: 0.8vw;
}

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

.md_sizehead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8vw;
}

.md_sizehead_ttl { font-weight: bold; }

.md_sizehead_unit { display: flex; gap: 3.2vw; }
.md_sizehead_unit .mm,
.md_sizehead_unit .inch { font-size: 1.733vw; opacity: .95; }

.md_sizecell { 
    display: flex;
    justify-content: center;
    gap: 3.2vw;
}

.md_sizecell_mm,
.md_sizecell_inch { display: inline-block; min-width: 6.4vw; }

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

.md_doccell {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.333vw;
  cursor: default;
  margin-right: 2.667vw;
}

.md_doccell input[type="checkbox"] { width: 2.4vw; height: 2.4vw; }
.md_doccell .icon_dl{ right: -4vw; }

/* ボタン群 */
.memberdownload_actions {
  width: 90vw;
  display: flex;
  justify-content: center;
  gap: 5vw;
}

.anzenproduct_actions{
  width: 90vw;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.anzenproduct_actions .reset_btn_2{
  min-width: 48%;
  max-width: 48%;
  margin-bottom: 5vw;
}
.anzenproduct_actions .download_btn{
  min-width: 48%;
  max-width: 48%;
  margin-bottom: 5vw;
}
.anzenproduct_actions .comparison_btn{
  min-width: 100%;
  max-width: 100%;
}
.anzenproduct_actions .topbtn{
  margin: 0 auto;
}
.anzenproduct_actions .comparison_btn {
    display: block;
    width: 70vw;
    font-size: 2.8vw;
    padding: 2vw;
    width: 70vw;
    min-width: 70vw;
    max-width: 70vw;
    margin: 0 auto;
}

.btn {
  font-size: 3.8vw;
  padding: 1.6vw 3.733vw;
  border-radius: 3.5vw;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.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: 90vw;
  margin: 0 auto;
  padding: 0 0 10vw;
  margin-bottom: 10vw;
  border-bottom: 1px #BBBBBB solid;
}
.link02_inner {
  display: flex;
  width: 70vw;
  justify-content: space-between;
  margin: 0 auto;
  flex-direction: column;
}
.link02 a{
  display: flex;
  font-size: 2.8vw;
  margin-bottom: 5vw;
  padding: 5vw 0;
  text-align: center;
  min-width: 70vw !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --------------- other --------------- */
.other {
  width: 90vw;
  margin: 0 auto;
}

.other_inner {
  padding: 0 0 10vw;
  margin-bottom: 10vw;
  text-align: center;
}
.other ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.other li{
  margin-bottom: 5vw;
}
.other_img{
  width: 44vw;
  height: 26vw;
  background: var(--kitz_white);
  margin-bottom: 0.5vw;
}
.other_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.other li p{
  font-size: 2.8vw;
}


/* スライダー */
.slider {
  width: 100%;
  margin: 0 auto;
  padding: 8vw 0;
  position: relative;
  background: var(--kitz_bg);
}
.slider_inner { width: 85vw; margin: 0 auto; }
.slider_track { width: 100% }
.slide_item { display: block; padding: 0 }
.slick-list { margin: 0 2.5vw 0 2.5vw!important; }
.slider_track picture{
  display: block;
  width: 79vw;
  height: 32vw;
  overflow: hidden;
}
.slider_track picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.333vw;
  height: 5.333vw;
  border: 0;
  background: transparent;
  z-index: 2;
  cursor: pointer
}
.slick-prev, .slick-next{
  width: auto!important;
  height: auto!important;
}
.slick-prev { left:  -4vw!important; }
.slick-next { right: -4vw!important; }

.slick-prev:before,
.slick-next:before {
    display: block;
    font-size: 5vw !important;
    width: 3.5vw;
    height: 3.5vw;
    margin: 1.2vw;
    color: var(--kitz_blue) !important;
    background: unset;
}
.slick-next:before { content: ">"!important; }
.slick-prev:before { content: "<"!important; }





.downloadlist_con{
  padding: 8vw 0;
}
.downloadlist_con ul{
  text-align: left;
  font-size: 2.8vw;
  margin-left: 0vw;
}
.downloadlist_con-grid{
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.867vw 2.4vw;
    align-items: start;
}
.downloadlist_con-label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 2.8vw;
    margin-top: 0;
    background-color: #F5F5F5;
    padding: 2.3vw 5vw;
}
.downloadlist_con-radio .radio{
  width: 25vw;
  margin: 3vw 0;
  padding: 0;
}
.downloadlist_con .delete{
  color: #0C85DD;
  background-color: #FFF;
  border: solid 1px #0C85DD;
  border-radius: 0.667vw;
  width: fit-content;
  margin: 0 auto;
  padding: 0.667vw 1.333vw;
}
.downloadlist_con .up {
  display: inline-block;
  position: relative;
  width: 3.467vw;
  height: 3.467vw;
  background-color: #0C85DD;
  border-radius: 0.667vw;
}
.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: 1.6vw;
  height: 1.6vw;
  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: 3.467vw;
  height: 3.467vw;
  background-color: #0C85DD;
  border-radius: 0.667vw;
}
.downloadlist_con .down::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 1.6vw;
  height: 1.6vw;
  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: 0.667vw;
  width: 2vw;
  height: 2vw;
  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: 2.8vw;
    margin-left: 0;
}

.downloadlist_con_btn {
    display: flex;
    justify-content: center;
    gap: 2.667vw;
    margin: 10vw auto 15vw;
}




#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: 98.667vw;
  max-width: 90%;
  padding: 8vw;
  position: relative;
  text-align: center;
}

.modal-header {
  background: #02459F;
  color: #fff;
  font-size: 3.4vw;
  font-weight: 500;
  padding: 1.067vw 0;
}

.modal-body {
  padding: 4vw 0 0;
  font-size: 2.8vw;
  line-height: 1.8;
  color: #000000;
}

.modal-close {
  position: absolute;
  top: 2.667vw;
  right: 2vw;
  width: 3.333vw;
  height: 3.333vw;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 1.067vw;
  left: 0;
  width: 3.333vw;
  height: 0.267vw;
  background: #BBBBBB;
}

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

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


.facorite_modal{
  width: 90vw;
  background-color: #FFF;
  padding: 15vw 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.facorite_modal h2{
  font-size: 3.8vw;
  font-weight: 600;
  margin-bottom: 2vw;
  text-align: center;
}
.facorite_modal p{
  font-size: 2.8vw;
  text-align: center;
  margin-bottom: 5vw;
}
.facorite_modal_btn{
  width: 80vw;
  display: flex;
  justify-content: space-between;
  font-size: 2.8vw;
  margin: 0 auto;
}
.facorite_modal_btn a{
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw 0;
  border-radius: 1vw;
}
.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: 8vw 0;
  background: var(--kitz_bg);
}
.productnumber p{
  font-size: 2.8vw;
}
.productnumber_inner {
  position: relative;
  max-width: 90vw;
  margin: 0 auto
}
.productnumber_desc {
  font-size: 2.8vw;
  color: var(--kitz_text);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 7.333vw;
}
.productnumber_box {
  width: 90vw;
  position: relative;
  margin: 0 auto 15vw;
}
.productnumber_label {
  position: relative;
  margin: 6vw;
  font-size: 3.8vw;
  color: var(--kitz_text);
  margin-bottom: 3vw;
  display: flex;
  align-items: center;
  gap: 6px;
}
.productnumber_label::before {
  content: "";
  position: absolute;
  left: -6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 4vw;
  height: 4vw;
  background: url(../images/common/arrow_right_blue.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.productnumber_textarea {
  width: 84vw;
  height: 35vw;
  font-size: 3.2vw;
  line-height: 1.6;
  padding: 3vw;
  border: 1px solid var(--kitz_line);
  border-radius: 0.8vw;
  resize: vertical;
  color: var(--kitz_text);
  background: var(--kitz_white);
}
.productnumber_textarea::placeholder {
  color: #BBBBBB!important;
}

.productnumber_option {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3vw;
    flex-direction: column;
    gap: 5vw;
}
.productnumber_option div{
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    margin-bottom: 3vw;
    gap: 8vw;
}
.productnumber_check {
  font-size: 2.8vw;
  color: var(--kitz_text);
  display: flex;
  align-items: center;
  margin-right: 6.667vw;
  gap: 6px
}
.productnumber_option input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 4.5vw;
  height: 4.5vw;
  border: 1px solid #BBBBBB;
  border-radius: 0.5vw;
  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: 0.5vw;
  left: 1.3vw;
  width: 1vw;
  height: 2vw;
  border: solid #fff;
  border-width: 0 0.5vw 0.5vw 0;
  transform: rotate(45deg);
  border-radius: 0.2vw;
}
.productnumber_btn {
  width: 100%;
  background: #02459F;
  color: var(--kitz_white);
  border: none;
  padding: 1.333vw 2.667vw;
  border-radius: 0.533vw;
}
#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;
  border: 0;
}


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



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

.tab-buttons {
  display: flex;
}

.tab-button {
  flex: 1;
  padding: 1.333vw;
  cursor: pointer;
  background: #fff;
  color: #BBBBBB;
  border: none;
  font-size: 3.4vw;
  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: 2.8vw;
}
.note.c_red.right{
  text-align: center;
}






.comparison{
  text-align: center;
  background-color: #FFF;
  max-width: 90vw;
  padding: 8vw 5vw 5vw;
  margin: 0 auto;
}
#serviceModal .cond_scroll {
    width: 85vw;
    padding-right: 5vw;
    overflow-x: auto;
}
.comparison_copy{
  font-size: 2.8vw;
  text-align: center;
  margin: 0 auto 5vw;
}
.comparison_copy span{
  font-size: 0.8em;
  color: #E20000;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 2.8vw;
  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: 1.333vw 1.067vw;
  word-break: break-all;
  text-align: center;
}
.compare-table th:first-child{
  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: 0.8vw;
    right: 0.8vw;
    background: #fff;
    color: #02459F;
    border: none;
    width: 2.667vw;
    height: 2.667vw;
    font-size: 2vw;
    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: 1vw 2vw;
  border: none;
  border-radius: 0.533vw;
  font-size: 2.8vw;
  cursor: pointer;
  transition: background 0.3s;
}

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

.del-btn {
  background: #bbb;
  color: #fff;
}

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

}