* {
  box-sizing: border-box;
}
@media (max-width: 390px) {
  * li,
  * p {
    font-size: 3.5vw;
  }
  * h2 {
    font-size: 5vw;
  }
}
* ul {
  margin-left: 0em;
}
* ul li {
  margin-left: 0em;
}

/* wrapper */
.wrapper {
  border: 1px solid #b2c9b0;
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* header (title / tel / address) */
.header {
  height: 100px;
  position: relative;
}
.header h1 {
  position: absolute;
  top: 15px;
  color: #1a5d3a;
}
.header .telbox {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
}
.header .telbox .tel-text {
  display: inline;
}
.header .telbox .tel-link {
  display: none;
}
.header .telbox .tel-link img {
  width: 40px;
  height: 40px;
}
@media (max-width: 500px) {
  .header .telbox .tel-text {
    display: none;
  }
  .header .telbox .tel-link {
    display: inline;
    color: inherit;
    text-decoration: none;
  }
  .header .telbox .tel-link img {
    width: 50px;
    height: 50px;
  }
}
.header .addressbox {
  position: absolute;
  right: 10px;
  bottom: 20px;
  color: #2c2c2c;
}
@media (max-width: 501px) {
  .header .addressbox {
    font-size: 3.2vw;
    bottom: 10px;
  }
}

/* main visual */
.mainvimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* infobox */
.infobox {
  margin-top: 1rem;
  text-align: center;
}
.infobox p {
  font-size: 20px;
}
@media (max-width: 500px) {
  .infobox {
    text-align: left;
  }
  .infobox p {
    font-size: 3.8vw;
  }
}

/* business hours */
.businesshours {
  text-align: center;
  margin: 2rem 0;
}
.businesshours h2 {
  color: #1a5d3a;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.businesshours p {
  margin: 0;
  font-size: 18px;
}

/* service box */
.servicebox {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.servicebox h2 {
  color: #1a5d3a;
  margin-top: 2em;
  margin-bottom: 1rem;
  border-bottom: 1px solid #000000;
}
.servicebox .box {
  border-left: 6px solid #1a5d3a;
  padding-left: 1rem;
  padding-bottom: 0.5em;
}
.servicebox .box li {
  margin-bottom: 0.7em;
}
.servicebox p.memo {
  font-size: 14px;
  color: #2c2c2c;
  margin-top: 1rem;
}

/* map / access */
.mapbox {
  margin-top: 8rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.mapbox .maptext {
  color: #1d6fe0;
}
.mapbox .flex2 {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .mapbox .flex2 {
    flex-direction: column;
    align-items: center;
  }
}
.mapbox .textbox {
  flex: 1;
}
.mapbox .mapimg {
  max-width: 500px;
  margin: 0 auto;
}
.mapbox .mapimg img {
  width: 100%;
  height: auto;
  display: block;
}
.mapbox p.parktext {
  font-size: 14px;
  color: #2c2c2c;
  margin-top: 0.5em;
}
.mapbox .map-address {
  margin-top: 1em;
  margin-bottom: 1em;
}
.mapbox .map-phone {
  margin-top: 0.5em;
}
.mapbox .map-button {
  margin-top: 1.5rem;
}
.mapbox .map-button a {
  display: inline-block;
  background-color: #1a5d3a;
  color: #ffffff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}
.mapbox .map-button a:hover {
  opacity: 0.8;
}

/* footer */
.footer {
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #cccccc;
  font-size: 14px;
  color: #2c2c2c;
}
.footer p {
  margin: 0;
}

/* Utilities */
.spOnly {
  display: none;
}
@media (max-width: 500px) {
  .spOnly {
    display: inline;
  }
}

.pcOnly {
  display: inline;
}
@media (max-width: 500px) {
  .pcOnly {
    display: none;
  }
}/*# sourceMappingURL=layout.css.map */