/* 検索実行エリア */
.search_top {
  margin-bottom: 0;
}
.search_massage {
  margin-bottom: 2em;
  padding-top: 2em;
}
#no-results {
  color: var(--red);
}

/* 検索結果 */
#results {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 60px;
}
.result_card {
  width: 100%;
  padding: 3em;
  display: flex;
  /* align-items: flex-start; */
  flex-wrap: wrap;
  gap: 2em;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 2em;
  position: relative;
}
.result_name {
  width: 100%;
  font-size: var(--font-24);
}
.result_heading {
  font-size: var(--font-20);
}
.result_contents {
  max-width: calc(100% - 420px - 2em);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.result_description {
  width: 100%;
  height: 100%;
  padding-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.8;
}
.result_exhibition {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  li {
    max-width: calc(100% / 3 - 40px / 3);
    width: 100%;
  }
  a {
    width: 100%;
    height: 100%;
    padding: 0.75em;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
  }
  a:hover {
    opacity: 0.8;
  }
  figure {
    width: 100%;
    height: 125px;
    background: #fff;
  }
  img {
    height: 100%;
    width: auto;
  }
  p {
    text-align: center;
    padding-top: 0.8em;
    line-height: 1;
  }
}
.result_tech {
  color: var(--red);
  padding: 0.3em 1em 0.2em;
  border: 1px solid var(--red);
  position: absolute;
  top: 3.5em;
  right: 3.5em;
  font-size: var(--font-14);
}

/* 動画ブースの場合 */
.movie_thumbnail {
	position: relative;
	z-index: 1;
}
.movie_play {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-inline: auto;
	transform: translateY(-50%);
	z-index: 2;
}

/* 技術を知ろうの場合 */
img[src*="/tech/"] {
  height: auto;
}

/* サイドボタン */
.search_side {
  width: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: fixed;
  right: 20px;
  bottom: 100px;
  @media screen and (min-width: 1400px) {
		bottom: initial;
    top: 192px;
    left: calc(50% + 660px);
    right: initial;
	}
}
.search_again,.search_back {
  width: 100%;
  a {
    width: 100%;
    height: 86px;
    padding: 5px;
    border: 1px solid var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: var(--font-15);
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
  }
  a:hover {
    opacity: 0.8;
  }
}
.search_again a {
  background: #fff;
  color: var(--red);
  svg {
    fill: var(--red);
  }
}
.search_back a {
  background: var(--red);
  color: #fff;
  fill: #fff;
}