@charset "UTF-8";

:root {
  --primary-color: #529abc;
  --second-color: beige;
  --orange-color: #c75d00;
  --black-bg-color: #363636;
}

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

body {
  /*font-family: "Open Sans", "Noto Sans", "Inter", sans-serif;*/
  font-family:"Noto Sans", "Inter", sans-serif;
  color: #444;
  overflow-x: hidden;
}

@font-face {
  font-family: "Neonderthaw";
  src: url("../fonts/Neonderthaw-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.logo_sublime-group{
	max-width: 170px;
}
img {
  vertical-align: bottom;
}

.pc-only {
  display: inline-block !important;
}

.sp-only {
  display: none !important;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 50px 0 20px;

  &.full_width {
    max-width: 100%;
    width: 100%;
  }

  &.container-800 {
    width: 800px;
  }

  &.container-900 {
    width: 900px;
  }

  &.container-1000 {
    width: 1000px;
  }

  &.container-1100 {
    width: 1100px;
  }

  &.container-1400 {
    width: 1400px;
  }
}


h1{
    position: absolute;
    top: 5.5em;
    right: 1em;
    font-size: clamp(10px, 2.5vw, 12px);
    font-weight: normal;
    color: #dfdfdf;
    z-index: 3;
}

a {
  color: #111;
  text-decoration: none;
}

.color-orange {
  color: var(--orange-color) !important;
}

.color-white {
  color: #fff !important;
}

/* header */
.site_header {
  position: relative;
  height: 65px;

  &.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .site_header_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
    background-color: #fff;
    z-index: 12;
  }

  .site_title {
    img {
	max-width: 315px;
	width: 100%;
	height: auto;
	display: block;
    }
  }

  nav.site_nav {
    line-height: 65px;

    ul.nav_list {
      display: flex;
      align-items: center;
      gap: 0.5em;
      list-style: none;
      padding: 0;
      margin: 0;

      li.nav_item {
        position: relative;
        color: #111;
        font-weight: normal;

        .nav_item_ttl {
          font-size: 14px;
          padding: 0 10px;
          border-radius: 3px;
          display: inline-flex;
          align-items: center;
          gap: 6px;
          white-space: nowrap;

          &.no_link {
            cursor: pointer;
            pointer-events: none;
            text-decoration: none;
            color: #111;
          }

          .plus_icon {
            font-size: 10px;
            font-weight: bold;
            line-height: 1;
            color: #444;
          }
        }

        .contact_btn {
          display: block;
          width: 120px;
          height: 30px;
          line-height: 30px;
          padding: 0;
          text-align: center;
          color: #fff;
          background-color: #111;
          border: 1px solid #111;
          border-radius: 20px;
          transition: all 0.2s ease;

          &:hover {
            background-color: #fff;
            color: #111;
          }
        }
      }
    }
  }

  .has_submenu {
    position: relative;

    &:hover .sub_menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .sub_menu {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 999;
      min-width: 180px;
      list-style: none;
      line-height: 40px;

      li {
        white-space: nowrap;

        a {
          display: block;
          width: 100%;
          padding: 10px 20px;
          font-size: 13px;
          color: #444;
          text-decoration: none;
          transition: all 0.2s ease;

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

/* navigation */
.hamburger {
	position: fixed;
	top: 21px;
	right: 21px;
	display: flex;
	flex-flow: column;
	gap: 4.9px;
	width: 22.5px;
	transform: rotate(-48deg);
	cursor: pointer;
	z-index: 100;
	mix-blend-mode: difference;
	filter: contrast(0.5);
	span {
		display: block;
		width: 24px;
		height: 4px;
		background-color: #fff;
		mix-blend-mode: overlay;
	}
}

.overlay_menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: #f9fafb;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: flex-end;
  opacity: 0.94;
  z-index: 11;

  &.active {
    transform: translateX(0%);
  }

  .overlay_inner {
    width: 427px;
    overflow-y: auto;
    padding: 40px 40px 80px;
    box-sizing: border-box;
    margin-top: 65px;

    .overlay_img {
      position: relative;

      img {
        width: 100%;
        vertical-align: middle;
      }

      &.overlay_img_top {
        img {
          height: 150px;
          width: 100%;
          object-fit: cover;
          display: block;
        }
      }

      &.overlay_img_bottom {
        p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 16px;
          font-weight: bold;
          color: #fff;
          z-index: 1;
        }

        img {
          border-radius: 10px;
          filter: brightness(85%);
          height: 100px;
          width: 100%;
          object-fit: cover;
          display: block;
        }
      }
    }

    ul {
      list-style: none;
      padding: 20px 0;

      li {
        margin: 20px 0;

        .overlay_heading {
          font-weight: bold;
          color: #4294b8;
          margin-bottom: 30px;
          font-size: 16px;

          span {
            display: inline-block;
            padding-left: 7px;
            font-size: 10px;
            font-weight: bold;
            color: #444;
          }
        }

        a {
          text-decoration: none;
          font-weight: bold;
          font-size: 18px;
          color: #4294b8;

          span {
            display: block;
            font-weight: normal;
            font-size: 12px;
            color: #333;
          }
        }
      }
    }
  }
}

.overlay_inquiry {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 40px;

  .inquiry_option {
    width: 52%;
    text-align: center;

    img {
      height: 70px;
      margin-bottom: 5px;
    }

    p {
      margin-bottom: 15px;
      line-height: 1.5;
      font-size: 12px;
      font-weight: bold;
      color: var(--primary-color);
      white-space: nowrap;
    }
  }
}

/* btn */
.list_link_btn {
    display: inline-block;
    width: fit-content;
    height: auto;
    line-height: 2.5em;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    padding: 0 1.5em;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  transition: all 0.2s ease;

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

  &.bg-orange {
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);

    &:hover {
      color: var(--orange-color);
      background-color: #fff;
    }
  }

  &.bg-white {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;

    &:hover {
      color: #fff;
      background-color: transparent;
    }
  }
}

.link_btn {
  display: inline-block;
  min-width: 170px;
  height: 37px;
  line-height: 37px;
  padding: 0 30px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  transition: all 0.2s ease;

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

  &.bg-orange {
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);

    &:hover {
      color: var(--orange-color);
      background-color: #fff;
    }
  }

  &.bg-orange_02 {
    background-color: #ff8000;
    border: 1px solid #ff8000;

    &:hover {
      color: #fff;
      background-color: #4f4f4f;
      border: 1px solid #4f4f4f;
    }
  }
}

.link_btn--white {

    display: inline-block;
    width: fit-content;
    height: auto;
    line-height: 2.5em;
    font-size: 14px;
    padding: 0 1.5em;
  color: #444;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  transition: all 0.2s ease;

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

.link_btn--white-c {
  display: inline-block;
  min-width: 190px;
  height: 41px;
  line-height: 40px;
  padding: 0 30px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  transition: all 0.2s ease;

  &:hover {
    background-color: transparent;
    color: #fff;
  }
}

.link_btn--white-t {
  display: inline-block;
  min-width: 238px;
  height: 47px;
  line-height: 47px;
  padding: 0 30px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 30px;
  transition: all 0.2s ease;

  &:hover {
    background-color: #fff;
    color: #444;
  }
}

.link_btn--primary-t {
  display: inline-block;
  min-width: 130px;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  font-size: 16px;
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  white-space: nowrap;
  transition: all 0.2s ease;

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

/* slider */
.showcase_slider {
  margin: 0 auto;

  .showcase_slide {
    .showcase_item {
      text-align: left;
      width: 100%;

      .showcase_link {
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;

        .showcase_img {
          max-width: 100%;

          img {
		width: 100%;
                height: 15em;
		object-fit: cover;
		border-radius: 10px;
          }
        }

        .showcase_title {
          font-size: 16px;
          font-weight: bold;
          color: #4294b8;
          margin: 20px 0 10px;
        }

        .showcase_desc {
          font-size: 12px;
          flex-grow: 1;
        }

        .showcase_staff {
          display: flex;
          justify-content: left;
          gap: 40px;
          padding-top: 20px;

          .staff {
            display: flex;
            justify-content: left;
            gap: 15px;
            align-items: center;

            img {
              width: 47px;
              height: 47px;
              border-radius: 50%;
              margin-bottom: 5px;
            }

            .staff-role {
              font-size: 16px;
            }

            span {
              font-size: 10px;
              font-weight: bold;
              color: var(--primary-color);
            }
          }
        }
      }
    }
  }

  .slick-slide {
    display: flex !important;
    justify-content: center;
    gap: 40px;
  }

  .slick-prev,
  .slick-next {
    background: none;
    border: none;
    font-size: 30px;
    color: #4294b8;
    cursor: pointer;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .slick-prev {
    left: -40px;
  }

  .slick-next {
    right: -40px;
  }
}

/* mk-slider */
.mk-slider {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;

  .mk-slider__wrapper {
    position: relative;
  }

  .mk-slider__slide {
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
  }

  .mk-slider__slide--double {
    display: flex;
    justify-content: center;
    gap: 40px;

    .mk-slider__image {
      height: 248px;

      img {
        width: 100%;
        border-radius: 10px;
      }
    }
  }

  .mk-slider__image_text {
    text-align: left;
    color: #fff;

    h3 {
      margin: 17px 0 10px;
      font-size: 16px;
      font-weight: bold;
    }

    p {
      font-size: 12px;
    }
  }


  /* --- ページネーション --- */
  .swiper-pagination {
    position: static;
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
  }

  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;

    &.swiper-pagination-bullet-active {
      background: #529abc;
      transform: scale(1.2);
    }
  }
}

/* fade_image */
.fade_list_img {
  position: relative;
  overflow: hidden;

  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;

    &.active {
      opacity: 1;
      z-index: 1;
    }
  }
}

/* OTHER CONTENTS */
.other-contents {
  padding: 0 0 70px;
  background-color: #f5f5f5;

  .other-contents_header {
    margin-bottom: 23px;
    line-height: 1.5;
    font-weight: bold;

    .other-contents_title {
      font-size: 14px;
      color: var(--primary-color);
    }

    .other-contents_desc {
      font-size: 24px;
      color: #1a1a1a;
    }
  }

  .other-contents_item {
    position: relative;

    .other-contents_item_text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 15px;
      font-weight: bold;
      color: #fff;

      .other-contents_item_title {
        line-height: 1.5;
        font-size: 12px;
        font-weight: bold;
      }

      .other-contents_item_desc {
        margin-top: 8px;
        line-height: 1.5;
        font-size: 14px;
      }
    }
  }

  .showcase_slider {
    .showcase_slide {
      gap: 20px;
    }
	.other-contents_img img{
            width: 100%;
            height: 16em;
            object-fit: cover;
            max-width: 270px;
	}
    .slick-prev,
    .slick-next {
      top: 50%;
      color: var(--primary-color);
    }
  }
}

/* CATALOG */
.catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 77px;
  padding: 160px 0;
  background-color: #fff;

  .catalog_text {
    padding-top: 20px;

    p {
      margin-bottom: 20px;
      font-size: 20px;
      line-height: 1.5;
    }

    .link_btn {
      font-size: 14px;
    }
  }
}

/* CTA */
#sticky_cta_container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  .sticky_cta_btn {
    display: inline-block;
    width: 350px;
    height: 50px;
    line-height: 48px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.2s ease;

    &:hover {
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      background-color: #fff;
    }

    &.bg-orange {
      background-color: var(--orange-color);
      color: #fff;

      &:hover {
        color: var(--orange-color);
        border: 2px solid var(--orange-color);
        background-color: #fff;
      }
    }
  }
}

/* zoom */
.zoom {
  .zoom_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;

    img {
      transition: all 0.3s ease;
    }
  }

  &:hover {
    .zoom_img {
      img {
        transform: scale(1.05);
        transition: all 0.3s ease;
      }
    }
  }
}

/* footer */
.footer {
  background: #fff;
  font-size: 14px;
  color: #333;

  .inquiry {
    background: url("../img/top/inquiry_bg.png") center center / cover no-repeat;
    padding: 5%;
    color: #fff;

    .inquiry_inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 40px;

      .inquiry_left {
        flex: 1;
        min-width: 300px;

        h3 {
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 20px;
        }

        p {
          font-size: 12px;
          line-height: 1.8;
          margin-bottom: 15px;
        }
      }

      .inquiry_right {
        flex: 1;
        max-width: 524px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 50px;

        .inquiry_option {
          text-align: center;

          img {
            height: 70px;
            margin-bottom: 5px;
          }

          p {
            font-size: 12px;
            margin-bottom: 15px;
            line-height: 1.5;
          }
        }
      }
    }
  }

  .footer_inner {
    display: flex;
    flex-wrap: wrap;
    /*width: 1400px;*/
    margin: 0 auto;
    align-items: stretch;

    .footer_col {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 66px 36px;

      .footer_block {
        min-width: 160px;

        .footer_heading {
          font-weight: bold;
          color: #000;
          margin-bottom: 25px;
          font-size: 16px;

          span {
            display: inline-block;
            padding-left: 7px;
            font-size: 10px;
            font-weight: bold;
            color: #444;
          }
        }

        ul {
          list-style: none;
          padding: 0;
          margin: 0;

          li {
            a {
              display: block;
              margin-bottom: 5px;
              line-height: 2;
              font-size: 12px;
              text-decoration: none;
              color: #595959;
            }
          }
        }
      }

      &.footer_col--left {
        min-width: 280px;

        .footer_info {
          .footer_logo_top {
            margin-bottom: 20px;

            img {
              height: auto;
              max-width: 316px;
            }
          }

          .footer_address {
            font-size: 12px;
            line-height: 1.6;
            margin: 14px 0 17px;

            a {
              font-size: 12px;
              font-weight: bold;
              text-decoration: none;
              color: #4294b8;

              img {
                width: 13px;
                vertical-align: text-top;
                margin: 0 2px 0 15px;
              }
            }

            .footer_links {
              display: flex;
              gap: 20px;
              margin: 10px 0;

              li {
                list-style: none;

                a {
                  color: #4294b8;
                  text-decoration: none;
                }
              }
            }
          }

          .footer_logo_bottom {
            text-align: right;

            img {
              height: auto;
              max-width: 166px;
            }
          }
        }
      }

      &.footer_col--center {
        border-left: 1px solid var(--primary-color);
        border-right: 1px solid var(--primary-color);
      }

      &.footer_col--right {
        min-width: 260px;

        .footer_logos {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
                    gap: 1em;
                    margin-top: 1em;
          padding: 0;
          list-style: none;

          li {
            img {
              max-width: 100%;
            }
          }
        }
      }
    }
  }
}

/* fadein（その場でふわっと） */
.fadein {
  opacity: 0;
  transition: opacity 1.5s ease;

  &.show {
    opacity: 1;
  }
}

/* fadein（下から上） */
.fadein-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;

  &.show {
    opacity: 1;
    transform: translateY(0);
  }

  &.fadein-up_1 {
    transition-delay: 0.2s;
  }

  &.fadein-up_2 {
    transition-delay: 0.5s;
  }

  &.fadein-up_3 {
    transition-delay: 0.8s;
  }

  &.fadein-up_4 {
    transition-delay: 1.3s;
  }

  &.fadein-up_5 {
    transition-delay: 1.8s;
  }

  &.fadein-up_6 {
    transition-delay: 2.3s;
  }
}

/* fadein（左から右） */
.fadein-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;

  &.show {
    opacity: 1;
    transform: translateX(0);
  }

  &.fadein-left_1 {
    transition-delay: 0.2s;
  }
  &.fadein-left_2 {
    transition-delay: 0.5s;
  }
  &.fadein-left_3 {
    transition-delay: 0.8s;
  }
  &.fadein-left_4 {
    transition-delay: 1.1s;
  }
}

/* --------------------
  SP
-------------------- */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: inline-block !important;
  }

  .container {
    max-width: 93%;
    width: auto;
    margin: 0 auto;
    padding: 25px 0;

    &.full_width {
      max-width: 93%;
      width: 100%;
    }
  }

  /* header */
  .site_header {
    height: 50px;

    .site_title {
      img {
        width: 210px;
      }
    }

    nav.site_nav {
      display: none;
    }
  }

  /* hamburger */
  .hamburger {
    top: 15px;
    right: 15px;
  }

  .overlay_menu {
    max-width: 100%;
    width: 100%;

    .overlay_inner {
      width: 100%;
      padding: 5% 10% 20%;
    }
  }

  .overlay_inquiry {
    gap: 30px;

    & .inquiry_option {
      p {
        font-size: clamp(10px, 2.8vw, 12px);
      }
    }
  }

  /* btn */
  .link_btn {
    min-width: 150px;
  }

  .link_btn--white-c {
    width: 70%;
    font-size: clamp(14px, 4vw, 16px);
    height: 50px;
    line-height: 49px;
  }

  .link_btn--white-t {
    min-width: 129px;
    font-size: clamp(11px, 3.2vw, 13px);
    padding: 0 14px;
    height: 39px;
    line-height: 39px;
  }

  .link_btn--primary-t {
    min-width: 129px;
    font-size: clamp(11px, 3.2vw, 13px);
    padding: 0 14px;
    height: 39px;
    line-height: 39px;
  }

  /* slider */
  .showcase_slider {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    gap: 28px;
    padding-bottom: 10px;
    scroll-behavior: smooth;

    .showcase_slide {
      display: flex;
      flex-wrap: nowrap;
      gap: 28px;
      min-width: max-content;

      .showcase_item {
        width: 300px;

        .showcase_link {
          .showcase_title {
            font-size: clamp(12px, 3.5vw, 14px);
          }

          .showcase_desc {
            margin-bottom: 10px;
          }

          .showcase_staff {
            flex-direction: column;
            gap: 10px;
            padding-top: 0px;

            .staff {
              .staff-role {
                font-size: clamp(12px, 3.5vw, 14px);
              }
            }
          }
        }
      }
    }

    .slick-slide {
      display: flex !important;
      justify-content: space-between;
      gap: 40px;
    }

    .slick-prev,
    .slick-next {
      display: none !important;
    }
  }

  /* mk-slider */
  .mk-slider {
    max-width: 90%;

    .mk-slider__slide {
      margin-bottom: 10px;
    }

    .mk-slider__image_text {
      h3 {
        font-size: clamp(13px, 3.8vw, 15px);
      }

      p {
        font-size: clamp(10px, 3vw, 12px);
      }
    }

    &.sp-only {
      .mk-slider__image {
        img {
          border-radius: 10px;
        }
      }
    }

    /* --- ページネーション --- */
    .swiper-pagination {
      margin-top: 0;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
  }

  .fade_list_img {
    width: 100%;
  }

  /* OTHER CONTENTS */
  .other-contents {
    padding: 40px 0;

    .other-contents_header {
      .other-contents_title {
        font-size: 14px;
      }

      .other-contents_desc {
        font-size: 24px;
      }
    }

    .other-contents_item {
      .other-contents_item_text {
        .other-contents_item_title {
          font-size: 12px;
        }

        .other-contents_item_desc {
          font-size: 3.5vw;
        }
      }
    }

    /*.showcase_slider {
      .showcase_slide {
      }

      .slick-prev,
      .slick-next {
      }
    }*/
  }

  /* CATALOG */
  .catalog {
    flex-direction: column;
    gap: 20px;
    padding: 100px 0;
    text-align: center;

    .catalog_text {
      p {
        margin-bottom: 30px;
        font-size: clamp(18px, 4.7vw, 18px);
      }

      .link_btn {
        font-size: clamp(13px, 4vw, 16px);
        height: 45px;
        line-height: 45px;
        width: 60%;
      }
    }
  }

  /* CTA */
  #sticky_cta_container {
    bottom: 0px;
  }

  /* footer */
  .footer {
    .inquiry {
      padding: 10% 5%;

      .inquiry_inner {
        flex-direction: column;
        max-width: 100%;
        flex-wrap: nowrap;
        gap: 30px;

        .inquiry_left {
          h3 {
            font-size: clamp(18px, 5.3vw, 20px);
          }

          p {
            font-size: clamp(11px, 3.2vw, 13px);
          }
        }

        .inquiry_right {
          max-width: 100%;
          justify-content: center;
          gap: 20px;

          .inquiry_option {
            min-width: 46%;

            & img {
              height: 100px;
            }
          }
        }
      }
    }

    .footer_inner {
      position: relative;
      width: 100%;
      flex-direction: column;
      padding: 40px 20px 70px;

      .footer_col {
        min-width: unset;
	padding: 0 0 2.5em;
	gap: 2.5em;

        &.footer_col--left {
          min-width: unset;

          .footer_info {
            & .footer_address {
              margin-bottom: 0;
            }
          }
        }

        &.footer_col--center {
          border-left: unset;
          border-right: unset;
        }

        .footer_block {
          .footer_heading {
            margin-bottom: 5px;
          }
	.logo_sublime-group{
		max-width: 170px;
		width: 60%;
	}
          ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0px 20px;
          }
        }

        .footer_logo_bottom {
          position: absolute;
          bottom: 40px;
        }
      }
    }
  }
}
