@charset "UTF-8";
/*--
  base size
--*/
/*--
  break points
  -- mobile first
--*/
/*--
  colors
--*/
/*--
  font family
--*/
/*--
  font weight
--*/
/*--
  line-height
- XDの行送り / フォントサイズ
--*/
/*--
  letter-spacing
- XDのAV / 1000で求めた値にemをつける
--*/
/*--
  パーセンテージ計算
--*/
/*--
  vw計算
--*/
/*--
  box-shadow
- $x: XDのドロップシャドウのX
- $y: XDのドロップシャドウのY
- $b: XDのドロップシャドウのB
--*/
/*--
  svg
--*/
/*--
  media queries
--*/
/*--
  box inner base
--*/
/*--
  transition
--*/
/*--
  gradient
--*/
/*--
  list base
--*/
/*--
  link base
--*/
/*--
  link arrow
  - side: 横向きに傾け、縦幅が長辺
  - vertical: 縦向きに傾け、横幅が長辺
--*/
.search {
  padding: 0;
  margin: 32px 0 40px;
  background-color: #F0F0F0;
}
.search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  margin: 0 0 12px;
  border-bottom: 1px solid #5A5A5A;
}
.search__title {
  font-size: 2.2rem;
  line-height: 1.6818181818;
  margin: 0;
}
.search__button {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: transparent;
}
.search__button::before, .search__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  content: "";
  background-color: #1F1F1F;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.search__button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.search__button[aria-expanded=true]::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.search__body {
  display: none;
}
.search__body.is-open {
  display: block;
}
.search__fieldset {
  width: calc(100% - 60px);
  padding: 0 0 12px;
  margin-inline: auto;
  border: none;
}
@media screen and (max-width: 768px) {
  .search__fieldset {
    padding: 0 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #D3D3D3;
  }
}
.search__label {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
  margin: 0 0 12px;
}
.search__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 8px;
}
@media screen and (max-width: 768px) {
  .search__content {
    gap: 12px;
    grid-template-columns: 1fr;
  }
}
.search__content input[type=checkbox],
.search__content input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.search__content input[type=checkbox] + label::before,
.search__content input[type=radio] + label::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #707070;
  background-color: #fff;
}
.search__content input[type=checkbox]:focus-visible + label,
.search__content input[type=radio]:focus-visible + label {
  border-radius: 4px;
  outline: 2px solid #707070;
  outline-offset: 2px;
}
.search__content label {
  position: relative;
  display: block;
  width: fit-content;
  cursor: pointer;
  padding-left: 30px;
  margin-right: 0;
}
.search__content label:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.search__content input[type=checkbox]:checked + label::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 12px;
  transform: rotate(45deg);
  content: "";
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
}
.search__content input[type=checkbox] + label::before {
  border-radius: 6px;
}
.search__content input[type=radio]:checked + label::after {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background-color: #707070;
}
.search__content input[type=radio] + label::before {
  border-radius: 50%;
}
.search__action {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 60px);
  padding: 40px 0 24px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .search__action {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 0 0 16px;
  }
}
.search__action .button--reset {
  width: fit-content;
}
.search__action .button--submit {
  justify-self: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.search__action .button--submit:hover {
  opacity: 0.7;
}

/*# sourceMappingURL=archive-event.css.map */
