@charset "UTF-8";
/* ========================================
  Reset
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/**************************************
* Grid
***************************************/
.grid_container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row: auto;
  gap: 1rem;
}
.grid_container._2col {
  grid-template-columns: 1fr 1fr;
}
.grid_container._3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid_container._4col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid_container._5col {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.grid_container._gap-10 {
  gap: 10px;
}
.grid_container._gap-20 {
  gap: 20px;
}
.grid_container._gap-30 {
  gap: 30px;
}
.grid_container._gap-40 {
  gap: 40px;
}
.grid_container._gap-60 {
  gap: 60px;
}
.grid_container._gap-80 {
  gap: 80px;
}
@media screen and (max-width: 480px) {
  .grid_container._sp_1col {
    grid-template-columns: 1fr;
  }
  .grid_container._sp_2col {
    grid-template-columns: 1fr 1fr;
  }
  .grid_container._sp_3col {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid_container._sp_4col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.grid_container .grid_item {
  width: 100%;
}

/**************************************
* Flex
***************************************/
.flex_container {
  display: flex;
  align-content: flex-start;
}
.flex_container._justify-between {
  justify-content: space-between;
}
.flex_container._justify-center {
  justify-content: center;
}
.flex_container._align-items-end {
  align-items: flex-end;
}
.flex_container._align-items-start {
  align-items: flex-start;
}
.flex_container._align-items-center {
  align-items: center;
}
.flex_container._wrap {
  flex-wrap: wrap;
}
.flex_container._column {
  flex-direction: column;
}
.flex_container._gap-10 {
  gap: 10px;
}
.flex_container._gap-20 {
  gap: 20px;
}
.flex_container._gap-30 {
  gap: 30px;
}
.flex_container._gap-40 {
  gap: 40px;
}
.flex_container._gap-60 {
  gap: 60px;
}
.flex_container._gap-80 {
  gap: 80px;
}
@media screen and (max-width: 480px) {
  .flex_container._sp_column {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .flex_container._sp_column-reverse {
    flex-direction: column-reverse;
  }
}

body, div, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, th, td, p, blockquote, pre, address, object, form, fieldset, input, textarea {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, table, input, textarea {
  font-size: 100%;
  font-weight: normal;
}

ul, ol {
  list-style: none;
  list-style-position: inside;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* ========================================
  Foundation
======================================== */
@font-face {
  font-family: "merck";
  src: url("/assets/font/MerckWeb-Regular.woff") format("woff");
}
body {
  color: #232323;
  font-family: Verdana, Roboto, "Droid Sans", "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  }
}
button, select, input, textarea {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

@media all and (-ms-high-contrast: none) {
  button, select, input, textarea {
    font-family: Verdana, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  }
}
input, button, textarea, select {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  outline: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

body:before {
  display: none;
}

@media screen and (max-width: 767px), print {
  body:before {
    content: "sp";
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px), print {
  body:before {
    content: "tb";
  }
}
@media screen and (min-width: 1200px), print {
  body:before {
    content: "pc";
  }
}
/**************************************
* Content
***************************************/
.wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  box-sizing: border-box;
}

header {
  background-color: #503291;
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  header {
    padding: 10px 0;
  }
}
header .header__logo {
  width: clamp(80px, 14vw, 200px);
}

.mainvisual {
  background-color: #ffc832;
}
.mainvisual img {
  display: block;
  margin: 0 auto;
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #503291;
  margin: 1em 0;
}

.antibody__container {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .antibody__container {
    padding: 40px 0 60px;
  }
}

.antibody__select h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto;
  position: relative;
}
.antibody__select h2::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  background: center/contain url(../img/icon_touch.svg) no-repeat;
  margin: 0 0.25em 0 0;
}
.antibody__select__img {
  height: 680px;
}

.antibody__list__search__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .antibody__list__search__container {
    flex-direction: column;
  }
}
.antibody__list__search__item {
  background-color: #96d7d2;
  padding: 1rem 2rem;
  border: 1.5rem;
  width: 48%;
  box-sizing: border-box;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.antibody__list__search__item.select::after {
  content: "";
  display: block;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  background: center/contain url(../img/icon_triangle.svg) no-repeat;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .antibody__list__search__item.select::after {
    top: unset;
    transform: translateY(0) rotate(90deg);
    bottom: 20px;
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .antibody__list__search__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .antibody__list__search__item {
    width: 100%;
  }
  .antibody__list__search__item:last-child {
    border-radius: 0;
  }
}
.antibody__list__search__item label {
  width: 5em;
  color: #503291;
  font-weight: 700;
  text-align: left;
}
.antibody__list__search__item select,
.antibody__list__search__item input {
  flex: 1;
  /* width: 360px; */
  background: #fff;
  border: 2px solid #503291;
  padding: 0.5em 1em;
  font-size: 1rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .antibody__list__search__item select,
.antibody__list__search__item input {
    width: 100%;
  }
}
.antibody__list__table {
  width: 100%;
  margin: 0 auto;
}
.antibody__list__table th, .antibody__list__table td {
  border-bottom: solid 1px #949494;
}
.antibody__list__table th:hover, .antibody__list__table td:hover {
  cursor: pointer;
}
.antibody__list__table th {
  padding: 0.25em 0.5em;
  background-color: #503291;
  color: #fff;
  font-weight: 700;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 480px) {
  .antibody__list__table th {
    min-width: 10em;
  }
}
.antibody__list__table td a {
  padding: 0.25em 0.5em;
  display: block;
  box-sizing: border-box;
}
.antibody__list__table tr:hover {
  background-color: #e8f3fa;
}
.antibody__list__table tr:hover a {
  color: #e61e50;
}
.antibody__list__table__container {
  padding: 0 clamp(1rem, 3%, 40px) 40px;
  border: 2px solid #96d7d2;
  max-height: 80vh;
  overflow-y: auto;
}

.how-to-use {
  background-color: #ffc832;
  padding: 80px 0;
  color: #503291;
  font-weight: 700;
}
.how-to-use p {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}
.how-to-use p span {
  color: #e61e50;
}
.how-to-use a {
  color: inherit;
  text-decoration: underline;
}
.how-to-use a:hover {
  color: #e61e50;
}
.how-to-use__head {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem) !important;
  font-weight: 900;
  font-family: "merck";
  margin-bottom: 30px;
}
.how-to-use ol {
  /* list-style-type: decimal; */
  list-style-type: none;
  margin-bottom: 30px;
}
.how-to-use ol li {
  font-weight: 700;
  /* font-size: clamp(1.25rem, 1.75vw, 1.75rem); */
  font-size: clamp(1.5rem, 2.25vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}
.how-to-use ol li::before {
  content: "1.";
  display: inline-block;
  width: 1.5em;
  color: #e61e50;
  font-family: "merck";
  position: absolute;
  top: 0;
  left: 0;
}
.how-to-use ol li:nth-child(2)::before {
  content: "2.";
}
.how-to-use ol li:nth-child(3)::before {
  content: "3.";
}
.how-to-use ol li span {
  font-size: 0.75em;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .how-to-use ol li span {
    padding-left: 0;
  }
}

footer {
  background-color: #503291;
  padding: 60px 0;
  color: #fff;
  font-size: 0.85rem;
}
@media screen and (max-width: 480px) {
  footer {
    font-size: 0.75rem;
    padding: 40px 0;
  }
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a::after {
  content: "|";
  padding: 0 0.5em;
}

/* SVG */
/* .cls-1 {
    fill: #96d7d2;
}

.cls-1, .cls-2, .cls-3, .cls-4 {
    stroke-width: 0px;
}

.cls-2 {
    fill: #503291;
}

.cls-3 {
    fill: #e61e50;
}

.cls-4 {
    fill: #2dbecd;
}
.cls-4:hover {
    fill: #e61e50;
    cursor: pointer;
} */
.organ {
  fill: #2dbecd;
}

.organ:hover {
  fill: #e61e50;
  cursor: pointer;
}

.tumor-txt:hover {
  cursor: pointer;
}

.tumor-txt:hover path {
  fill: #e61e50;
}

.organ.highlight {
  fill: #e61e50;
}

.highlight .organ {
  fill: #e61e50;
}
/*# sourceMappingURL=style.css.map */