@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
html,
body {
  width: 100%;
  font-family: "Souce Sans Pro", sans-serif;
  background-color: #F4F4F4;
}

body {
  overflow-x: hidden;
}

.site-header {
  max-width: 100%;
  margin-bottom: 1.5rem;
  position: relative;
}
.site-header .site-header__top {
  width: 100%;
  height: 40px;
  background-color: #2A2424;
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
}
.site-header .site-header__top .site-header__top-nav {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.site-header .site-header__top .site-header__top-nav .site-header__top-nav-link {
  font-weight: 300;
  text-decoration: none;
  margin: 0 1rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.site-header .site-header__top .site-header__top-nav .site-header__top-nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.site-header .site-header__top .site-header__top-nav .site-header__top-nav-link:hover::after {
  width: 100%;
}
.site-header .site-header__top .site-header__top-nav .site-header__top-nav-separator {
  color: #ffffff;
}
.site-header .site-header__bottom {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 1.25rem;
}
.site-header .site-header__bottom .site-header__bottom-logo {
  padding: 0 0 0 1rem;
}
.site-header .site-header__bottom .site-header__bottom-logo .site-header__bottom-logo-item {
  max-width: 100%;
}
.site-header .site-header__bottom .site-header__bottom-logo .site-header__bottom-logo-item .site-header__bottom-logo-link h1 .site-header__bottom-logo-img {
  width: 150px;
  height: auto;
  display: block;
  position: relative;
  z-index: 99;
}
.site-header .site-header__bottom .site-header__bottom-nav {
  display: flex;
  flex-direction: row;
  padding: 0 1rem 0 0;
  align-items: center;
}
.site-header .site-header__bottom .site-header__bottom-nav .site-header__bottom-nav-item {
  list-style: none;
}
.site-header .site-header__bottom .site-header__bottom-nav .site-header__bottom-nav-item .site-header__bottom-nav-link {
  text-decoration: none;
  margin-right: 2rem;
  color: #2A2424;
  position: relative;
  display: inline-block;
  cursor: default;
}
.site-header .site-header__bottom .site-header__bottom-nav .site-header__bottom-nav-item .site-header__bottom-nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2A2424;
  transition: width 0.3s ease;
}
.site-header .site-header__bottom .site-header__bottom-nav .site-header__bottom-nav-item .site-header__bottom-nav-link:hover::after {
  width: 100%;
}
.site-header .site-header__bottom .site-header__bottom-nav .site-header__bottom-nav-item .site-header__bottom-nav-link_contact {
  background-color: #D5000C;
  text-decoration: none;
  padding: 0.4rem 1rem 0.5rem 1rem;
  border-radius: 5px;
  color: #ffffff;
  transition: 0.3s;
  cursor: pointer;
}
.site-header .site-header__bottom .site-header__bottom-nav .site-header__bottom-nav-item .site-header__bottom-nav-link_contact:hover {
  background-color: #2A2424;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__bottom .site-header__bottom-nav {
    display: none;
  }
}
.site-header .site-header__bottom .menu__sp {
  display: none;
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
  z-index: 99;
  position: relative;
  cursor: pointer;
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap .menu__line {
  box-sizing: border-box;
  background-color: #D5000C;
  height: 1px;
  width: 30px;
  margin-bottom: 8px;
  transition: all 0.4s ease;
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap .menu__line--2 {
  width: 15px;
  transition: all 0.3s ease;
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap .menu__line--3 {
  margin-bottom: 0;
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap.active .menu__line--1 {
  transform: rotate(45deg) translate(5px, 8px);
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap.active .menu__line--2 {
  opacity: 0;
  transform: scaleX(0);
}
.site-header .site-header__bottom .menu__sp .menu__line-wrap.active .menu__line--3 {
  transform: rotate(-45deg) translate(5px, -8px);
}
@media screen and (max-width: 768px) {
  .site-header .site-header__bottom .menu__sp {
    display: block;
  }
}
.site-header .site-header__popup {
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 4.1rem;
  right: 0;
  z-index: 99;
}
.site-header .site-header__popup .site-header__popup-product,
.site-header .site-header__popup .site-header__popup-app,
.site-header .site-header__popup .site-header__popup-support {
  width: 50vw;
  background-color: #ffffff;
  padding: 1rem 16px;
  box-sizing: border-box;
  padding: 2rem 2rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}
.site-header .site-header__popup .site-header__popup-product .site-header__popup-title,
.site-header .site-header__popup .site-header__popup-app .site-header__popup-title,
.site-header .site-header__popup .site-header__popup-support .site-header__popup-title {
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid #e7e7e7;
  padding: 0 0 0.5rem 0;
  margin-bottom: 1rem;
}
.site-header .site-header__popup .site-header__popup-product .site-header__popup-link,
.site-header .site-header__popup .site-header__popup-app .site-header__popup-link,
.site-header .site-header__popup .site-header__popup-support .site-header__popup-link {
  font-size: 20px;
  margin-right: 50px;
  font-weight: 300;
  text-decoration: none;
  color: #2A2424;
  display: inline-block;
  position: relative;
}
.site-header .site-header__popup .site-header__popup-product .site-header__popup-link::after,
.site-header .site-header__popup .site-header__popup-app .site-header__popup-link::after,
.site-header .site-header__popup .site-header__popup-support .site-header__popup-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #2A2424;
  transition: width 0.3s ease;
}
.site-header .site-header__popup .site-header__popup-product .site-header__popup-link:hover::after,
.site-header .site-header__popup .site-header__popup-app .site-header__popup-link:hover::after,
.site-header .site-header__popup .site-header__popup-support .site-header__popup-link:hover::after {
  width: 100%;
}

.menu__display {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  will-change: transform;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
  overflow: scroll;
}
.menu__display .menu__display-box {
  padding: 4rem 0 1rem;
}
.menu__display .menu__display-box .menu__link,
.menu__display .menu__display-box .menu__link--contact {
  position: relative;
  padding: 0 1rem;
  border-bottom: 1px solid #e7e7e7;
}
.menu__display .menu__display-box .menu__link:last-child,
.menu__display .menu__display-box .menu__link--contact:last-child {
  border-bottom: none;
}
.menu__display .menu__display-box .menu__link .menu__text,
.menu__display .menu__display-box .menu__link--contact .menu__text {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #2A2424;
  cursor: pointer;
  padding: 2rem 0;
  display: block;
}
.menu__display .menu__display-box .menu__link .menu__sub-box,
.menu__display .menu__display-box .menu__link--contact .menu__sub-box {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: max-height 0.4s ease;
}
.menu__display .menu__display-box .menu__link .menu__sub-box .menu__sub-link,
.menu__display .menu__display-box .menu__link--contact .menu__sub-box .menu__sub-link {
  text-decoration: none;
  padding: 1.25rem 0 1.25rem 1rem;
  color: #2A2424;
  font-weight: 400;
  font-size: 20px;
}
.menu__display .menu__display-box .menu__link .menu__sub-box .menu__sub-link:last-of-type,
.menu__display .menu__display-box .menu__link--contact .menu__sub-box .menu__sub-link:last-of-type {
  padding: 1.25rem 0 2rem 1rem;
}
.menu__display .menu__display-box .menu__link .menu__sub-box.open,
.menu__display .menu__display-box .menu__link--contact .menu__sub-box.open {
  max-height: 500px;
}
.menu__display .menu__display-box .menu__link .menu__arrow,
.menu__display .menu__display-box .menu__link--contact .menu__arrow {
  position: absolute;
  right: 1rem;
  top: 2rem;
  max-width: 100%;
  cursor: pointer;
}
.menu__display .menu__display-box .menu__link .menu__arrow .menu__arrow-img,
.menu__display .menu__display-box .menu__link--contact .menu__arrow .menu__arrow-img {
  width: 60%;
}
.menu__display .menu__display-box .menu__link--contact {
  width: 90%;
}
.menu__display .menu__display-box .menu__link--contact .menu__text {
  color: #D5000C;
}
.menu__display.open {
  transform: translateX(0);
  opacity: 1;
}

.breadcrumbs-wrap {
  background-color: #ffffff;
}
.breadcrumbs-wrap .breadcrumbs-innerwrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 0 1rem 2rem;
}
.breadcrumbs-wrap .breadcrumbs-innerwrap .breadcrumbs-link {
  text-decoration: none;
  color: #2A2424;
}
.breadcrumbs-wrap .breadcrumbs-innerwrap .breadcrumbs-link .breadcrumbs-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .breadcrumbs-wrap .breadcrumbs-innerwrap {
    gap: 10px;
    padding: 1rem 0 1rem 1rem;
  }
}
.site-carousel {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 5px;
}
.site-carousel .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.site-carousel .site-carousel__item {
  width: 100%;
  margin: 0 auto;
}
.site-carousel .site-carousel__item .site-carousel__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1920px) {
  .site-carousel {
    border-radius: 0;
  }
}
.slick-prev,
.slick-next {
  width: 35px;
  height: auto;
  z-index: 10;
  background: none;
  border: none;
  opacity: 0.25;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  width: 34px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
}

.slick-prev::before {
  background-image: url("../img/home/arrow_left.webp");
}

.slick-next::before {
  background-image: url("../img/home/arrow_right.webp");
}

@media screen and (max-width: 600px) {
  .site-carousel {
    border-radius: 0;
  }
  .site-carousel .site-carousel__item .site-carousel__img--1 {
    content: url("../img/home/airest_mv_sp.webp");
  }
  .site-carousel .site-carousel__item .site-carousel__img--2 {
    content: url("../img/home/ahr_mv_sp.webp");
  }
}
.site-section {
  margin: 5rem auto 7rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.site-section .site-section__title {
  margin: 0 auto 10px;
  font-weight: 600;
  font-size: 32px;
}
.site-section .site-section__subtitle {
  margin: 0 auto;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 3rem;
}
.site-section .site-section__link-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}
.site-section .site-section__link-button {
  background-color: #ffffff;
  border-radius: 5px;
  border: 2px solid #DEDEDE;
  padding: 10px 18px 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  flex: 1 1 300px;
  aspect-ratio: 3/2;
  transition: 0.3s;
}
.site-section .site-section__link-button:hover {
  border-color: #2A2424;
}
.site-section .site-section__link-button:hover .site-section__art {
  width: 100%;
  transform: scale(1.05);
}
.site-section .site-section__link-button:hover .site-section__link-arrow {
  bottom: 10px;
}
.site-section .site-section__link-button .site-section__link-title {
  position: absolute;
  top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #2A2424;
  text-decoration: none;
}
.site-section .site-section__link-button .site-section__art {
  width: 100%;
  transition: 0.3s;
}
.site-section .site-section__link-button .site-section__art .site-section__art-image {
  max-width: 100%;
}
.site-section .site-section__link-button .site-section__link-arrow {
  width: 20px;
  position: absolute;
  bottom: 20px;
  transition: 0.3s;
}
.site-section .site-section__link-button .site-section__link-arrow img {
  max-width: 100%;
}

.content-section--white {
  background-color: #ffffff;
}

.content-section--gray {
  background-color: #F4F4F4;
}

.content-section {
  width: 100%;
  padding: 11rem 0;
  box-sizing: border-box;
}
.content-section .content-section__wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.content-section .content-section__wrap .content-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
}
.content-section .content-section__wrap .content-section__heading .content-section__title {
  font-size: 80px;
  font-weight: 600;
  padding-bottom: 1.5rem;
}
.content-section .content-section__wrap .content-section__heading .content-section__subtitle {
  font-size: 25px;
}
.content-section .content-section__wrap .content-section__heading .content-section__subtitle .content-section__subtitle--bold {
  font-weight: 600;
}
.content-section .content-section__wrap .content-section__box {
  display: flex;
  flex-direction: row;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
.content-section .content-section__wrap .content-section__box--airest .content-section__left-box {
  width: 50%;
  border-radius: 5px;
}
.content-section .content-section__wrap .content-section__box--airest .content-section__left-box--big .content-section__img-box {
  width: 100%;
  aspect-ratio: 1.11/1;
  background-image: url("../img/home/airest_img1.webp");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.content-section .content-section__wrap .content-section__box--airest .content-section__left-box--big .content-section__img-box:hover {
  transform: scale(1.1);
}
.content-section .content-section__wrap .content-section__box--airest .content-section__right-box {
  width: 50%;
  border-radius: 5px;
}
.content-section .content-section__wrap .content-section__box--airest .content-section__right-box--small .content-section__img-box {
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 2.26/1;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}
.content-section .content-section__wrap .content-section__box--airest .content-section__right-box--small .content-section__img-box:hover {
  transform: scale(1.1);
}
.content-section .content-section__wrap .content-section__box--airest .content-section__right-box--small .content-section__img-box--img1 {
  background-image: url("../img/home/airest_img2.webp");
  margin-bottom: 10px;
}
.content-section .content-section__wrap .content-section__box--airest .content-section__right-box--small .content-section__img-box--img2 {
  background-image: url("../img/home/airest_img3.webp");
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__right-box {
  width: 50%;
  border-radius: 5px;
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__right-box--big {
  margin-left: 10px;
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__right-box--big .content-section__img-box {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1.11/1;
  background-image: url("../img/home/filtersweep_img1.webp");
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__right-box--big .content-section__img-box:hover {
  transform: scale(1.1);
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box {
  width: 50%;
  border-radius: 5px;
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box--small .content-section__img-box {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 2.26/1;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box--small .content-section__img-box:hover {
  transform: scale(1.1);
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box--small .content-section__img-box--img1 {
  background-image: url("../img/home/filtersweep_img2.webp");
  margin-bottom: 10px;
}
.content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box--small .content-section__img-box--img2 {
  background-image: url("../img/home/filtersweep_img3.webp");
}
.content-section .content-section__wrap .content-section__box--chu .content-section__left-box {
  width: 50%;
  border-radius: 5px;
}
.content-section .content-section__wrap .content-section__box--chu .content-section__left-box--big {
  margin-right: 10px;
}
.content-section .content-section__wrap .content-section__box--chu .content-section__left-box--big .content-section__img-box {
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1.11/1;
  background-image: url("../img/home/chu_img1.webp");
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}
.content-section .content-section__wrap .content-section__box--chu .content-section__left-box--big .content-section__img-box:hover {
  transform: scale(1.1);
}
.content-section .content-section__wrap .content-section__box--chu .content-section__right-box {
  width: 50%;
  border-radius: 5px;
}
.content-section .content-section__wrap .content-section__box--chu .content-section__right-box--small .content-section__img-box {
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 2.26/1;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}
.content-section .content-section__wrap .content-section__box--chu .content-section__right-box--small .content-section__img-box:hover {
  transform: scale(1.1);
}
.content-section .content-section__wrap .content-section__box--chu .content-section__right-box--small .content-section__img-box--img1 {
  background-image: url("../img/home/chu_img2.webp");
  margin-bottom: 10px;
}
.content-section .content-section__wrap .content-section__box--chu .content-section__right-box--small .content-section__img-box--img2 {
  background-image: url("../img/home/chu_img3.webp");
}
.content-section .content-section__wrap .content-section__button-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #2A2424;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 2px solid #2A2424;
  transition: 0.3s;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button .content-section__button-icon {
  margin-right: 5px;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button .content-section__button-icon .content-section__arrow-icon {
  width: 12px;
  height: auto;
  fill: none;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button .content-section__button-icon .content-section__arrow-icon path {
  stroke: #ffffff;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button .content-section__button-text {
  color: #ffffff;
  font-size: 20px;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button:hover {
  background-color: #ffffff;
  transform: scale(1.025);
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button:hover .content-section__button-icon .content-section__arrow-icon {
  fill: none;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button:hover .content-section__button-icon .content-section__arrow-icon path {
  stroke: #2A2424;
}
.content-section .content-section__wrap .content-section__button-wrap .content-section__button:hover .content-section__button-text {
  color: #2A2424;
}

@media screen and (max-width: 900px) {
  .content-section {
    padding: 6rem 0;
  }
  .content-section .content-section__wrap .content-section__heading {
    margin-bottom: 3rem;
  }
  .content-section .content-section__wrap .content-section__heading .content-section__title {
    font-size: 60px;
  }
  .content-section .content-section__wrap .content-section__heading .content-section__subtitle {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .content-section .content-section__wrap {
    padding: 0 2rem;
  }
  .content-section .content-section__wrap .content-section__box {
    flex-direction: column;
    padding: 0;
    margin-bottom: 2rem;
  }
  .content-section .content-section__wrap .content-section__box--airest .content-section__left-box,
  .content-section .content-section__wrap .content-section__box--chu .content-section__left-box,
  .content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box {
    width: 100%;
  }
  .content-section .content-section__wrap .content-section__box--airest .content-section__right-box,
  .content-section .content-section__wrap .content-section__box--chu .content-section__right-box,
  .content-section .content-section__wrap .content-section__box--filtersweep .content-section__right-box {
    width: 100%;
  }
  .content-section .content-section__wrap .content-section__box--airest .content-section__left-box--big .content-section__img-box {
    margin-bottom: 1.5rem;
  }
  .content-section .content-section__wrap .content-section__box--airest .content-section__right-box--small .content-section__img-box--img1 {
    margin-bottom: 1.5rem;
  }
  .content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box--small .content-section__img-box--img1 {
    margin-bottom: 1.5rem;
  }
  .content-section .content-section__wrap .content-section__box--filtersweep .content-section__left-box--small .content-section__img-box--img2 {
    margin-bottom: 1.5rem;
  }
  .content-section .content-section__wrap .content-section__box--filtersweep .content-section__right-box--big {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .content-section {
    padding: 4rem 0;
  }
  .content-section .content-section__wrap .content-section__heading {
    margin-bottom: 3rem;
  }
  .content-section .content-section__wrap .content-section__heading .content-section__title {
    font-size: 45px;
    padding-bottom: 1rem;
  }
  .content-section .content-section__wrap .content-section__heading .content-section__subtitle {
    font-size: 16px;
    text-align: center;
  }
  .content-section .content-section__wrap .content-section__button-wrap .content-section__button .content-section__button-icon .content-section__arrow-icon {
    width: 10px;
  }
  .content-section .content-section__wrap .content-section__button-wrap .content-section__button .content-section__button-text {
    font-size: 16px;
  }
}
.site-section .site-section__support-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 3rem auto 0;
  max-width: 950px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  gap: 20px;
}
.site-section .site-section__support-wrap .site-section__support-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  border: 2px solid #DEDEDE;
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  padding: 2.5rem 0 3.5rem;
}
.site-section .site-section__support-wrap .site-section__support-link .site-section__support-icon {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-section .site-section__support-wrap .site-section__support-link .site-section__support-icon .site-section__support-icon-svg {
  height: 57px;
}
.site-section .site-section__support-wrap .site-section__support-link .site-section__support-icon .site-section__support-icon-svg path {
  fill: #2A2424;
}
.site-section .site-section__support-wrap .site-section__support-link .site-section__support-title {
  font-size: 26px;
  font-weight: 400;
  color: #2A2424;
}
.site-section .site-section__support-wrap .site-section__support-link:hover {
  border: 2px solid #ffffff;
  background-color: #2A2424;
  transform: scale(1.025);
}
.site-section .site-section__support-wrap .site-section__support-link:hover .site-section__support-icon .site-section__support-icon-svg path {
  fill: #ffffff;
}
.site-section .site-section__support-wrap .site-section__support-link:hover .site-section__support-title {
  color: #ffffff;
}

@media screen and (max-width: 900px) {
  .site-section .site-section__support-wrap .site-section__support-link .site-section__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .site-section .site-section__support-wrap .site-section__support-link .site-section__support-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .site-section .site-section__support-wrap {
    flex-direction: column;
    margin: 1.5rem auto 0;
  }
  .site-section .site-section__support-wrap .site-section__support-link {
    width: 100%;
  }
  .site-section .site-section__support-wrap .site-section__support-link .site-section__support-title {
    font-size: 20px;
  }
}
.site-section--canada {
  display: none;
  max-width: 100%;
  width: 950px;
  box-sizing: border-box;
  padding: 0 1rem;
}
.site-section--canada .site-section__contact {
  padding-top: 3rem;
}
.site-section--canada .site-section__contact .site-section__header {
  background-color: #2A2424;
  height: 45px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-section--canada .site-section__contact .site-section__header .site-section__header-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
}
.site-section--canada .site-section__contact .site-section__box {
  display: flex;
  flex-direction: row;
}
.site-section--canada .site-section__contact .site-section__box .contact-info {
  width: 50%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box {
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px 0;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__name {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #2A2424;
  text-align: center;
  padding: 6px 0;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group {
  padding: 6px 0 0;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group .contact-info__address {
  color: #2A2424;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  line-height: 1.25;
  margin-bottom: 8px;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group .contact-info__address::before {
  content: "";
  background-image: url(../img/common/address_icon.webp);
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
  display: block;
  background-position: center;
  background-size: contain;
  position: relative;
  top: 3px;
  margin-right: 8px;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group .contact-info__phone {
  color: #2A2424;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group .contact-info__phone::before {
  content: "";
  background-image: url(../img/common/phone_icon.webp);
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
  display: block;
  background-position: center;
  background-size: contain;
  position: relative;
  top: 0px;
  margin-right: 8px;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group .contact-info__link {
  text-decoration: underline;
  color: #2A2424;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.site-section--canada .site-section__contact .site-section__box .contact-info .contact-info__box .contact-info__info-group .contact-info__link::before {
  content: "";
  background-image: url(../img/common/web_icon.webp);
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
  display: block;
  background-position: center;
  background-size: contain;
  position: relative;
  top: 2px;
  margin-right: 8px;
}
.site-section--canada .site-section__contact .site-section__box .contact-map {
  width: 50%;
}
.site-section--canada .site-section__contact .site-section__box .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 600px) {
  .site-section--canada .site-section__contact {
    padding-top: 1.5rem;
  }
  .site-section--canada .site-section__contact .site-section__box {
    flex-direction: column;
  }
  .site-section--canada .site-section__contact .site-section__box .contact-info {
    width: 100%;
  }
  .site-section--canada .site-section__contact .site-section__box .contact-map {
    width: 100%;
    height: 300px;
  }
}
.footer {
  background-color: #ffffff;
  width: 100%;
  padding: 3rem 1rem 2rem;
  box-sizing: border-box;
}
.footer .footer__wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.footer .footer__wrap .footer__header {
  width: 150px;
  padding-bottom: 2rem;
}
.footer .footer__wrap .footer__header .footer__logo {
  max-width: 100%;
}
.footer .footer__wrap .footer__content {
  display: flex;
  flex-direction: row;
  padding-bottom: 8rem;
  flex-wrap: wrap;
}
.footer .footer__wrap .footer__content .footer__links {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  margin-right: 7rem;
  margin-bottom: 2rem;
}
.footer .footer__wrap .footer__content .footer__links .footer__top-text {
  font-size: 18px;
  padding-bottom: 10px;
}
.footer .footer__wrap .footer__content .footer__links .footer__link {
  text-decoration: none;
  color: #2A2424;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 15px;
}
.footer .footer__wrap .footer__content .footer__links .footer__arrow {
  display: none;
}
.footer .footer__wrap .footer__content .footer__links .footer__arrow .footer__arrow-img {
  transition: transform 0.3s ease;
}
.footer .footer__wrap .footer__content .footer__links .footer__arrow .footer__arrow-img.open {
  transform: rotate(180deg);
}
.footer .footer__wrap .footer__content .footer__links-contact .footer__top-text {
  text-decoration: none;
  color: #D5000C;
  font-weight: 500;
  font-size: 18px;
}
.footer .footer__wrap .footer__bottom {
  border-top: 1px solid #2A2424;
  padding-top: 1rem;
}
.footer .footer__wrap .footer__bottom .footer__copyright {
  text-align: center;
  font-weight: 300;
  line-height: 1.5;
}

@media screen and (max-width: 1400px) {
  .footer {
    padding: 3rem 3rem 2rem;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 3rem 1.5rem 2rem;
  }
  .footer .footer__wrap .footer__content {
    flex-wrap: nowrap;
    flex-direction: column;
    padding-bottom: 4rem;
  }
  .footer .footer__wrap .footer__content .footer__links {
    position: relative;
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .footer .footer__wrap .footer__content .footer__links .footer__top-text {
    padding-bottom: 0;
    cursor: pointer;
    padding: 1.5rem 0;
  }
  .footer .footer__wrap .footer__content .footer__links .footer__link {
    display: none;
    padding: 1rem 0;
  }
  .footer .footer__wrap .footer__content .footer__links .footer__link:first-of-type {
    padding: 0.5rem 0 1rem;
  }
  .footer .footer__wrap .footer__content .footer__links .footer__link:last-of-type {
    padding: 1rem 0 1.5rem;
  }
  .footer .footer__wrap .footer__content .footer__links .footer__arrow {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 0;
    max-width: 100%;
  }
  .footer .footer__wrap .footer__content .footer__links .footer__arrow .footer__arrow-img {
    width: 50%;
  }
  .footer .footer__wrap .footer__content .footer__links-contact .footer__top-text {
    width: 100%;
    display: block;
    padding: 1.5rem 0;
  }
}
/* Modal */
.custom-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.custom-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* Stop body scroll when modal is open */
}
.custom-modal.open body {
  overflow: hidden;
}
.custom-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.custom-modal__content {
  position: relative;
  z-index: 10;
  max-width: 95%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-modal__image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain; /* ensures it scales properly */
  border-radius: 8px;
}
.custom-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  background: transparent;
  color: white;
  border: none;
  cursor: pointer;
}
.custom-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  background: transparent;
  color: white;
  border: none;
  cursor: pointer;
}
.custom-modal__nav.custom-modal__prev {
  left: -60px;
}
.custom-modal__nav.custom-modal__next {
  right: -60px;
}

/* Optional: smaller screens tweaks */
@media screen and (max-width: 768px) {
  .custom-modal__content {
    max-width: 95%;
    max-height: 80%;
  }
  .custom-modal__image {
    max-height: 70vh;
  }
  .custom-modal__nav {
    font-size: 36px;
  }
  .custom-modal__close {
    font-size: 28px;
    top: -30px;
  }
}
/* Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-modal.open {
  display: flex;
}

.image-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
}

.image-modal__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-modal__close,
.image-modal__prev,
.image-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  border-radius: 50%;
}

.image-modal__close {
  top: 20px;
  right: 20px;
  transform: none;
}

.image-modal__prev {
  left: -50px;
}

.image-modal__next {
  right: -50px;
}

.button-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  transition: 0.3s;
}
.button-top.visible {
  opacity: 1;
  visibility: visible;
}
.button-top:hover .button-top__wrap {
  border: 2px solid #2A2424;
  background-color: #ffffff;
}
.button-top:hover .button-top__wrap svg path {
  fill: #2A2424;
}
.button-top .button-top__wrap {
  background-color: #2A2424;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 2px solid #2A2424;
}
.button-top .button-top__wrap svg {
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  .button-top {
    right: 1rem;
    bottom: 1rem;
  }
  .button-top .button-top__wrap {
    width: 40px;
    height: 40px;
  }
  .button-top .button-top__wrap svg {
    width: 18px;
    height: 21px;
  }
}/*# sourceMappingURL=common.css.map */