@charset "Shift_JIS";

/* --------------------------------------------------------------------
¤•ii‚èž‚ÝŒŸõi.js-search-boxj
--------------------------------------------------------------------- */

.js-search-box {
  margin: 30px 0;
}

.js-search-box > div {
  margin: 0 3%;
}

/* q’Ç‰ÁÝ’èrŒ©o‚µ */
.js-search-box > div > p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #222;
}

.js-search-box .search-form {
  max-width: 600px;
  margin: auto;
}

.js-search-box .search-form .filter-controls {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 0 20px;
}

.js-search-box .search-form .filter-controls .select-group {
  width: 100%;
}

.js-search-box .search-form .filter-controls .select-group select {
  width: 100%;
  height: 48px;
  padding: 0 8px;
  background: #f6f6f6;
  border: 2px solid #ccc;
  font-family: Quicksand, 'ŸàƒSƒVƒbƒN‘Ì', 'Yu Gothic', YuGothic, 'ƒƒCƒŠƒI', Meiryo, Osaka, '‚l‚r ‚oƒSƒVƒbƒN', 'MS PGothic', sans-serif;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.js-search-box .search-form .filter-controls .select-group select:focus {
  outline: none;
}

.js-search-box .search-form .filter-controls .select-group.axis-1 {
  position: relative;
}

.js-search-box .search-form .filter-controls .select-group.axis-1::after {
  content: "~";
  position: absolute;
  top: 55%;
  right: -24px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.js-search-box .search-form .filter-controls .select-group label {
  display: inline-block;
  margin: 0 0 5px;
  font-size: 16px;
}

/* ƒ{ƒ^ƒ“Ý’èi.search-btnj */
.js-search-box .search-form .search-btn {
  width: 80%;
  max-width: 400px;
  margin: auto;
  text-align: center;
}

.js-search-box .search-form .search-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #222;
  border: 1px solid #222;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: #f7f7f7;
  transition: all 0.5s ease;
}

.js-search-box .search-form .search-btn a::after {
  content: "¨";
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 18px;
  transform: translate(0, -50%);
  transition: all 0.5s ease;
}

.js-search-box .search-form .search-btn a:hover {
  background: #f7f7f7;
  color: #222;
  box-shadow: 0px 2px 3px 0px rgba(60, 60, 60, 0.15);
}

.js-search-box .search-form .search-btn a:hover::after {
  right: 20px;
}