/* ===== Modern Reset (destyleベース) ===== */

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

/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* Body */
body {
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  color: var(--color-text);
  font-family: var(--font-base);
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Media */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Button */
button {
  cursor: pointer;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 900;
  line-height: 1.6;
}

p {
  font-weight: 500;
}

.sp {
  display: none;
}

.br-sp {
  display: none;
}

/* ========================================
   Root Variables (px base)
   ======================================== */
:root {
  /* ---------- Color ---------- */
  --color-primary: #375946;
  --color-secondary: #E1EADE;
  --color-accent: #FAE823;

  --color-text: #222222;
  --color-text-light: #979797;
  --title-bg: #E1EADE;
  --title-bg-green: #335341;
  --title-bg-green-light: #e1ebdd;
  --title-bg-light: #f4f9f2;

  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-border: #cfcfcf;

  /* ---------- Font ---------- */
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", Arial, sans-serif;

  /* ---------- Font Size ---------- */
  --font-xs: 12px;
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 20px;
  --font-xl: 24px;
  --font-xxl: 32px;
  --font-xxxl: 40px;
  --section-title: 48px;
  --fv-title: 72px;
  --title-bg-size: 96px;

  /* ---------- Line Height ---------- */
  --lh-tight: 1.3;
  --lh-base: 1.6;
  --lh-loose: 1.8;

  /* ---------- Spacing ---------- */
  --space-xxs: 8px;
  --space-xs: 16px;
  --space-sm: 24px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 64px;
  --space-xxl: 80px;
  --space-xxxl: 96px;
  --space-xxxxl: 120px;
  --section-space: 240px;

  /* ---------- Layout ---------- */
  --container-sm: 768px;
  --container-md: 1024px;
  --container-lg: 1200px;
  --container-xl: 1440px;

  /* ---------- Radius ---------- */
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-round: 9999px;

  /* ---------- Shadow ---------- */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ========================================
   Header
   ======================================== */

header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: var(--space-xs) var(--space-sm);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;

  .logo {
    img {
      height: 40px;
    }

    a {
      transition: opacity 0.2s;

      &:hover {
        opacity: .7;
      }
    }
  }

  .menu {
    display: flex;

    ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-lg);
      font-size: var(--font-sm);
      font-weight: 600;

      a {
        position: relative;
        transition: color 0.3s var(--color-primary);

        &:hover {
          color: var(--color-primary);
        }

        &::after {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 0;
          height: 1px;
          background-color: #375946;
          transition: width 0.3s ease;
        }

        &:hover::after {
          width: 100%;
        }
      }
    }
  }

  .contact-btn {
    text-align: center;
    margin-left: var(--space-lg);

    a {
      display: inline-block;
      width: 150px;
      height: 40px;
      padding: var(--space-xxs) var(--space-xs);
      font-size: var(--font-sm);
      font-weight: 500;
      background-color: var(--color-primary);
      color: var(--color-bg);
      border-radius: var(--radius-round);
      transition: color 0.3s ease, background 0.3s ease;

      &:hover {
        background-color: var(--color-bg);
        color: var(--color-primary);
        border: 1px solid var(--color-primary);
      }
    }
  }

  .hamburger {
    display: none;
  }
}

/*初期表示用*/
header.is-top {
  transform: translateY(0);
}

/*スクロール時*/
header.is-scrolled {
  transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.is-open {
  background: #fff;
}

/* ========================================
   パンくずリスト
   ======================================== */

.breadcrumb-wrapper {
  padding: 16px 0;
}

.blog-breadcrumb {
  margin-top: 88px;
}

.single-breadcrumb {
  margin-top: 88px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item a {
  position: relative;
  color: #666;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s ease;

  &::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #375946;
    transition: width 0.3s ease;
  }

  &:hover::after {
    width: 100%;
  }
}

.breadcrumb-item a:hover {
  color: #375946;
}

.breadcrumb-current {
  color: var(--color-primary);
  font-weight: 600;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #999;
  font-size: 12px;
}

/* ========================================
   Hero
   ======================================== */
.l-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  background: url("../images/common/hero-img.jpg") center / cover no-repeat;
  color: #fff;
}

.l-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l-hero__title {
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.l-hero__subtitle {
  margin-top: 12px;
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .l-hero {
    padding: 48px 16px;
  }

  .l-hero__title {
    font-size: 24px;
  }
}

/* ========================================
   main
   ======================================== */

/*.l-main {
  max-width: var(--container-lg);
  width: 100%;
  margin: 80px auto;
}*/

.gradation-bg {
  padding-bottom: 120px;
  background-image: url(../images/common/main-bg-gradation.png);
  background-size: cover;
}

.color-gr {
  color: var(--color-primary);
}

.section-base {
  margin-top: var(--section-space);
}

.section-title {
  position: relative;
}

.section-title h2 {
  position: relative;
  text-align: center;
  font-size: var(--section-title);
  font-weight: 900;
  z-index: 10;
}

.section-title-bg {
  position: absolute;
  top: -86px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--title-bg-size);
  font-weight: 900;
  color: var(--title-bg-light);
}

.section-title-bg_green {
  position: absolute;
  top: -86px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--title-bg-size);
  font-weight: 900;
  color: var(--title-bg-green);
}

.section-title-bg__green-light {
  position: absolute;
  top: -86px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--title-bg-size);
  font-weight: 900;
  color: var(--title-bg-green-light);
}

.inner-base {
  max-width: var(--container-lg);
  width: 100%;
  margin: auto;
  padding-left: var(--space-xs);
  padding-right: var(--space-xs);
}

.arrow-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

/* ========================================
   ご相談はこちら
   ======================================== */
.contact-bg-img {
  position: absolute;
  top: -28px;
  right: 56px;
  width: 200px;
  z-index: 1;
}

.contact-box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -15%);
  max-width: var(--container-md);
  width: 100%;
  margin: 220px auto 0;
  padding: var(--space-xl);
  background-color: var(--color-primary);
  border-radius: var(--radius-xl);

  .contact-box-title {
    h3 {
      text-align: center;
      font-size: var(--section-title);
      font-weight: 900;
      color: var(--color-accent);
    }
  }

  .contact-box-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }

  .contact-box-item {
    position: relative;
    background-image: url(../images/common/contact-box.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 231px;
    z-index: 1;

    .contact-box-icon {
      img {
        position: absolute;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
      }
    }

    .contact-box-inner {
      text-align: center;
      position: absolute;
      top: 58%;
      left: 50%;
      width: 100%;
      transform: translate(-50%, -50%);

      h4 {
        margin-top: var(--space-xxs);
        font-size: 24px;
      }

      a {
        position: relative;
        display: inline-block;
        margin-top: var(--space-xxs);
        font-size: 42px;
        font-weight: 900;
        line-height: 1;
        color: #e5c101;
        transition: opacity 0.25s;

        .arrow-icon {
          width: 16px;
        }

        &:hover {
          opacity: .7;
        }
      }

      .tel-note {
        font-size: 14px;
        color: #666;
      }
    }
  }

  .box-item-mail {
    a {
      display: flex !important;
      justify-content: center;
      align-items: center;
      width: 300px;
      height: 56px;
      margin: var(--space-xs) auto 0 !important;
      padding: var(--space-xxs) var(--space-xs);
      font-size: var(--font-sm) !important;
      border-radius: var(--radius-round);
      color: var(--clor-text) !important;
      background-color: #e5c101;
    }
  }

  .contact-box-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    border-radius: var(--radius-xl);
    overflow: hidden;

    .bg-text-left {
      width: 64px;
    }

    .bg-text-right {
      width: 64px;
    }
  }
}

/* ========================================
   Footer
   ======================================== */
footer {
  margin-top: 160px;
  background-color: var(--color-primary);
  color: var(--color-bg);

  .footer-info {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xl) 0;

    .footer-inner-left {
      .company {
        h4 {
          font-size: var(--font-lg);
        }
      }

      .address {
        margin-top: var(--space-xs);

        p {
          font-size: var(--font-sm);
          font-weight: normal;
        }
      }

      .phone {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: var(--space-xs);

        a {
          font-size: var(--font-xl);
          font-weight: 900;
        }
      }

      .tel-note {
        font-size: 12px;
      }
    }

    .footer-inner-right {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 64px;

      .service-menu {
        ul {
          display: grid;
          grid-template-columns: repeat(1, 2fr);
          gap: 12px;
          margin-top: var(--space-xs);
          font-size: var(--font-sm);
        }
      }

      .information-menu {
        ul {
          display: grid;
          grid-template-columns: repeat(1, 2fr);
          gap: 10px;
          margin-top: var(--space-xs);
          font-size: var(--font-sm);
        }
      }
    }
  }

  .footer-inner-bottom {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: var(--font-xs);
    border-top: 1px solid #537662;
  }

  a {
    transition: color 0.25s;

    &:hover {
      color: #FAE823;
    }
  }
}


@media (max-width:1440px) {
  .gradation-bg {
    background-size: contain;
  }

  .section-title h2 {
    font-size: clamp(2.5rem, 1.269rem + 1.92vw, 3rem);
  }

  .section-title-bg {
    top: clamp(-3.625rem, -1.471rem + -3.37vw, -4.5rem);
    font-size: clamp(4.5rem, 0.808rem + 5.77vw, 6rem);
  }

  .section-title-bg-green {
    top: clamp(-3.625rem, -1.471rem + -3.37vw, -4.5rem);
    font-size: clamp(4.5rem, 0.808rem + 5.77vw, 6rem);
  }

  .section-base {
    margin-top: clamp(10rem, -2.308rem + 19.23vw, 15rem);
  }

  .contact-box {
    width: 95%;
    padding: clamp(3rem, 0.538rem + 3.85vw, 4rem);

    .contact-box-title {
      h3 {
        font-size: clamp(2.5rem, 1.269rem + 1.92vw, 3rem);
      }
    }

    .contact-box-wrap {
      margin-top: clamp(1.5rem, 0.269rem + 1.92vw, 2rem);
    }

    .contact-box-item {
      height: clamp(13.875rem, 12.49rem + 2.16vw, 14.438rem);

      .contact-box-icon {
        img {
          width: clamp(3rem, 1.769rem + 1.92vw, 3.5rem);
        }
      }

      .contact-box-inner {

        h4 {
          margin-top: 0;
          font-size: clamp(1.5rem, 0.885rem + 0.96vw, 1.75rem);
        }

        a {
          font-size: clamp(2.5rem, 1.269rem + 1.92vw, 3rem);
        }
      }
    }

    .box-item-mail {
      a {
        margin: clamp(0.75rem, 0.135rem + 0.96vw, 1rem) auto 0 !important;
      }
    }

    .contact-box-bg-text {
      .bg-text-left {
        width: 56px;
      }

      .bg-text-right {
        width: 56px;
      }
    }
  }

  footer {
    margin-top: clamp(10rem, -2.308rem + 19.23vw, 15rem);
  }
}

@media (max-width: 1024px) {

  header {
    .menu {
      display: block;
      position: absolute;
      top: calc(100% - 1px);
      left: 0;
      width: 100%;
      background: #fff;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
      z-index: 1000;
    }

    .hamburger {
      display: block;
      width: 32px;
      height: 24px;
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #000;
      transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
      top: 0;
    }

    .hamburger span:nth-child(2) {
      top: 11px;
    }

    .hamburger span:nth-child(3) {
      bottom: 0;
    }

    /* メニュー開いた時 */
    .menu.is-open {
      max-height: 500px;
      opacity: 1;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu ul {
      display: block;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu ul li {
      border-bottom: 1px solid #eee;
      opacity: 0;
    }

    .menu.is-open ul li {
      animation: slideIn 0.3s ease forwards;
      opacity: 1;
    }

    .menu.is-open ul li:nth-child(1) {
      animation-delay: 0.1s;
    }

    .menu.is-open ul li:nth-child(2) {
      animation-delay: 0.15s;
    }

    .menu.is-open ul li:nth-child(3) {
      animation-delay: 0.2s;
    }

    .menu.is-open ul li:nth-child(4) {
      animation-delay: 0.25s;
    }

    .menu.is-open ul li:nth-child(5) {
      animation-delay: 0.3s;
    }

    .menu ul li:last-child {
      border-bottom: none;
    }

    .menu ul li a {
      display: block;
      padding: 16px 20px;
      color: #333;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .menu ul li a:hover {
      background-color: #f5f5f5;
    }

    .menu .contact-btn {
      max-width: 280px;
      min-width: 200px;
      width: 100%;
      padding: 16px 20px;
      margin-left: 0;
      opacity: 0;
    }

    .menu.is-open .contact-btn {
      animation: slideIn 0.3s ease forwards;
      animation-delay: 0.35s;
      opacity: 1;
    }

    .menu .contact-btn a {
      display: block;
      text-align: center;
      width: auto;
      height: auto;
      color: #fff;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .menu .contact-btn a:hover {
      background-color: #0056b3;
    }

    /* メニュー項目のスライドインアニメーション */
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ハンバーガーアイコンが×になるアニメーション */
    .hamburger.is-active span:nth-child(1) {
      top: 11px;
      transform: rotate(45deg);
    }

    .hamburger.is-active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.is-active span:nth-child(3) {
      bottom: 11px;
      transform: rotate(-45deg);
    }
  }

  .section-base {
    margin-top: clamp(6.25rem, 4.29rem + 6.97vw, 8.75rem);
  }

  .inner-base {
    max-width: var(--container-sm);
  }

  .section-title h2 {
    font-size: 40px;
  }

  .section-title-bg__green-light {
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 900;
    color: var(--title-bg-green-light);
  }

  .gradation-bg {
    padding-bottom: 340px;
  }

  .contact-box {
    width: 100%;
    margin: 200px auto 0;
    border-radius: 0;
    transform: translate(-50%, -15%);

    /*.contact-bg-img {
      top: -19px;
      right: 40px;
      width: 130px;
    }
*/
    .contact-box-bg-text {
      .bg-text-left {
        width: clamp(4.5rem, 3.324rem + 4.18vw, 6rem);
      }

      .bg-text-right {
        width: clamp(4.5rem, 3.324rem + 4.18vw, 6rem);
      }
    }

    .contact-box-title {
      h3 {
        font-size: clamp(1.75rem, 0.689rem + 3.77vw, 2.5rem);
      }
    }

    .contact-box-wrap {
      grid-template-columns: repeat(1, 1fr);

      .contact-box-item {
        height: clamp(11.563rem, 3.691rem + 27.99vw, 17.125rem);

        .contact-box-icon {
          img {
            top: 24px;
            width: clamp(2.5rem, 1.716rem + 2.79vw, 3.5rem);
          }
        }

        .contact-box-inner {
          top: 58%;

          h4 {
            font-size: 28px;
          }

          a {
            max-width: 380px;
            font-size: clamp(2.25rem, 1.189rem + 3.77vw, 3rem);
          }
        }
      }
    }

    .box-item-mail {
      a {
        width: 62%;
        height: clamp(3rem, 1.585rem + 5.03vw, 4rem);
        font-size: clamp(0.875rem, 0.698rem + 0.63vw, 1rem) !important;

        .arrow-icon {
          width: clamp(1rem, 0.646rem + 1.26vw, 1.25rem);
        }
      }
    }
  }

  footer {
    margin-top: clamp(7.5rem, 15.63vw, 10rem);
  }

}


@media (max-width:768px) {

  .breadcrumb-container {
    padding: 0 16px;
  }

  .breadcrumb-list {
    font-size: 13px;
  }

  .section-title h2 {
    font-size: clamp(2rem, 1.292rem + 2.52vw, 2.5rem);
  }

  .section-title-bg__green-light {
    top: 10.4166vw;
    font-size: clamp(3.5rem, 1.377rem + 7.55vw, 5rem);
  }

  .contact-box {
    .contact-bg-img {
      width: clamp(6.875rem, 3.779rem + 11.01vw, 9.063rem);
    }
  }
}

@media (max-width: 600px) {

  .contact-box {
    width: 100%;
    border-radius: 0;

    .contact-box-wrap {
      .contact-box-item {
        .contact-box-inner {
          top: 60%;
        }

        .contact-box-icon {
          img {
            top: 20px;
            width: clamp(2.5rem, 1.716rem + 2.79vw, 3.5rem);
          }
        }
      }
    }

    .box-item-mail {
      a {
        width: 80%;
      }
    }
  }
}

@media (max-width:450px) {
  .sp {
    display: block;
  }

  .br-sp {
    display: block;
  }

  header {
    height: 64px;
    padding: 16px;

    .logo {
      img {
        height: 32px;
      }
    }

    .menu .contact-btn {
      max-width: inherit;
      width: 100%;
    }

    .menu .contact-btn a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 56px;
    }
  }

  .gradation-bg {
    padding-bottom: 290px;
  }

  .l-hero {
    height: 160px;
  }

  .l-hero__title {
    font-size: clamp(1.25rem, 0.375rem + 4vw, 1.5rem);
  }

  .section-base {
    margin-top: 100px;
  }

  .section-title h2 {
    font-size: clamp(1.75rem, 0.875rem + 4vw, 2rem);
    word-break: keep-all;
    line-height: 1.6;
  }

  .section-title-bg {
    top: -12.777vw;
    font-size: clamp(3rem, 1.25rem + 8vw, 3.5rem);
  }

  .section-title-bg_green {
    top: -12.777vw;
    font-size: clamp(3rem, 1.25rem + 8vw, 3.5rem);
  }

  .section-title-bg__green-light {
    top: -12.777vw;
    font-size: clamp(3rem, 1.25rem + 8vw, 3.5rem);
  }

  .contact-box {
    width: 100%;
    margin: 160px auto 0;
    padding: clamp(2rem, 0.25rem + 8vw, 2.5rem);
    border-radius: 0;

    .contact-bg-img {
      width: clamp(5rem, -1.563rem + 30vw, 6.875rem);
      top: -16px;
      right: 4px;
    }

    .contact-box-title {
      h3 {
        font-size: clamp(1.5rem, 0.625rem + 4vw, 1.75rem);
      }
    }

    .contact-box-wrap {
      gap: clamp(1rem, -0.75rem + 8vw, 1.5rem);
      margin-top: clamp(1rem, -0.75rem + 8vw, 1.5rem);

      .contact-box-item {
        background-size: contain;
        background-repeat: no-repeat;
        height: clamp(9.375rem, -1.563rem + 50vw, 12.5rem);

        .contact-box-icon {
          img {
            top: clamp(0.75rem, -0.125rem + 4vw, 1rem);
            width: clamp(2rem, 0.25rem + 8vw, 2.5rem);
          }
        }

        .contact-box-inner {
          top: 59%;

          h4 {
            font-size: clamp(1.125rem, 0.25rem + 4vw, 1.375rem);
          }

          a {
            font-size: clamp(1.625rem, -0.563rem + 10vw, 2.25rem);
          }

          .tel-note {
            font-size: 12px;
          }
        }
      }

      .box-item-mail {
        .contact-box-inner {

          a {
            margin: clamp(0.5rem, -0.375rem + 4vw, 0.75rem) auto 0 !important;

            .arrow-icon {
              right: 16px;
              width: 12px;
            }
          }
        }
      }

    }

    .box-item-mail {
      a {
        height: clamp(2.5rem, 0.75rem + 8vw, 3rem);
        font-size: clamp(0.75rem, 0.313rem + 2vw, 0.875rem) !important;
      }
    }

    .contact-box-bg-text {
      .bg-text-left {
        width: clamp(3.5rem, 1.75rem + 8vw, 4rem);
      }

      .bg-text-right {
        width: clamp(3.5rem, 1.75rem + 8vw, 4rem);
      }
    }
  }

  footer {
    .footer-info {
      flex-direction: column;
      padding: 48px 0;

      .footer-inner-left {
        .company {
          h4 {
            font-size: 18px;
          }
        }

        .address {
          margin-top: 12px;
        }

        .phone {
          margin-top: 12px;

          img {
            width: 22px;
          }

          a {
            font-size: 20px;
          }
        }
      }

      .footer-inner-right {
        grid-template-columns: repeat(1, 2fr);
        gap: 32px;
        margin-top: 32px;

        .service-menu {
          ul {
            gap: clamp(0.5rem, -0.375rem + 4vw, 0.75rem);
            margin-top: clamp(0.75rem, -0.125rem + 4vw, 1rem);
          }
        }
      }
    }

    .footer-inner-bottom {
      .copyright {
        p {
          font-size: 10px;
        }
      }

      .privacy-policy {
        p {
          font-size: 10px;
        }
      }
    }
  }

}