@charset "utf-8";

/* CSS Document */

/***********
pageHeading
************/

.pws-header {
  padding-top: 3em;
  padding-bottom: 2em;
}
.pws-header-title {
  font-size: 270%;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width:834px) {

  .pws-header {
    padding-top: 2em;
    padding-bottom: 1em;
  }
  .pws-header-title {
    font-size: 154%;
  }

}

/***********
locationSearch
************/

.pws-locationSearch {
  text-align: center;
}

.pws-locationSearch-container {
  padding: 5em 5%;
}

.pws-locationSearch-link {
  padding-bottom: 3em;
}
.pws-locationSearch-searchBox {
}

@media screen and (min-width:835px) {

  .pws-locationSearch .pws-bgColor01 {
    background: none;
  }
  .pws-locationSearch-link {
    display: none;
  }
  .pws-locationSearch-container {
    padding: 0 5%;
    max-width: 834px;
    margin: 0 auto;
  }

}

@media screen and (max-width:834px) {

  .pws-locationSearch-container {
    padding: 3em 5%;
  }

  .pws-locationSearch-link {
    padding-bottom: 1.5em;
  }
}

/***********
searchBox
************/

.pws-searchBox {
}
.pws-searchBox form {
}
.pws-searchBox-container {
  display: flex;
}
.pws-searchBox-inner {
  flex: 1;
}
.pws-searchBox-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #aaa !important;
  border-right: none !important;
  border-radius: 5px 0 0 5px !important;
  font-size: 16px !important;
  padding: 0 10px;
  height: 50px;
}
.pws-searchBox-link {
}
.pws-searchBox-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0 5px 5px 0;
  border: 1px solid #aaa;
  box-sizing: border-box;
  width: 56px;
  height: 50px;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #50763d;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.pws-searchBox-btn img {
  width: 26px;
  height: 26px;
}
body.is-pc .pws-searchBox-btn:hover {
  background-color: #65a061;
  color: #fff;
}

@media screen and (max-width:834px) {

  .pws-searchBox-input {
    font-size: 16px;
    padding: 0 5px;
    height: 40px;
  }
  .pws-searchBox-btn {
    width: 46px;
    height: 40px;
  }
  .pws-searchBox-btn img {
    width: 20px;
    height: 20px;
  }

}

/***********
homeContainer
************/

.pws-homeContainer {
  padding-top: 5em;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width:834px) {

  .pws-homeContainer {
    padding-top: 1em;
    display: block;
  }

}


/***********
prefSearch
************/

.pws-prefSearch{
  width: 49%;
  padding: 3em 5%;
}

.pws-prefSearch-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.pws-prefSearch-list > li {
  width: 48.5%;
  margin-bottom: 3%;
  border: 1px solid #aaa;
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  transition: 0.2s;
}
.pws-prefSearch-list-parent {
  display: block;
  font-size: 139%;
  padding: 1.4em 0.5em 1.4em 0;
  position: relative;
  white-space: nowrap;
  transition: 0.2s;
}
body.is-pc .pws-prefSearch-list > li:hover .pws-prefSearch-list-parent {
  color: #65a061;
}
.pws-prefSearch-list-parent::after {
  content: "";
  display: block;
  width:  10px;
  height: 10px;
  border-bottom: 2px solid #50763d;
  border-right: 2px solid #50763d;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-80%) rotate(45deg) ;
}
.pws-prefSearch-list ul {
  position: absolute;
  left: -1px;
  top: 100%;
  width: calc(100% + 2px);
  background-color: #fff;
  border: 1px solid #aaa;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.pws-prefSearch-list > li:hover {
  border-radius: 5px 5px 0 0;
}
.pws-prefSearch-list > li:hover ul {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.pws-prefSearch-list ul li {
}
.pws-prefSearch-list ul li:not(:last-child) {
  border-bottom: 1px solid #aaa;
}
.pws-prefSearch-list ul li a {
  display: block;
  font-size: 139%;
  color: inherit;
  text-decoration: none;
  padding: 0.6em 0.5em;
}
.pws-prefSearch-list ul li a:hover {
  background-color: #dbeee2;
}


@media screen and (max-width:834px) {

  .pws-prefSearch{
    width: auto;
    padding: 2.5em 5%;
    margin-bottom: 1em;
  }

  .pws-prefSearch-list {
  }
  .pws-prefSearch-list > li {
    width: 48.5%;
    margin-bottom: 3%;
  }
  .pws-prefSearch-list-parent {
    display: block;
    font-size: 116%;
    padding: 0.8em 0.5em 0.8em 0;
    position: relative;
    white-space: nowrap;
    transition: 0.2s;
  }
  body.is-pc .pws-prefSearch-list > li:hover .pws-prefSearch-list-parent {
    color: #65a061;
  }
  .pws-prefSearch-list-parent::after {
    width:  0.5em;
    height: 0.5em;
  }

  .pws-prefSearch-list ul li a {
    display: block;
    font-size: 116%;
    color: inherit;
    padding: 0.5em 0.5em;
  }

}


/***********
typeSearch
************/

.pws-typeSearch{
  width: 49%;
  padding: 3em 5%;
}

.pws-typeSearch-list {
  padding-bottom: 1em;
}
.pws-typeSearch-list li {
  padding-bottom: 1em;
}

@media screen and (max-width:834px) {

  .pws-typeSearch{
    width: auto;
    padding: 2.5em 5%;
  }

}

/***********
homeTips
************/

.pws-contact {
  padding-top: 3em;
  padding-bottom: 10em;
}

.pws-contact-text{
  padding-bottom: 3em;
}

@media screen and (max-width:834px) {

  .pws-contact-text{
    padding-top: 1em;
    padding-bottom: 1em;
  }

}

/***********
pws-itemSearch
************/

.pws-itemSearch {
}
.pws-itemSearch-section {
  background-color: #fff;
  box-shadow: 0.2em 0.2em 1em 0.2em rgba(0, 0, 0, 0.12);
  margin-bottom: 1.5em;
}
.pws-itemSearch-heading {
  overflow: hidden;
  position: relative;
  min-height: 170px;
  padding: 2em 320px 4.5em 2em;
  cursor: pointer;
  overflow: hidden;
}
.pws-itemSearch-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(101, 160, 97, 0.3) 100%);
  mix-blend-mode: hard-light;
  opacity: 0;
  transition: 0.2s;
}
body.is-pc .pws-itemSearch-heading:hover::after {
  opacity: 1;
}
.pws-itemSearch-heading-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 350px;
  transform: translate(20%,-5%);
}
.pws-itemSearch-heading-img img {
}
.pws-itemSearch-heading-subTitle {
  font-size: 139%;
  font-weight: 600;
  color: #50763d;
  line-height: 1.3;
  padding-bottom: 0.2em;
  position: relative;
}
.pws-itemSearch-heading-title {
  font-size: 224%;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
}
.pws-itemSearch-heading-title a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 999;
}
.pws-itemSearch-heading-more {
  font-size: 154%;
  font-weight: 600;
  color: #50763d;
  position: absolute;
  left: 2rem;
  bottom: 1.2rem;
  padding-left: 1.5em;
}
.pws-itemSearch-heading-more::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-bottom: 2px solid #50763d;
  border-right: 2px solid #50763d;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%) rotate(45deg) ;
}
.pws-itemSearch-heading.is-active .pws-itemSearch-heading-more::before {
  transform: translateY(-20%) rotate(225deg) ;
}

.pws-itemSearch-heading-link {
  position: absolute;
  right: 250px;
  top: 0;
  z-index: 9;
}
.pws-itemSearch-heading-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #50763d;
  border-radius:50%;
  transition: 0.3s;
}
.pws-itemSearch-heading-link a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 131%;
  font-weight: 600;
  padding: 10px 30px 15px;
  text-decoration: none;
  line-height: 1.2;
}
.pws-itemSearch-heading-link:hover::before {
  background-color: #65a061;
}

.pws-itemSearch-block {
  display: none;
}
.pws-itemSearch-block-inner {
  padding: 1.5em 2em 2em;
  border-top: 1px solid #aaa;
}

.pws-itemSearch-upper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1em;
}
.pws-itemSearch-upper-first {
}
.pws-itemSearch-upper-second {
}
.pws-itemSearch-closeBtn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 154%;
  font-weight: 600;
  color: #50763d;
  padding-right: 2em;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.pws-itemSearch-closeBtn::before,
.pws-itemSearch-closeBtn::after{
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  margin-top: -1px;
  background-color: #50763d;
  position: absolute;
  right: 0;
  top: 50%;
}
.pws-itemSearch-closeBtn::before{
  transform: rotate(-45deg);
}
.pws-itemSearch-closeBtn::after{
  transform: rotate(45deg);
}
body.is-pc .pws-itemSearch-closeBtn:hover {
  opacity: 0.7;
}

.pws-itemSearch-selectAll[type="checkbox"] {
  display: none;
}
.pws-itemSearch-selectAll[type="checkbox"] + label {
  display: inline-block;
  font-size: 139%;
  padding: 0.2em 0 0.2em 1.8em;
  position: relative;
  cursor: pointer;
}
.pws-itemSearch-selectAll[type="checkbox"] + label::before {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #ccc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pws-itemSearch-selectAll[type="checkbox"] + label::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-color: #50763d;
  position: absolute;
  left: 0.20em;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.pws-itemSearch-selectAll[type="checkbox"]:checked + label::before {
  border-color: #50763d;
}
.pws-itemSearch-selectAll[type="checkbox"]:checked + label::after {
  opacity: 1;
}

/*
list
*/

.pws-itemSearch-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -2%;
}
.pws-itemSearch-items li {
  width: 31.3%;
  margin-left: 2%;
  margin-bottom: 2%;
}
.pws-itemSearch-items-label{
  display: block;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.pws-itemSearch-items-block {
  border: 1px solid #aaa;
  height: 100%;
  display: flex;
  position: relative;
}
.pws-itemSearch-items-img {
  padding: 0.5em;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.pws-itemSearch-items-img img {
}
.pws-itemSearch-items-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em ;
  position: relative;
}
.pws-itemSearch-items-title {
  font-size: 170%;
  font-weight: 600;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.pws-itemSearch-items-check[type="checkbox"] {
  display: none;
}
/*
.pws-itemSearch-items-check[type="checkbox"] + .pws-itemSearch-items-label::before {
  content: "";
  display: block;
  width: 10px;
  height: 14px;
  border: 3px solid #50763d;
  border-top: none;
  border-left: none;
  position: absolute;
  right: 15px;
  top: 5px;
  transform: rotate(45deg);
  opacity: 0;
}
*/
.pws-itemSearch-items-check[type="checkbox"] + .pws-itemSearch-items-label .pws-itemSearch-items-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(101, 160, 97, 0.2);
  border-radius: 100% 0 0 100%;
  opacity: 0;
}
.pws-itemSearch-items-check[type="checkbox"]:checked + .pws-itemSearch-items-label .pws-itemSearch-items-block {
  border-color: #50763d;
}
.pws-itemSearch-items-check[type="checkbox"]:checked + .pws-itemSearch-items-label::before {
  opacity: 1;
}
.pws-itemSearch-items-check[type="checkbox"]:checked + .pws-itemSearch-items-label .pws-itemSearch-items-inner::after {
  opacity: 1;
}


.pws-itemSearch-fixedSubmit {
  position: fixed;
  right: 0;
  bottom: 12vh;
  z-index: 999;
  transform: translateX(100%);
  transition: 0.3s;
}
.pws-itemSearch-fixedSubmit-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: inline-block;
  padding: 1.2em 1.5em 1.1em 2.5em ;
  font-size: 170%;
  font-weight: 600;
  font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Segoe UI", Meiryo, sans-serif;
  color: #fff;
  background-color: #294a26;
  border-radius: 10em 0 0 10em;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.2s ease;
  position: relative;
  line-height: 1.3;
  cursor: pointer;
}
body.is-fixed .pws-itemSearch-fixedSubmit {
  transform: translateX(0%);
}
.pws-itemSearch-fixedSubmit-btn:hover {
  background-color: #65a061;
  color: #fff !important;
}

@media screen and (max-width:1024px) {

  .pws-itemSearch-items-title {
    font-size: 154%;
  }

}

@media screen and (max-width:834px) {

  .pws-itemSearch {
  }
  .pws-itemSearch-section {
    margin-bottom: 1em;
  }
  .pws-itemSearch-heading {
    min-height: 120px;
    padding: 1.2em 140px 3.2em 1.2em;
  }
  .pws-itemSearch-heading::after {
  }
  body.is-pc .pws-itemSearch-heading:hover::after {
  }
  .pws-itemSearch-heading-img {
    width: 200px;
    top: 50%;
    transform: translate(35%,-50%);
  }
  .pws-itemSearch-heading-subTitle {
    font-size: 100%;
  }
  .pws-itemSearch-heading-title {
    font-size: 154%;
  }
  .pws-itemSearch-heading-more {
    font-size: 124%;
    left: 1.5rem;
    bottom: 0.8rem;
    padding-left: 1.2em;
  }


  .pws-itemSearch-heading-link {
    right: clamp(90px,25%, 150px) ;
  }
  .pws-itemSearch-heading-link::before {
  }
  .pws-itemSearch-heading-link a {
    font-size: 93%;
    padding: 5px 15px 8px;
  }

  .pws-itemSearch-block {
    display: none;
  }
  .pws-itemSearch-block-inner {
    padding: 1.2em 1.2em 1.5em;
    border-top: 1px solid #aaa;
  }

  .pws-itemSearch-upper {
    padding-bottom: 1em;
  }
  .pws-itemSearch-closeBtn {
    font-size: 124%;
  }

  .pws-itemSearch-selectAll[type="checkbox"] + label {
    font-size: 116%;
  }
  /*
  list
  */

  .pws-itemSearch-items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1%;
    margin-bottom: -1%;
  }
  .pws-itemSearch-items li {
    width: 49%;
    min-height: 55px;
    margin-left: 1%;
    margin-bottom: 1%;
  }
  .pws-itemSearch-items-label{
  }
  .pws-itemSearch-items-block {
  }
  .pws-itemSearch-items-img {
    padding: 0.2em;
    width: 35%;
  }
  .pws-itemSearch-items-inner {
    padding: 1em 0.3em ;
  }
  .pws-itemSearch-items-title {
    font-size: 108%;
  }

  .pws-itemSearch-items-check[type="checkbox"] + .pws-itemSearch-items-label::before {
    width: 6px;
    height: 10px;
    border-width: 2px;
    right: 8px;
    top: 2px;
  }
  .pws-itemSearch-items-check[type="checkbox"] + .pws-itemSearch-items-label .pws-itemSearch-items-inner::after {
    width: 105%;
    height: 200%;
    left: -5%;
    opacity: 0;
  }



  .pws-itemSearch-fixedSubmit {
    bottom: 80px;
  }
  body.is-loaded .pws-itemSearch-fixedSubmit {
    transform: translateX(0%);
  }
  .pws-itemSearch-fixedSubmit-btn {
    font-size: 124%;
    padding: 1em 1em 0.9em 0.8em ;
  }

}



/***********
googleMap
************/

.pws-googleMap {
}

.pws-googleMap-canvas#map{
  width: 100%;
  height: 700px;
  background-color: #fff;
  box-shadow: 0 0 0 1px #ccc;
}

@media screen and (max-width:834px) {

  .pws-googleMap-canvas#map{
    height: min(130vw,500px);
  }

}
/***********
mapControl
************/

.pws-mapControl {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-top: 1em;
}
.pws-mapControl-block {
  width: 48%;
}
.pws-mapControl-block-header {
  height: 6em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pws-mapControl-text {
  font-size: 124%;
}
.pws-mapControl-shop {
  border-top: 1px solid #aaa;
}
.pws-mapControl-shop li {
  border-bottom: 1px solid #aaa;
}
.pws-mapControl-shop a {
  display: block;
  padding: 1.5em 4em 1.5em 0;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.pws-mapControl-shop a::before {
  content: "";
  display: block;
  width: 2.5em;
  height: 2.5em;
  background-color: #50763d;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.pws-mapControl-shop a::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg) ;
}
.pws-mapControl-shop a:hover::before {
  background-color: #65a061;
}
.pws-mapControl-shop-title {
  font-size: 139%;
  font-feature-settings: "palt";
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: 0.2s;
}
.pws-mapControl-shop a:hover .pws-mapControl-shop-title {
  color: #50763d;
}
.pws-mapControl-shop-address {
  font-style: normal;
  opacity: 0.8;
}

@media screen and (max-width:834px) {

  .pws-mapControl {
    display: block;
    padding-top: 0.5em;
  }
  .pws-mapControl-block {
    width: auto;
    padding-bottom: 2em;
  }
  .pws-mapControl-block-header {
    height: auto;
    display: block;
    padding-bottom: 1em;
  }
  .pws-mapControl-text {
    font-size: 108%;
    padding-top: 0.5em;
  }
  .pws-mapControl-shop {
  }
  .pws-mapControl-shop li {
  }
  .pws-mapControl-shop a {
    padding: 1.2em 3em 1.2em 0;
  }
  .pws-mapControl-shop a::before {
    width: 2em;
    height: 2em;
    right: .0;
  }
  .pws-mapControl-shop a::after {
    width: 0.4em;
    height: 0.4em;
    right: 0.8em;
  }
  .pws-mapControl-shop-title {
    font-size: 124%;
  }
  .pws-mapControl-shop-address {
    font-size: 85%;
  }

}


/***********
mapSearch
************/

.pws-mapSearch {
}
.pws-mapSearch-wrapper {
  background-color: #fff;
}
.pws-mapSearch-wrapper +.pws-mapSearch-wrapper {
  margin-top: 1.5em;
}
.pws-mapSearch-heading {
  background-color: #50763d;
  color: #fff;
  padding: 0.8em 1.5em;
  font-size: 154%;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.pws-mapSearch-heading.is-active {
  border-radius: 10px 10px 0 0;
}
.pws-mapSearch-heading::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 14px;
  top:50%;
  transform: translateY(-65%) rotate(45deg) ;
}
.pws-mapSearch-heading.is-active::after {
  transform: translateY(-35%) rotate(225deg) ;
}

.pws-mapSearch-section {
}
.pws-mapSearch-title {
  border-bottom: 1px solid #ccc;
  background-color: #f6f4d9;
  padding: 0.8em 3em 0.8em 1em;
  font-size: 124%;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
.pws-mapSearch-title::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #50763d;
  border-right: 2px solid #50763d;
  position: absolute;
  right: 14px;
  top:50%;
  transform: translateY(-65%) rotate(45deg) ;
}
.pws-mapSearch-title.is-active::after {
  transform: translateY(-35%) rotate(225deg) ;
}

.pws-mapSearch-container,
.pws-mapSearch-block {
  display: none;
}

.pws-mapSearch-items {
}
.pws-mapSearch-items li {
  border-bottom: 1px solid #ccc;
  position: relative;
}

.pws-mapSearch-selectAll[type="checkbox"] {
  display: none;
}
.pws-mapSearch-selectAll[type="checkbox"] + label {
  display: block;
  font-size: 116%;
  padding: 0.8em 1em 0.8em 36px;
  border-bottom: 1px solid #ccc;
  position: relative;
  cursor: pointer;
}
.pws-mapSearch-selectAll[type="checkbox"] + label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.pws-mapSearch-selectAll[type="checkbox"] + label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #50763d;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.pws-mapSearch-selectAll[type="checkbox"]:checked + label::before {
  border-color: #50763d;
}
.pws-mapSearch-selectAll[type="checkbox"]:checked + label::after {
  opacity: 1;
}



.pws-mapSearch-items-check[type="checkbox"] {
  display: none;
}
.pws-mapSearch-items-check[type="checkbox"] + label {
  display: block;
  font-size: 116%;
  padding: 0.4em 1em 0.4em 36px;
  position: relative;
  cursor: pointer;
}
.pws-mapSearch-items-check[type="checkbox"] + .pws-mapSearch-items-label::before {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #50763d;
  border-top: none;
  border-left: none;
  position: absolute;
  left: 17px;
  top: 8px;
  transform: rotate(45deg);
  opacity: 0;
}
.pws-mapSearch-items-check[type="checkbox"]:checked + .pws-mapSearch-items-label {
  background-color: rgba(101, 160, 97, 0.2);
}
.pws-mapSearch-items-check[type="checkbox"]:checked + .pws-mapSearch-items-label::before {
  opacity: 1;
}

@media screen and (max-width:834px) {


  .pws-mapSearch-wrapper +.pws-mapSearch-wrapper {
    margin-top: 1em;
  }
  .pws-mapSearch-heading {
    font-size: 131%;
    text-align: center;
  }


}


/***********
shopDetail
************/

.pws-shopDetail {
  text-align: center;
  color: #50763d;
}
.pws-shopDetail-address {
  font-size: 139%;
  font-style: normal;
}
.pws-shopDetail-tel {
  font-size: 170%;
  font-weight: 600;
  padding-top: 0.2em;
}
.pws-shopDetail-tel a {
  color: inherit;
  text-decoration: none;
}
.pws-shopDetail-mapLink {
  padding-top: 1em;
}
.pws-shopDetail-mapLink a {
  display: inline-block;
  font-size: 139%;
  color: inherit;
  text-decoration: none;
  padding: 0.3em 1em;
  position: relative;
}
.pws-shopDetail-mapLink a:hover {
  filter: brightness(120%);
}
.pws-shopDetail-mapLink a::before {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  top: 20%;
  background: #fff;
  border-radius: 10em
}
.pws-shopDetail-mapLink img {
  width: 2em;
  vertical-align: middle;
  position: relative;
  transform: translateY(-0.2em) scale(1.1);
  margin-right: 0.5em;
}
.pws-shopDetail-mapLink span {
  display: inline-block;
  font-weight: 600;
  position: relative;
  padding-top: 0.5em;
  padding-right: 0.5em;
}

.pws-shopDetail-gMap {
  padding-top: 1em;
  padding-bottom: 2em;
}
.pws-shopDetail-gMap iframe {
  width: 100%;
  height: 500px;
  vertical-align: middle;
}

@media screen and (max-width:834px) {


  .pws-shopDetail {
    text-align: left;
  }
  .pws-shopDetail .pws-title {
    text-align: left;
  }
  .pws-shopDetail-address {
    font-size: 100%;
  }
  .pws-shopDetail-tel {
    font-size: 124%;
  }
  .pws-shopDetail-container {
    display: flex;
  }
  .pws-shopDetail-inner {
    flex: 1;
  }

  .pws-shopDetail-mapLink {
    padding-top: 0;
    padding-left: 0.5em;
    white-space: nowrap;
  }
  .pws-shopDetail-mapLink a {
    display: block;
    font-size: 100%;
    text-decoration: none;
    text-align: center;
    padding: 0.3em 0.3em;
  }
  .pws-shopDetail-mapLink a:hover {
    filter: brightness(100%);
  }
  .pws-shopDetail-mapLink a::before {
    display: none;
  }
  .pws-shopDetail-mapLink img {
    width: 3em;
    transform: translateY(0) scale(1);
    margin-right: 0;
  }
  .pws-shopDetail-mapLink span {
    display: block;
    position: relative;
    padding-top: 0.5em;
    padding-right: 0;
  }

  .pws-shopDetail-gMap {
  }
  .pws-shopDetail-gMap iframe {
    height: 400px;
  }


}

/***********
result
************/

.pws-result {
}
.pws-result-heading {
  text-align: center;
  font-size: 270%;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-bottom: 1em;
}
.pws-result-heading span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.pws-result-heading img {
  max-height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%);
  pointer-events: none;
}

.pws-result-section {
  position: relative;
  background-color: #FFF;
  box-shadow: 0.2em 0.2em 1em 0.2em rgba(0, 0, 0, 0.12);
}
.pws-result-section +.pws-result-section {
  margin-top: 2em;
}
.pws-result-title {
  background-color: #50763d;
  color: #FFFF;
  font-size: 200%;
  padding: 0.5EM 1EM;
  line-height: 1.3;
}

.pws-result-table{
  text-align: left;
  border: none;
}
.pws-result-table thead th{
  border: none;
  background-color: #F6F4D9;
  font-weight: normal;
  font-size: 124%;
  padding: 0.2em 1em;
}
.pws-result-table thead th:not(:last-child){
  border: none;
  border-right: 2px solid #fff;
}
.pws-result-table tbody tr:not(:last-child){
  border: none;
  border-bottom: 1px solid #ccc;
}
.pws-result-table tbody th{
  width: 60%;
  border: none;
  background-color: #fff;
  padding: 0.5em 1em;
}
.pws-result-table tbody td{
  border: none;
  border: none;
  background-color: #fff;
  padding: 0.5em 1em;
}


.pws-result-table-item {
  display: flex;
  align-items: center;
}
.pws-result-table-img {
  width: 70px;
}
.pws-result-table-img img {
}
.pws-result-table-title {
  flex: 1;
  padding-left: 1em;
  font-size: 139%;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.3;
}

.pws-result-table-schedule {
  font-size: 124%;
  font-weight: 600;
  display: inline-block;
  line-height: 1.3;
}
.pws-result-table-schedule:not(:last-child) {
  padding-right: 1.5em;
}

@media screen and (max-width:834px) {

  .pws-result {
  }
  .pws-result-heading {
    font-size: 170%;
    padding-bottom: 0.5em;
  }
/*
  .pws-result-heading::before {
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -10px;
    transform: translateY(0%);
  }
*/
  .pws-result-heading img {
    max-height: 80px;
    left: 80px;
    transform: translate(0,-55%);
  }

  .pws-result-section {
    position: relative;
    background-color: #FFF;
    box-shadow: 0.2em 0.2em 1em 0.2em rgba(0, 0, 0, 0.12);
    margin-left: -2vw;
    margin-right: -2vw;
  }
  .pws-result-section +.pws-result-section {
    margin-top: 2em;
  }
  .pws-result-title {
    font-size: 139%;
  }

  .pws-result-table{
  }
  .pws-result-table thead th{
    font-size: 100%;
    padding: 0.2em 0.5em;
  }
  .pws-result-table thead th:not(:last-child){
    border-right: 2px solid #fff;
  }
  .pws-result-table tbody tr:not(:last-child){
    border-bottom: 1px solid #ccc;
  }
  .pws-result-table tbody th{
    width: 80%;
    padding: 0.5em 0.5em;
  }
  .pws-result-table tbody td{
    padding: 0.5em 0.5em;
  }


  .pws-result-table-item {
  }
  .pws-result-table-img {
    width: min(15vw,70px);
  }
  .pws-result-table-img img {
  }
  .pws-result-table-title {
    padding-left: 0.5em;
    font-size: 116%;
  }

  .pws-result-table-schedule {
    font-size: 116%;
    display: block;
    white-space: nowrap;
  }
  .pws-result-table-schedule:not(:last-child) {
    padding-right: 0em;
  }

}


/***********
googlemapAPI部分
************/
/*
.gm-style-iw ,
.gm-style-iw .gm-style-iw-t {
  background: #50763d !important;
}
.infowindow a {
  color: #fff !important;
  display: inline-block;
  text-align: left;
  background: #50763d !important;
  padding: 0 10px 8px 0;
}
.gm-style .gm-style-iw-c {
}
*/
/* 販売店ランク0 */
.gm-style-iw:has(.shop-rank0) ,
.gm-style-iw:has(.shop-rank0) .gm-style-iw-t:has(.shop-rank0) {
  background: #50763d !important;
}
.shop-rank0 a {
  color: #fff !important;
  display: inline-block;
  text-align: left;
  background: #50763d !important;
  padding: 0 10px 8px 0;
}

/* 販売店ランク1 */
.gm-style-iw:has(.shop-rank1) ,
.gm-style-iw:has(.shop-rank1) .gm-style-iw-t:has(.shop-rank1) {
  background: #b99a00 !important;
}
.shop-rank1 a {
  color: #000 !important;
  display: inline-block;
  text-align: left;
  background: #b99a00 !important;
  padding: 0 10px 8px 0;
}

/* 販売店ランク2 */
.gm-style-iw:has(.shop-rank2) ,
.gm-style-iw:has(.shop-rank2) .gm-style-iw-t:has(.shop-rank2) {
  background: #5f2d88 !important;
}
.shop-rank2 a {
  color: #fff !important;
  display: inline-block;
  text-align: left;
  background: #5f2d88 !important;
  padding: 0 10px 8px 0;
}

.shop-rank0, .shop-rank1, .shop-rank2{
  padding-right: 10px;
}

.shop-rank-icon{
  height: 30px;
}

.gm-ui-hover-effect {
  position: relative;
  width: 15px;
  height: 15px;
  background: red;
}
.gm-ui-hover-effect::after{
  content: "×";
  color: #fff !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 20px;
}

.gm-ui-hover-effect span{
  display: none;
}
.gm-style .gm-style-iw-tc::after {
  background: #50763d !important;
  width: 18px !important;
}

.gm-style-iw-d {
  overflow: hidden !important;
}

/*
*/
/***********
xxxxx
************/






































