@charset "utf-8";

#searchimage {
    width: 45%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}
select.form-control {
  width: 100%;
  height: 60px;
  background: #f1f1f1;
  margin-bottom: 10px;
  /* もし枠線や文字の調整もしたければここで追加 */
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 5px;
  box-sizing: border-box;
}
.circular .content .box .select_wrap {
  position: relative; /* 下矢印の絶対配置用に必須 */
  display: inline-block;
  width: 100%;
}
.circular .content .box .select_wrap:after {
  content: "^";
  width: 38px;
  height: 60px;
  font-size: 180%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: rotate(180deg);
  border-radius: 4px 0 0 4px;
  color: #fff;
  background: #006036;
}
#goButton {
  width: 100%;
  height: 60px;
  background: #006036;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

#goButton:hover {
  background: #004d24; /* ホバー時の濃い緑 */
}
.button.next {
  width: 100%;
  height: 60px;
  background-color: #006036;
  color: white;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  display: inline-block; /* これが重要 */
  line-height: 1.5;       /* 文字を中央寄せしやすくするため */
}

.button.next:hover {
  background-color: #004f2d;
}