*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: #fff;
  color: #111;
  font-size: 16px;
  line-height: 1.7;
  padding-top: clamp(80px, 6vw, 135px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.l-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}

.turnstile-center {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 65px;
  margin: 24px auto 0;
}

.turnstile-center .wpcf7-turnstile,
.turnstile-center .cf-turnstile {
  margin: 0 auto;
}

#turnstile_validate_msg {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  body {
    padding-top: 88px;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 72px;
  }
  .l-container {
    padding-inline: 20px;
  }
  .home body,
  body.home {
    padding-top: 72px;
  }
}
/* ========================================
   Breadcrumb
======================================== */
.breadcrumb-wrap {
  background: #f7f3ed;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  padding: 18px 0;
  list-style: none;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #111;
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 12px;
  color: #ff771d;
  font-size: 14px;
}

.breadcrumb__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb__item a:hover {
  color: #ff771d;
}

.breadcrumb__item--current {
  color: #333;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    width: calc(100% - 32px);
    padding: 14px 0;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .breadcrumb__item {
    font-size: 12px;
  }
  .breadcrumb__item:not(:last-child)::after {
    margin-left: 8px;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */