* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-family: "IBM Plex Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

header {
  position: relative;
  overflow: hidden;
  text-align: center;
}
header h1 {
  background-color: rgba(0, 24, 3, 0.679);
  color: white;
  padding: 1rem 0;
  text-align: center;
  font-family: serif;
}
@media (width < 500px) {
  header h1 {
    font-size: 6vw;
  }
}
header h1 .flex {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (width < 900px) {
  header h1 .flex {
    flex-direction: column;
  }
}
header h1 .line {
  margin: 0 0 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 900px) {
  header h1 .line {
    margin: 0.5rem 0 0 0;
  }
}
header h1 .nowrap {
  word-break: keep-all;
}
header h2 {
  background: unset;
  border: none;
  font-size: 3rem;
  color: white;
  text-shadow: unset;
  font-family: serif;
  padding: 0;
}
@media (width < 600px) {
  header h2 {
    font-size: 6vw;
  }
}
header #photo {
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: url("back.webp");
  background-position: bottom;
  width: 100%;
  background-size: cover;
  z-index: -3;
  /*filter: opacity(50%) brightness(110%);*/
  filter: brightness(68%);
}

.message {
  width: min(100%, 1200px);
  font-size: 1.5rem;
  margin: 1rem auto;
  padding: 4rem 4rem 3rem;
  border: 3px solid #58a159;
  border-radius: 7px;
}
@media (width < 600px) {
  .message {
    padding: 3rem 1rem 2rem;
    font-size: 5vw;
    border-radius: 5px;
  }
}

.slogan {
  width: min(100%, 1200px);
  margin: 1rem auto;
  padding: 4rem 4rem 3rem;
}
@media (width < 600px) {
  .slogan {
    padding: 3rem 1rem 2rem;
  }
}

@media (width < 1000px) {
  .inquiry.mobile {
    width: min(100%, 1200px);
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 120%;
  }
  .inquiry.mobile .right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .inquiry.mobile #qrcode {
    width: 10rem;
    height: 10rem;
    margin-right: 2rem;
  }
  .inquiry.tablet {
    display: none;
  }
}
@media (width >= 1000px) {
  .inquiry.tablet {
    position: absolute;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20rem;
    top: 7rem;
    color: rgb(0, 94, 2);
    font-size: 120%;
  }
  .inquiry.tablet .line {
    margin: 1rem;
  }
  .inquiry.tablet #qrcode {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1rem;
  }
  .inquiry.mobile {
    display: none;
  }
}
.image {
  background: linear-gradient(to bottom, #e6f8ff, #b9f8ff 20%, #8cd88c 20%, #92ed8f 80%, rgb(170, 185, 96) 100%);
  display: flex;
  position: relative;
  justify-content: center;
}
.image #kari {
  width: 100%;
  height: 30rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 1rem 0;
}
@media (width < 700px) {
  .image #kari {
    height: 20rem;
  }
}
@media (width < 500px) {
  .image #kari {
    height: 14rem;
  }
}
@media (width < 1000px) {
  .image picture {
    width: 94%;
  }
}

@media (width < 600px) {
  .tablet {
    display: none;
  }
}
@media (width >= 600px) {
  .mobile {
    display: none;
  }
}
#services {
  overflow: hidden;
  width: min(100%, 1200px);
  margin: 1rem auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#services h3 {
  margin-top: 0;
  background-color: rgba(0, 50, 7, 0.6);
  border-radius: 8px 8px 0 0;
  padding: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
}
@media (width < 600px) {
  #services h3 {
    font-size: 1rem;
    padding: 2vw;
  }
}
#services .category {
  width: 32%;
  height: 300px;
  background-color: rgba(0, 50, 7, 0.6);
  color: rgb(237, 237, 237);
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media (width < 600px) {
  #services .category {
    width: 80%;
    height: unset;
  }
}
#services .category .description {
  padding: 1rem;
  text-align: left;
  list-style: none;
}
#services .category .description li {
  font-size: 1.2rem;
  margin: 0.8rem;
}
@media (width < 600px) {
  #services .category .description li {
    font-size: 4vw;
    margin: 0.1rem;
  }
}

main {
  width: min(100%, 1200px);
  margin: 0 auto 5rem auto;
}
main h2 {
  margin: 2rem 0 0 0;
  border-top: 2px solid rgb(16, 82, 16);
  background: #58a159;
  padding: 1rem;
  width: 100vw;
  margin-left: calc(600px - 50vw);
  padding-left: calc(50vw - 600px);
  text-shadow: 1px 1px 1px #397239;
  color: white;
}
@media (width < 1200px) {
  main h2 {
    margin-left: unset;
    padding-left: 2rem;
  }
}
@media (width < 600px) {
  main h2 {
    font-size: 4vw;
    padding: 0.5rem;
  }
}
main h3 {
  margin: 2rem 0 0 0;
  font-size: 1.3rem;
  padding: 0.8rem 1rem 0.5rem 1rem;
  background: white;
  border-bottom: 1px solid #b0d8b3;
  color: #174017;
}
@media (width < 600px) {
  main h3 {
    font-size: 4vw;
    border-top: 2px solid #b0d8b3;
    border-bottom: none;
  }
}
main section {
  margin-bottom: 2rem;
}
main #pricing .work {
  font-size: 120%;
  margin: 2rem 0 0 0;
  padding-left: 1rem;
}
@media (width < 600px) {
  main #pricing .work {
    font-size: 4vw;
  }
}
main table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem auto;
}
@media (width < 1200px) {
  main table {
    width: 98%;
  }
}
@media (width < 600px) {
  main table {
    margin-top: 0;
    overflow-x: scroll;
  }
}
main th, main td {
  padding: 0.9rem 0.7rem;
  text-align: left;
  border: 1px solid #87a789;
  white-space: nowrap;
}
@media (width < 600px) {
  main th, main td {
    padding: 0.3rem 0.2rem;
    font-size: 3vw;
  }
}
@media (width < 1200px) {
  main th, main td {
    white-space: unset;
  }
}
main th {
  background-color: #ceedd0;
  color: #1d4c22;
  text-align: center;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background: rgb(111, 88, 40);
  color: white;
  position: fixed;
  width: 100%;
  bottom: 0;
}/*# sourceMappingURL=kusa.css.map */