@charset "UTF-8";
@media only screen and (max-width: 767px) {
  footer {
    padding-bottom: 80px !important;
  }
}
.checkRowWrap {
  display: flex;
  flex-wrap: wrap;
}
.checkRowWrap .checkButton {
  position: relative;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s, color 0.4s;
  background-color: #ffffff;
  color: #141414;
}
.checkRowWrap .checkButton:focus-within {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}
.checkRowWrap .checkButton input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.checkRowWrap .checkButton .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_check_off.svg);
}
.checkRowWrap .checkButton.on {
  background-color: #386D0B;
  color: #ffffff;
}
.checkRowWrap .checkButton.on .icon {
  background-image: url(../img/icon_check_on.svg);
}
.checkRemoveRow .removeText {
  cursor: pointer;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}

.btnArea {
  margin: 0 auto;
}
.btnArea .submitBtn {
  position: relative;
  width: 100%;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 500;
  padding: 16px 0;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(120deg, #f0622f 0%, #ffa382 45%, #ffc3d2 50%, #ffa382 55%, #f0622f 100%);
  background-size: 400% 100%;
  /* 横幅を2倍にして動かせるようにする */
  animation: gradientFlow 3s cubic-bezier(0.05, 0.87, 0.68, 0.99) infinite;
}
.btnArea .submitBtn::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 14px;
  background: url(../img/arrow_right_white.svg) center center no-repeat;
  background-size: contain;
  right: 14px;
  top: calc(50% - 7px);
}

/* グラデーションをループさせるアニメーション */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: -150% 50%;
  }
}
@media only screen and (max-width: 767px) {
  .checkRowWrap {
    padding: 40px 0 0 0;
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 10px;
  }
  .checkRowWrap .checkButton {
    font-size: clamp(14px, 3.85vw, 15px);
    padding: 8px 12px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-bottom: 0;
  }
  .checkRemoveRow {
    padding: 40px 0 0 0;
  }
  .checkRemoveRow .removeText {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .btnArea {
    width: min(100%, 320px);
    padding: 32px 0 0 0;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 20px;
  }
  .btnArea .submitBtn {
    font-size: clamp(14px, 4.62vw, 18px);
  }
}
@media print, screen and (min-width: 768px) {
  .checkRowWrap {
    padding: 50px 0 0 0;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .checkRowWrap .checkButton {
    font-size: clamp(14px, 1.33vw, 17px);
    padding: 14px 16px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-bottom: 15px;
  }
  .checkRowWrap .newLine {
    width: 100%;
    height: 1px;
  }
  .checkRemoveRow {
    padding: 32px 0 0 0;
  }
  .checkRemoveRow .removeText {
    font-size: 16px;
  }
  .btnArea {
    width: 340px;
    padding: 24px 0 0 0;
  }
  .btnArea .submitBtn {
    font-size: 18px;
  }
}/*# sourceMappingURL=search.css.map */