@charset "UTF-8";
/*-------------------------------------------
px→vw
 * ex)
   width: sp(200)
   width: tab(200)
-------------------------------------------*/
.shops .searchFormCol {
  font-size: 15px;
  font-size: 1.5rem;
  background: #efefef;
  border: 1px solid #e3e3e3;
  padding: 6%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol {
    padding: 30px;
  }
}
.shops .searchFormCol h3 {
  margin-bottom: 20px;
  padding-left: 8px;
  font-size: 19px;
  font-size: 1.9rem;
  color: #69412b;
  font-weight: bolder;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  border-left: 5px solid #69412b;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.shops .searchFormCol .notes {
  margin-bottom: 10px;
}
.shops .searchFormCol .searchFormColInner {
  margin-bottom: 40px;
  padding: 10px 20px 20px;
  background: #fff;
}
.shops .searchFormCol .searchFormColInner ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.shops .searchFormCol .searchFormColInner ul li {
  width: 48%;
  margin-top: 10px;
}
.shops .searchFormCol .searchFormColInner ul li label {
  display: block;
  border: 1px solid #efefef;
  transition: .3s;
}
.shops .searchFormCol .searchFormColInner ul li.active label {
  border: 3px solid #69412b;
}
.shops .searchFormCol .searchFormColInner ul li input {
  display: none;
}
.shops .searchFormCol .searchFormColInner ul li.freeWord {
  margin-right: 0;
  margin-top: 10px;
  width: 100%;
}
.shops .searchFormCol .searchFormColInner ul li.freeWord p {
  width: 100%;
}
.shops .searchFormCol .searchFormColInner ul li.freeWord p input {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 10px 10px 13px;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.shops .searchFormCol .searchFormColInner .btnMore {
  width: auto;
  margin: 10px auto 0;
  padding: 1em 2em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bolder;
  background: #69412b;
  line-height: 1;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .searchFormColInner ul {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
  }
  .shops .searchFormCol .searchFormColInner ul li {
    width: 15%;
    transition: .3s;
  }
  .shops .searchFormCol .searchFormColInner ul li:not(:nth-child(6n)) {
    margin: 10px 19px 0 0;
  }
  .shops .searchFormCol .searchFormColInner ul li:hover {
    opacity: .6;
  }
  .shops .searchFormCol .searchFormColInner ul li label {
    cursor: pointer;
  }
}
.shops .searchFormCol select {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 5px 30px 8px 8px;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  width: 100%;
}
.shops .searchFormCol select::-ms-expand {
  border: none;
  box-sizing: border-box;
  margin: 0 0 0 0.6em;
  padding: 0 0 0 0.4em;
  border-left: 1px solid #e3e3e3;
  background-color: inherit;
}
.shops .searchFormCol .inputFormCol {
  margin: 0 0 20px;
}
.shops .searchFormCol .inputFormCol table {
  width: 100%;
}
.shops .searchFormCol .inputFormCol table tr th {
  width: 5em;
  color: #69412b;
  font-weight: bolder;
}
.shops .searchFormCol .inputFormCol table tr td {
  width: calc(100% - 6em);
}
.shops .searchFormCol .inputFormCol table tr td .text label {
  display: none;
}
.shops .searchFormCol .inputFormCol table tr td .text input {
  width: 100%;
  padding: 5px 30px 8px 8px;
  font-size: 1.5rem;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .inputFormCol table tbody {
    display: flex;
    justify-content: space-between;
  }
  .shops .searchFormCol .inputFormCol table tbody tr {
    display: block;
    width: 15%;
  }
  .shops .searchFormCol .inputFormCol table tbody tr.free {
    width: 65%;
  }
  .shops .searchFormCol .inputFormCol table tbody tr th {
    display: block;
  }
  .shops .searchFormCol .inputFormCol table tbody tr td {
    display: block;
    width: 100%;
  }
}
.shops .searchFormCol .itemDetail {
  margin-bottom: 5px;
  padding: 20px;
  font-weight: bolder;
  line-height: 1.3em;
  background: #fff;
}
.shops .searchFormCol .itemDetail img {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
  border: 1px solid #efefef;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .itemDetail {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shops .searchFormCol .itemDetail img {
    width: 100%;
    max-width: 200px;
    margin: 0 10px 0 0;
  }
}
.shops .searchFormCol .note {
  margin: 5px 0 1em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .note {
    text-align: center;
  }
}
.shops .searchFormCol .attentionClick {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .btnCol {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .btnCol li {
    width: 40%;
  }
}
.shops .searchFormCol .btnCol li:first-child {
  margin-bottom: 10px;
}
.shops .searchFormCol .btnCol {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.shops .searchFormCol .btnCol .submit {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 0 !important;
  transition: all 0.2s ease;
}
.shops .searchFormCol .btnCol input[type="submit"], .shops .searchFormCol .btnCol button[type="submit"] {
  position: relative;
  -webkit-appearance: none;
  border: none;
  width: 100%;
  padding: 15px 0;
  background-color: #69412b;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bolder;
  cursor: pointer;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .btnCol input[type="submit"], .shops .searchFormCol .btnCol button[type="submit"] {
    line-height: 1.6;
  }
}
.shops .searchFormCol .btnCol input[type="submit"]:after, .shops .searchFormCol .btnCol button[type="submit"]:after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  content: "";
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .btnCol:hover {
    opacity: .6;
  }
}
.shops .searchFormCol .howto li {
  margin-left: 1em;
  text-indent: -1em;
}
.shops .searchFormCol .inner .searchBtn {
  text-align: center;
  margin: 40px 0;
}
.shops .searchFormCol .inner .searchBtn input, .shops .searchFormCol .inner .searchBtn button {
  width: auto;
  padding: 1em 2em;
  border-radius: 5px;
}
.shops .searchFormCol .inner .searchBtn input:after, .shops .searchFormCol .inner .searchBtn button:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .shops .searchFormCol .inner {
    display: flex;
  }
  .shops .searchFormCol .inner .searchBtn {
    width: 112px;
    text-align: center;
    margin: 0 0 0 40px;
  }
}
.shops .notice h3 {
  margin-bottom: 20px;
  padding-left: 8px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  border-left: 5px solid #69412b;
  line-height: 130%;
}
.shops .notice ul {
  margin: 10px 0 0;
}
.shops .notice ul li {
  margin: 0 0 .3em 1em;
  text-indent: -1em;
  line-height: 1.3em;
}
.shops #shop_list {
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .shops #shop_list table {
    width: 100%;
    border: none;
  }
  .shops #shop_list table thead {
    display: none;
  }
  .shops #shop_list table tbody tr {
    margin: 20px 0 0;
    border: 1px solid #69412b;
  }
  .shops #shop_list table tbody tr td {
    display: block;
    padding: 5px 10px;
    border: none;
  }
  .shops #shop_list table tbody tr td:first-child {
    font-weight: bold;
    color: #69412b;
  }
  .shops #shop_list table tbody tr td:not(:last-child) {
    border-bottom: 1px dashed #ccc;
  }
  .shops #shop_list table tbody tr td a {
    color: #69412b;
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px) {
  .shops #shop_list {
    margin: 0 0 20px;
  }
  .shops #shop_list table {
    width: 100%;
  }
  .shops #shop_list table thead tr {
    background: #f3f0e9;
  }
  .shops #shop_list table thead tr th {
    min-width: 5em;
    padding: 5px 10px;
    color: #69412b;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ccc;
  }
  .shops #shop_list table tr td {
    padding: 5px 10px;
    border: 1px solid #ccc;
  }
  .shops #shop_list table tr td a {
    color: #69412b;
    text-decoration: underline;
  }
}
.shops .paginator {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.shops .paginator span {
  margin: 5px;
  padding: 6px 15px;
  border: 1px solid #efefef;
}
.shops .paginator span:has(a) {
  padding: 0;
  border: none;
}
.shops .paginator span:has(a) a {
  display: block;
  padding: 6px 15px;
  border: 1px solid #efefef;
}
.shops .paginator span:has(a) a:hover {
  background: #69412b;
  color: #fff !important;
  border: 1px solid #69412b;
}
.shops .paginator span.current {
  padding: 6px 15px;
  background: #69412b;
  color: #fff !important;
  border: 1px solid #69412b;
}
@media screen and (min-width: 768px) {
  .shops .paginator {
    justify-content: center;
  }
}
.shops .btnCol.back {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 40px auto 0;
}
.shops .btnCol.back a {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 0;
  background-color: #69412b;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bolder;
  border: none;
  line-height: 1;
  text-align: center;
}
.shops .btnCol.back a:hover {
  color: #fff !important;
  opacity: .6;
}
@media screen and (min-width: 768px) {
  .shops .btnCol.back a {
    line-height: 1.6;
  }
}
