@charset "UTF-8";
h4.h4title {
  border-left: 5px solid #697f33;
  border-bottom: 1px solid #697f33;
  font-weight: bold;
  font-size: 14pt;
  margin-bottom: 1em;
  padding-left: 1em;
  margin-top: 2em;
}

@media screen and (max-width: 700px) {
  h4.h4title {
    font-size: 4.3vw;
  }
}

.check-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12pt;
  padding-left: 2em;
  padding-right: 2em;
}

.check-box .c-box {
  margin-right: 3em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.check-box input[type="checkbox"] {
  display: none;
  /*デフォルトのチェックボックスを非表示にする*/
}

.check-box input[type="checkbox"] + label {
  position: relative;
  padding-left: 1.6em;
  /*チェックボックス分の隙間を作る*/
}

.check-box input[type="checkbox"] + label::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /*中央ぞろえにする*/
  border: 1px solid #999;
  /*お好きなや太さで。*/
  border-radius: 0px;
  cursor: pointer;
  /*ポインターを表示する*/
}

.check-box input[type="checkbox"]:checked + label::before {
  /*チェックしたときの箱の色を変える*/
  background: #697f33;
}

.check-box input[type="checkbox"]:checked + label::after {
  /*チェックの✓をつくる*/
  content: "";
  display: block;
  width: 0.8em;
  height: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  /*ここから下は位置を調整する*/
  top: 35%;
  left: 0.35em;
  /*箱を斜めに傾けてチェック表示にする*/
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg) translateY(-50%);
}

p.areatitle {
  font-weight: bold;
  font-size: 13pt;
  border-left: 5px solid #697f33;
  padding-left: 0.8em;
  margin-top: 2.2em;
  margin-bottom: 0.4em;
}

.s-backbtn {
  text-align-last: left;
}

.s-backbtn a {
  border-radius: 3em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  font-size: 12pt;
  padding-left: 2em;
  padding-right: 2em;
}

@media screen and (max-width: 700px) {
  .s-backbtn a {
    font-size: 4vw;
  }
}

.w1200 .text-box {
  font-size: 10pt;
}

.b-box {
  width: 100%;
  border: 1px solid #cbcbcb;
  padding: 2em;
}

.tagbox {
  margin-top: 42px;
  margin-bottom: 0px;
}

@media screen and (max-width: 700px) {
  .tagbox {
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}

.tagbox span {
  display: inline-block;
  background-color: #697f33;
  color: white;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-radius: 2em;
  margin-right: 1em;
  margin-bottom: 0.6em;
}

p.pricebox {
  padding: 1em;
  font-size: 16pt;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 40px;
  margin-bottom: 1em;
  background-color: #f1f1f1;
}

@media screen and (max-width: 700px) {
  p.pricebox {
    margin-bottom: 5vw;
    font-size: 5.3vw;
  }
}

p.pricebox span {
  font-size: 20pt;
  color: #b8506d;
}

@media screen and (max-width: 700px) {
  p.pricebox span {
    font-size: 6vw;
  }
}

p.ad02 {
  display: inline-block;
  background-color: #2d6035;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  color: white;
  margin-bottom: 0.5em;
  font-size: 12pt;
}

.b-box {
  margin-bottom: 40px;
}

.b-box p.title {
  font-size: 15pt;
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #cbcbcb;
}

@media screen and (max-width: 700px) {
  .b-box p.title {
    font-size: 4.3vw;
  }
}

.b-box .catchcopy p {
  margin-bottom: 1em;
}

.b-box .flex2-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.b-box .flex2-b .img-box {
  width: 30%;
}

@media screen and (max-width: 700px) {
  .b-box .flex2-b .img-box {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.b-box .flex2-b .txt-box {
  width: 65%;
}

@media screen and (max-width: 700px) {
  .b-box .flex2-b .txt-box {
    width: 100%;
  }
}

.b-box .flex2-b .txt-box .tagbox {
  width: 100%;
}

.b-box .flex2-b .txt-box table {
  width: 100%;
}

.b-box .flex2-b .txt-box table td {
  padding: 0.5em;
}

.b-box .flex2-b .txt-box table td:first-child {
  width: 7em;
}

.checkbox {
  margin-top: 20px;
  background-color: #becca2;
  border: 1px solid #cbcbcb;
  border-bottom: none;
  padding: 16px;
  width: 350px;
}

@media screen and (max-width: 700px) {
  .checkbox {
    width: 100%;
  }
}

.checkbox p {
  font-size: 12pt;
}

@media screen and (max-width: 700px) {
  .checkbox p {
    font-size: 3.6vw;
  }
}

.checkbox img {
  width: 1.6em;
  margin-right: 0.3em;
}

.checkbox img.checkmark {
  cursor: pointer;
}

.linkbox .grnlinkbox {
  margin-bottom: 0;
  margin-top: 30px;
}

.mapbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
}

.mapbox .pmap {
  width: 52%;
}

.mapbox .preflist {
  width: 48%;
  padding-left: 3em;
}

.mapbox .preflist p.preftitle {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-left: 1em;
  width: 10em;
  font-weight: bold;
  background-color: #b6c398;
}

.mapbox .preflist ul {
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5em;
  padding-left: 1em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

.mapbox .preflist ul li {
  margin-right: 1em;
}

.mapbox .preflist ul li::after {
  padding-left: 1em;
  content: "/";
  color: #666;
}

.mapbox .preflist ul li:last-child::after {
  content: "";
}

.mapbox .preflist ul li a {
  font-weight: bold;
}

.mapbox .preflist ul li a.linkNone {
  font-weight: normal;
  color: #999;
  cursor: default;
}

.clickenable {
  cursor: pointer;
}

.tx-active {
  fill: white !important;
}

.bg-active {
  fill: #495811 !important;
}

.line-active {
  fill: #495811 !important;
}

.spPrefSelect .prefbox {
  display: none;
}

.spPrefSelect .activePref p.preftitle {
  background-color: #c68031 !important;
}

.spPrefSelect .prefbox {
  margin-bottom: 5vw;
}

.spPrefSelect p.preftitle {
  cursor: pointer;
  border-radius: 0.4em;
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 5vw;
  color: white;
  background-color: #305530;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.3em;
}

.spPrefSelect p.preftitle span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: inline-block;
  padding-left: 2em;
}

.spPrefSelect p.preftitle img {
  padding-right: 1em;
  width: 2em;
  text-align: center;
  height: 0.8em;
  width: auto;
}

.spPrefSelect ul.prefPanel {
  display: none;
  border-radius: 0.4em;
  margin-bottom: 5vw;
  margin-top: 1vw;
  background-color: #617331;
}

.spPrefSelect ul.prefPanel li {
  display: none;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.spPrefSelect ul.prefPanel li p {
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  color: white;
  text-align: center;
  font-size: 5vw;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  letter-spacing: 0.3em;
}
/*# sourceMappingURL=search.css.map */