body {
  color: #1d1c1c;
  font-family: serif;
  position: relative;
}

header {
  font-family: serif;
}

li {
  list-style: none;
}

a {
  color: #1d1c1c;
  text-decoration: none;
}

h2 {
  font-weight: bold;
  padding-bottom: 0.5em;
  position: relative;
  text-align: center;
}
h2::after {
  background-color: #3bd557;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2em;
}

@media (min-width: 769px) {
  html {
    scroll-padding-top: 100px;
  }
  [id] {
    scroll-margin-top: 20px;
  }
  body {
    max-height: 100svh;
    max-width: 100svw;
  }
  section {
    margin-top: 100px;
  }
  h2 {
    letter-spacing: 0.25em;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 50px;
  }
  body {
    margin: 0;
    min-width: 320px;
  }
  html, body {
    height: 100%;
    min-height: 100%;
  }
  section {
    margin-top: 40px;
    padding: 0 20px;
  }
  h1, h2, h3 {
    letter-spacing: 0.2em;
  }
}
@media (min-width: 769px) {
  .header__inner {
    background: #ffffff;
    height: 50px;
    position: fixed;
    top: 0;
    width: 100svw;
    z-index: 50;
  }
  .header__inner .header__logo {
    padding-right: 30px;
    text-align: center;
  }
  .header__inner .header__logo a {
    font-size: 2rem;
    width: 100%;
  }
  .header__inner .nav {
    background: #e7ffe4;
    height: 50px;
    position: fixed;
    top: 50px;
    width: 100svw;
  }
  .header__inner .nav .nav__menu {
    align-items: center;
    display: flex;
    height: auto;
    justify-content: center;
    width: 100dvw;
  }
  .header__inner .nav .nav__menu .nav__item {
    border-left: solid 1px #333;
    position: relative;
    text-align: center;
    width: 200px;
  }
  .header__inner .nav .nav__menu .nav__item:nth-child(4) {
    border-right: solid 1px #333;
  }
  .header__inner .nav .nav__menu .nav__item .nav__link {
    display: block;
    padding: 0 2px;
  }
  .header__inner .nav .nav__menu .nav__item .dropdown__menu {
    background: #cddfca;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    position: absolute;
    transition: 0.5s;
    width: 200px;
  }
  .header__inner .nav .nav__menu .nav__item .dropdown__menu .dropdown__item {
    display: block;
    letter-spacing: 5px;
  }
  .header__inner .nav .nav__menu .nav__item .dropdown__menu .dropdown__item:hover {
    background: #bdeab5;
    opacity: 0.7;
  }
  .header__inner .nav .nav__menu .nav__item .dropdown__menu .dropdown__item a {
    display: block;
    padding: 10px 15px;
  }
  .header__inner .nav .nav__menu .nav__item:hover .dropdown__menu {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 30;
  }
  .header__inner {
    background: #e7ffe4;
    height: 50px;
    width: 100%;
  }
  .header__inner .header__logo {
    text-align: left;
  }
  .header__inner .header__logo a {
    font-size: 2rem;
    width: 100%;
  }
  .nav {
    background: #e7ffe4;
    height: 100vh;
    opacity: 0;
    padding-top: 100px;
    position: fixed;
    right: -80%;
    text-align: center;
    top: 0;
    transition: 0.5s;
    width: 80%;
    z-index: 20;
  }
  .nav .nav__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  .nav .nav__menu .nav__item {
    margin-bottom: 30px;
  }
  .nav .nav__menu .nav__item .nav__link {
    border-bottom: dotted 1px #333;
    color: #333;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin: 10px;
    text-transform: uppercase;
  }
  .nav .nav__menu .nav__item .dropdown__menu {
    margin-top: 5px;
  }
  .nav .nav__menu .nav__item .dropdown__menu .dropdown__item {
    margin-bottom: 5px;
  }
  .openbtn {
    cursor: pointer;
    height: 30px;
    position: fixed;
    right: 15px;
    top: 15px;
    transition: 0.5s;
    width: 30px;
    z-index: 20;
  }
  .openbtn span {
    background: #121212;
    border-radius: 4px;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: 0.5s;
    width: 30px;
  }
  .openbtn span:nth-child(1) {
    top: 4px;
  }
  .openbtn span:nth-child(2) {
    top: 14px;
  }
  .openbtn span:nth-child(3) {
    bottom: 4px;
  }
  .mask {
    display: none;
    transition: 0.5s;
  }
  .active .nav {
    right: 0;
    opacity: 1;
  }
  .active .openbtn span {
    background: #333333;
  }
  .active .openbtn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .active .openbtn span:nth-child(2) {
    opacity: 0;
  }
  .active .openbtn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  .active .mask {
    background: #000000;
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }
}
@keyframes fadeTrigger {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main h2 span {
  font-size: 1rem;
  font-weight: normal;
}

.main__inner {
  animation: fadeTrigger 3s;
  height: calc(100dvh - 120px);
  max-height: 100dvh;
  max-width: 100dvw;
  width: 100%;
}
@media (max-width: 768px) {
  .main__inner {
    height: 100%;
  }
}
.main__inner picture .home_img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .main__inner picture .home_img {
    height: calc(100dvh - 50px);
  }
}
@media (min-width: 768px) {
  .main__inner picture .home_img {
    height: calc(100dvh - 120px);
    padding-top: 60px;
  }
}

@media screen and (min-width: 769px) {
  .footer__inner {
    background: #e7ffe4;
    bottom: 0;
    height: 25px;
    padding: 5px;
    position: fixed;
    width: 100%;
  }
  .footer__inner .copyright {
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    background: #e7ffe4;
    bottom: 0;
    height: 20px;
    padding: 5px;
    position: fixed;
    width: 100%;
  }
  .footer__inner .copyright {
    font-size: 0.625rem;
    margin: 0;
    text-align: center;
  }
}
.about {
  margin-top: 100px;
}
.about > h2 {
  text-align: center;
}
.about .about__inner {
  padding: 30px 50px;
}
.about .about__inner .about__greeting {
  background-color: #e6e2e2;
  margin-bottom: 80px;
  padding: 30px;
  padding-bottom: 60px;
}
.about .about__inner .about__greeting .about__greeting--flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about .about__inner .about__greeting .about__greeting--flex .greeting__img {
  border-radius: 20px;
  overflow: hidden;
  margin-right: 80px;
}
.about .about__inner .about__greeting .about__greeting--flex .greeting__text {
  letter-spacing: 0.12em;
  width: 70%;
}
.about .about__inner .about__flow {
  background-color: #e6e2e2;
  margin-bottom: 80px;
  padding: 30px;
  padding-bottom: 60px;
}
.about .about__inner .about__flow h3 {
  text-align: center;
}
.about .about__inner .about__flow .flow__container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.about .about__inner .about__flow .flow__container .flow__list {
  padding-left: 0;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item {
  padding-left: 50px;
  position: relative;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item:not(:last-child) {
  padding-bottom: 10px;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item:not(:last-child)::before {
  background: #c3c3c3;
  content: "";
  height: 100%;
  left: 19px;
  position: absolute;
  top: calc(50% + 30px);
  transform: translateY(-50%);
  width: 4px;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item dl {
  padding-bottom: 30px;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item dl dt {
  color: #30a954;
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item dl dt .item__icon {
  background: #4dc170;
  border-radius: 100vh;
  color: #fff;
  display: inline-block;
  height: 2em;
  left: 0;
  line-height: 2em;
  position: absolute;
  text-align: center;
  width: 2em;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item dl dd {
  letter-spacing: 0.12em;
  margin-left: 0;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item dl dd span {
  background-color: rgba(249, 156, 132, 0.6901960784);
  border-bottom: solid 1px #000;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item dl dd span:hover {
  opacity: 0.5;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item--border {
  background-color: #cdf5d9;
  border: 2px solid #4dc170;
  border-radius: 20px;
  margin-top: 50px;
  padding: 20px;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item--border dl {
  letter-spacing: 0.12em;
}
.about .about__inner .about__flow .flow__container .flow__list > .list__item--border dl > dt {
  font-weight: bold;
}

@media (max-width: 768px) {
  .about {
    margin-top: 50px;
  }
  .about .about__inner {
    padding: 5px;
  }
  .about .about__inner .about__greeting {
    margin-bottom: 30px;
    padding: 8px;
    padding-bottom: 10px;
  }
  .about .about__inner .about__greeting .about__greeting--flex {
    flex-direction: column;
  }
  .about .about__inner .about__greeting .about__greeting--flex .greeting__img {
    margin-right: 0;
  }
  .about .about__inner .about__greeting .about__greeting--flex .greeting__text {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    padding: 8px;
    width: auto;
  }
  .about .about__inner .about__flow {
    margin-bottom: 50px;
    padding: 10px;
  }
  .about .about__inner .about__flow .flow__container .flow__list > .list__item dl {
    padding-bottom: 10px;
  }
  .about .about__inner .about__flow .flow__container .flow__list > .list__item dl dd {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    margin-left: 0;
  }
}
.service {
  padding-bottom: 80px;
}
.service h2 {
  text-align: center;
}
.service .service__inner .service__termites, .service .service__inner .service__pest {
  margin: 20px auto;
  max-width: 60dvw;
  padding-bottom: 20px;
}
.service .service__inner .service__termites .termites__title, .service .service__inner .service__termites .pest__title, .service .service__inner .service__pest .termites__title, .service .service__inner .service__pest .pest__title {
  background-color: #60b432;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  padding: 0.5em 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.service .service__inner .service__termites .termites__text, .service .service__inner .service__termites .termites__price, .service .service__inner .service__termites .pest__text, .service .service__inner .service__termites .hornet__price, .service .service__inner .service__pest .termites__text, .service .service__inner .service__pest .termites__price, .service .service__inner .service__pest .pest__text, .service .service__inner .service__pest .hornet__price {
  border: solid 2px #60b432;
  margin: 0;
  padding: 10px 20px;
}
.service .separatorLine {
  margin: 50px 0;
}
.service .service__container h3 {
  letter-spacing: 0.2em;
  padding-left: 80px;
}
.service .service__container .work__example {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.service .service__container .work__example img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .service {
    padding-bottom: 50px;
  }
  .service .service__inner .service__termites, .service .service__inner .service__pest {
    max-width: 100dvw;
  }
  .service .service__container h3 {
    padding-left: 8px;
  }
  .service .service__container .work__example {
    grid-template-columns: 1fr;
  }
}
.contact {
  padding-bottom: 80px;
}

.contact__inner {
  margin-bottom: 50px;
}
.contact__inner h2 {
  text-align: center;
}
.contact__inner h3 {
  letter-spacing: 0.2em;
  padding-left: 80px;
}
.contact__inner .contact__info {
  padding-bottom: 50px;
}
.contact__inner .contact__info .info__container {
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 80%;
  width: 100%;
}
.contact__inner .contact__info .info__container th, .contact__inner .contact__info .info__container td {
  background-color: #e6f1f6;
  border: 2px solid #fff;
  padding: 1em;
}
.contact__inner .contact__info .info__container th {
  background-color: #4d9bc1;
  color: #fff;
  font-weight: bold;
  min-width: 4em;
  text-align: center;
  width: 20%;
}
.contact__inner .contact__access {
  background-color: #f3f0f0;
  padding: 10px;
  padding-bottom: 80px;
}
.contact__inner .contact__access .access__map {
  margin: 0 auto;
  max-height: -moz-fit-content;
  max-height: fit-content;
  max-width: 80dvw;
  width: 100%;
}
.contact__inner .contact__access .access__map iframe {
  height: 80dvh;
  width: 100%;
}

@media (max-width: 768px) {
  .contact {
    padding-bottom: 30px;
  }
  .contact__inner h3 {
    padding-left: 10px;
  }
  .contact__inner .contact__info {
    padding-bottom: 40px;
  }
  .contact__inner .contact__info .info__container {
    max-width: 100%;
    width: 100%;
  }
  .contact__inner .contact__info .info__container th, .contact__inner .contact__info .info__container td {
    font-size: 0.875rem;
  }
  .contact__inner .contact__info .info__container th {
    min-width: 4em;
    width: 28%;
  }
  .contact__inner .contact__access {
    padding: 8px;
    padding-bottom: 30px;
  }
  .contact__inner .contact__access .access__map {
    margin: 0 auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
    max-width: 100dvw;
    width: 100%;
  }
  .contact__inner .contact__access .access__map iframe {
    height: 80dvh;
    width: 100%;
  }
}
.privacy h2 {
  text-align: center;
}
.privacy .privacy__inner {
  margin: 50px auto;
  max-width: 80dvw;
  padding-bottom: 80px;
}
.privacy .privacy__inner > p {
  padding-bottom: 30px;
}
.privacy .privacy__inner .privacy__list {
  padding-bottom: 10px;
}
.privacy .privacy__inner .privacy__list h3 {
  background-image: linear-gradient(#84ef98 50%, #3a9d56 50%);
  background-size: 8px 100%;
  background-repeat: no-repeat;
  padding-left: 18px;
}
.privacy .privacy__inner .privacy__list li {
  list-style: circle;
}

@media (max-width: 768px) {
  .privacy .privacy__inner {
    max-width: 100dvw;
  }
  .privacy .privacy__inner > p {
    padding-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */