@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@400;500&display=swap");
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: var(--font-forum-zen-kaku-gothic);
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.forum {
  font-family: var(--font-forum);
}

.zen-old-mincho {
  font-family: var(--font-zen-old-mincho);
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-block {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .tab-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

.tab-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-inline {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .tab-inline {
    display: none;
  }
}

.pc-middle-inline {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-inline {
    display: inline;
  }
}

.pc-middle02-inline {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-inline {
    display: inline;
  }
}

.pc-large-inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-inline {
    display: inline;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

:root {
  --base-width: 92%;
  --base-width-middle: 86%;
  --base-width-min: 80%;
  --base-width-sp: 90.6666666667vw;
  --base-width-sp-middle: 85.3333333333vw;
  --base-width-sp-min: 80vw;
  --base-wrapper-sp: 93.3333333333vw;
  --base-inline-sp: 10%;
  --base-header-sp: 24vw;
  --base-header: 0;
  --page-color: #46a24e;
  --primary-color: #46a24e;
  --secondary-color: #f18946;
  --tertiary-color: #ffe82a;
  --color-red: #eeecce;
  --base-font-size: 14px;
  --base-font-size-sp: 3.7333333333vw;
  --font-forum-zen-kaku-gothic: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
  --font-forum: "Forum", serif;
  --font-zen-old-mincho: "Zen Old Mincho", serif;
  --base-transition-time: 0.3s;
}

/*======================================================================================*/
.index {
  display: none;
}
@media screen and (min-width: 768px) {
  .index {
    display: block;
  }
}

.reason-wrap {
  padding-top: 80vw;
}
@media screen and (min-width: 768px) {
  .reason-wrap {
    padding-top: 180px;
  }
}

.plan-search {
  max-width: 85.3333333333vw;
  margin-inline: auto;
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-search {
    max-width: 320px;
    margin-top: 35px;
  }
}

.plan-search-button {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 4.2666666667vw;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.7em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .plan-search-button {
    font-size: 16px;
  }
}
.plan-search-button.is-active {
  background-color: var(--primary-color);
  color: #fff;
}
.plan-search-button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.plan-search-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2%;
}
.plan-search-buttons .plan-search-button {
  width: 32%;
}

.plan-search-all {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-search-all {
    margin-top: 10px;
  }
}
.plan-search-all .plan-search-button {
  width: 100%;
}

.plan {
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .plan {
    margin-top: 75px;
  }
}

.plan-inner + .plan-inner {
  margin-top: 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-inner + .plan-inner {
    margin-top: 65px;
  }
}

[data-search].is-hide {
  display: none;
}

.plan-map-button.plan01-button01 {
  top: 17%;
  left: 57%;
}
.plan-map-button.plan01-button02 {
  top: 44%;
  left: 84%;
}
.plan-map-button.plan01-button03 {
  top: 11%;
  left: 20%;
}
.plan-map-button.plan01-button04 {
  top: 1%;
  left: 64.4%;
}
.plan-map-button.plan01-button05 {
  top: 62%;
  left: 71%;
}
.plan-map-button.plan02-button01 {
  top: 54%;
  left: 34%;
}
.plan-map-button.plan02-button02 {
  top: -3%;
  left: 60%;
}
.plan-map-button.plan02-button03 {
  top: 34%;
  left: 52%;
}
.plan-map-button.plan02-button04 {
  top: 68%;
  left: 60%;
}
.plan-map-button.plan02-button05 {
  top: 64%;
  left: 72%;
}
.plan-map-button.plan03-button01 {
  top: 62%;
  left: 35%;
}
.plan-map-button.plan03-button02 {
  top: 73%;
  left: 59.4%;
}
.plan-map-button.plan03-button03 {
  top: 44%;
  left: 17%;
}
.plan-map-button.plan03-button04 {
  top: 8%;
  left: 19%;
}
.plan-map-button.plan03-button05 {
  top: 28%;
  left: 70%;
}
.plan-map-button.plan04-button01 {
  top: 31%;
  left: 40%;
}
.plan-map-button.plan04-button02 {
  top: 61%;
  left: 77%;
}
.plan-map-button.plan04-button03 {
  top: 44%;
  left: 64%;
}
.plan-map-button.plan04-button04 {
  top: 62.6%;
  left: 38.5%;
}
.plan-map-button.plan05-button01 {
  top: 35%;
  left: 66%;
}
.plan-map-button.plan05-button02 {
  top: 65%;
  left: 45%;
}
.plan-map-button.plan05-button03 {
  top: 21%;
  left: 52%;
}
.plan-map-button.plan05-button04 {
  top: 54%;
  left: 59%;
}
.plan-map-button.plan05-button05 {
  top: 39%;
  left: 13%;
}
.plan-map-button.plan06-button01 {
  top: 42%;
  left: 48%;
}
.plan-map-button.plan06-button02 {
  top: 25%;
  left: 25.5%;
}
.plan-map-button.plan06-button03 {
  top: 4%;
  left: 42.4%;
}
.plan-map-button.plan06-button04 {
  top: 69%;
  left: 24%;
}
.plan-map-button.plan06-button05 {
  top: 39%;
  left: 36%;
}
.plan-map-button.plan07-button01 {
  top: 18.8%;
  left: 34.6%;
}
.plan-map-button.plan07-button02 {
  top: 54%;
  left: 51%;
}
.plan-map-button.plan07-button03 {
  top: 43%;
  left: 63%;
}
.plan-map-button.plan07-button04 {
  top: 29.2%;
  left: 52.6%;
}
.plan-map-button.plan07-button05 {
  top: 20.6%;
  left: 74.5%;
}
.plan-map-button.plan08-button01 {
  top: 19%;
  left: 61%;
}
.plan-map-button.plan08-button02 {
  top: 42%;
  left: 11%;
}
.plan-map-button.plan08-button03 {
  top: 31%;
  left: 48%;
}
.plan-map-button.plan08-button04 {
  top: 69%;
  left: 49%;
}
.plan-map-button.plan08-button05 {
  top: -4%;
  left: 43%;
}
.plan-map-button.plan09-button01 {
  top: 35%;
  left: 65%;
}
.plan-map-button.plan09-button02 {
  top: 46%;
  left: 10%;
}
.plan-map-button.plan09-button03 {
  top: 0%;
  left: 63%;
}
.plan-map-button.plan09-button04 {
  top: 11%;
  left: 80%;
}
.plan-map-button.plan09-button05 {
  top: 46%;
  left: 18.6%;
}
.plan-map-button.plan09-button06 {
  top: 77.6%;
  left: 27%;
}
.plan-map-button.plan10-button01 {
  top: 59.4%;
  left: 41%;
}
.plan-map-button.plan10-button02 {
  top: 35%;
  left: 37%;
}
.plan-map-button.plan10-button03 {
  top: 75%;
  left: 18%;
}
.plan-map-button.plan10-button04 {
  top: 41%;
  left: 49%;
}
.plan-map-button.plan10-button05 {
  top: 23%;
  left: 46%;
}
.plan-map-button.plan11-button01 {
  top: 16%;
  left: 76%;
}
.plan-map-button.plan11-button02 {
  top: 41.8%;
  left: 41%;
}
.plan-map-button.plan11-button03 {
  top: 71.4%;
  left: 43%;
}
.plan-map-button.plan11-button04 {
  top: 5.4%;
  left: 41%;
}
.plan-map-button.plan11-button05 {
  top: 73.4%;
  left: 79.6%;
}
.plan-map-button.plan12-button01 {
  top: 70%;
  left: 43%;
}
.plan-map-button.plan12-button02 {
  top: 36%;
  left: 61%;
}
.plan-map-button.plan12-button03 {
  top: 9%;
  left: 44.8%;
}
.plan-map-button.plan12-button04 {
  top: 22%;
  left: 24%;
}
.plan-map-button.plan12-button05 {
  top: 76.4%;
  left: 13.6%;
}
.plan-map-button.plan13-button01 {
  top: 18%;
  left: 63.4%;
}
.plan-map-button.plan13-button02 {
  top: 39%;
  left: 59%;
}
.plan-map-button.plan13-button03 {
  top: 38%;
  left: 41%;
}
.plan-map-button.plan13-button04 {
  top: 32%;
  left: 7%;
}
.plan-map-button.plan13-button05 {
  top: 62%;
  left: 7%;
}
.plan-map-button.plan14-button01 {
  top: 64%;
  left: 7.4%;
}
.plan-map-button.plan14-button02 {
  top: 61%;
  left: 41.4%;
}
.plan-map-button.plan14-button03 {
  top: 31%;
  left: 57.4%;
}
.plan-map-button.plan14-button04 {
  top: 61%;
  left: 61.4%;
}
.plan-map-button.plan14-button05 {
  top: 70%;
  left: 53.4%;
}
.plan-map-button.plan15-button01 {
  top: 48%;
  left: 45%;
}
.plan-map-button.plan15-button02 {
  top: 25%;
  left: 34.4%;
}
.plan-map-button.plan15-button03 {
  top: 71%;
  left: 51%;
}
.plan-map-button.plan15-button04 {
  top: 44.4%;
  left: 23.4%;
}
.plan-map-button.plan15-button05 {
  top: 13%;
  left: 15.4%;
}
.plan-map-button.plan15-button06 {
  top: 41%;
  left: 70.4%;
}
.plan-map-button.plan15-button07 {
  top: 68.6%;
  left: 17.6%;
}
.plan-map-button.plan16-button01 {
  top: 30%;
  left: 47%;
}
.plan-map-button.plan16-button02 {
  top: 44%;
  left: 24%;
}
.plan-map-button.plan16-button03 {
  top: 17%;
  left: 62%;
}
.plan-map-button.plan16-button04 {
  top: 4%;
  left: 36%;
}
.plan-map-button.plan16-button05 {
  top: 78%;
  left: 23%;
}/*# sourceMappingURL=plan.css.map */