.backgroundContent::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color_main_spread);
  mix-blend-mode: multiply;
  z-index: 1;
  top: var(--key_visual_height);
  left: 0;
}

.newocWrap.search::before,
.newocWrap.search::after {
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.newocWrap.search::before {
  background: var(--color_sky);
  height: 40em;
  clip-path: polygon(0 0, 41% 0, 100% 56%, 100% 63%, 0% 43%);
  z-index: 1;
}

.newocWrap.search::after {
  background: var(--color_main_spread);
  clip-path: polygon(100% 0, 100% 50%, 0 89%, 0 80%, 69% 0%);
  height: 33em;
  z-index: 2;
}

@media screen and (min-width: 960px) {
  .newocWrap.search::before {
    clip-path: polygon(0 0, 32% 0, 100% 57%, 100% 72%, 0% 25%);
    height: 65em;
  }

  .newocWrap.search::after {
    clip-path: polygon(100% 0%, 100% 0%, 0 87%, 0 80%, 59% 0%);
    height: 45em;
  }
}

.keyVisual {
  align-items: center;
  display: grid;
  height: var(--key_visual_height);
  position: relative;
  z-index: 3;
  filter: var(--text_shadow);
}

.keyVisual .imgBox {
  padding: 1em;
}

/* @media screen and (min-width: 960px) {

  .keyVisual .imgBox img {
    width: 513px;
    height: 330px;
  }
} */

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 1.25em;
}

input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

button svg {
  width: 1.5em;
  height: 1.5em;
  fill: var(--color_main);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
}

.tag {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em;
  font-size: 0.9em;
  box-shadow: 1px 1px 1px #ccc;
  border-radius: 3px;
  background: #fff;
}

.tag:hover {
  text-decoration: underline;
}

/* 日付範囲 */
.date-range {}

.searchContainer {
  background: rgba(255, 255, 255, .85);
  border-radius: var(--box_curve);
  margin: 1em;
  padding: 1em;
}

@media screen and (max-width: 959px) {}

.searchContsearchContainerInnerainer {
  max-width: 450px;
  margin: auto;
}

.searchContainer .title {
  font-weight: bold;
  color: var(--color_main);
  margin: 1.5em 0 0.75em;
  text-align: center;
}

.searchContainer .title.mini {
  text-align: left;
}

.searchContainer .title span {
  font-size: 1.5em;
}

.date-range .input-area {
  display: flex;
  flex-wrap: wrap;
  gap: 1em .5em;
  justify-content: space-between;
  align-items: center;
}

.date-range .input-area span {
  color: var(--color_main);
  font-weight: bold;
  flex-grow: 1;
  text-align: center;
}

input[type="date"] {
  background: #fff;
  border-radius: 10px;
  padding: 1em;
  font-size: .9em;
  box-sizing: border-box;
  flex-grow: 1;
  text-align: center;
}