/* Base */
:root {
  /* Colors */
  --color-primary: #2B57B4;
  --color-secondary: #0017C1;
  --color-contents: #084CCB;
  --color-accent: #F9FF50;
  --color-accent2: #FFCD1A;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-bg: #C2EBFF;
  --color-dark: #111111;

  /* Gradients */
  --gradient-primary: linear-gradient(90deg, #0665A7 0%, #004172 100%);

  /* Typography */
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Layout */
  --container-width: 980px;
  --container-padding: 24px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base styles */
html {
  font-size: 62.5%;
  /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-white);
}

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

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

ul,
ol {
  list-style: none;
}

/* Layout */
.container {
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.br__sp{
  display: none;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.header__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gradient-primary);
  padding: 16px 40px;
  height: 100%;
}

.header__logo {
  display: block;
  margin-bottom: 4px;
}

.header__logo img {
  filter: brightness(0) invert(1);
  width: 120px;
  height: 44px;
}

.header__tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: var(--font-weight-regular);
  margin: 0;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  background-color: var(--color-white);
  padding: 0 32px;
  height: 100%;
  flex: 1;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-list a {
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  padding: 16px 0 10px;
  transition: background-color 0.3s;
}

.header__nav-list a:hover {
  border-bottom: solid 3px var(--color-primary);
  color: var(--color-primary);
}
/* Mobile Menu Toggle Button */
.header__mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  display: none;
}

.header__mobile-menu.is-open {
  transform: translateY(0);
}

.header__mobile-menu-content {
  padding: 100px 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.header__mobile-nav-list a {
  color: var(--color-black);
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  padding: 20px;
  display: block;
  transition: color 0.3s;
}

.header__mobile-nav-list a:hover {
  color: var(--color-primary);
}

.header__mobile-cta {
  text-align: center;
}

/* Mobile Menu Toggle States */
.header__mobile-menu-toggle.is-open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-menu-toggle.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.header__mobile-menu-toggle.is-open .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 24px;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
}

.btn--secondary {
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn--secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* Hero Section */
.hero {
  padding-top: 80px;
  /* header height */
  background: url("/assets/images/img-top-bg.png") center/cover no-repeat;
  color: var(--color-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

/* Hero専用コンテナ */
.hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 220px);
  gap: 60px;
}

.hero__content {
  flex: 1;
  /* max-width: 600px; */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  
}

.hero__stats {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero__title {
  margin-bottom: 0;
  max-width: 750px;
}

.hero__title-main {
  display: inline-block;
  font-size: 7.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  font-weight: var(--font-weight-bold);
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero__title-main2 {
  display: block;
  font-size: 5rem;
  line-height: 1.2;
  margin-top: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  font-weight: var(--font-weight-bold);
  text-align: left;
}

.hero__title-accent{
  color: var(--color-accent2);
  font-size: 7.8rem;
}

.hero__title-main::after{
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: -8px;
  width: 100%;
  height: 20px;
  background: url("/assets/images/text-line2.svg") no-repeat;
  background-size: cover;
  z-index: -1;
}

.hero__stat-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 450px;
}

.hero__stat-image1 {
  width: 100%;
  height: auto;
  max-width: 250px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}
.hero__stat-image2 {
  width: 100%;
  height: auto;
  max-width: 450px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}

.scroll-container {
  width: 100%;
  overflow: hidden;      /* 親の幅を超えた部分を隠す */
  position: relative;
}

.scrolling {
  display: flex;
  gap: 24px;             /* 画像間の間隔 */
  width: max-content;
  animation: scroll 60s linear infinite;  /* 固定速度 */
  will-change: transform;    /* GPUで滑らかに */
}

.scrolling img {
  display: block;
  width: 200px;          /* 画像サイズ */
  flex-shrink: 0;        /* 縮小しない */
}
.contents-scroll .scrolling{
  gap: 100px;
  animation-duration: 100s;
}
.contents-scroll .scrolling img{
  width: 40px;
  height: 40px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 複製分だけスクロール */
  }
}
/* 共通アニメーション */
.fade-slide {
  opacity: 0;
  transform: translateY(30px); /* 下からスライド */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-slide.show {
  opacity: 1;
  transform: translateY(0);
}


/* Section Common */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title__main {
  font-size: 4.8rem;
  color: var(--color-black);
}

.section-title__sub {
  font-size: 3.6rem;
}

.section-description {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 60px;
}

/* 中央だけ斜め背景 */
.about__inner .slanted-center {
  position: relative;
  padding: 60px 0;
  z-index: 0;
}

/* 背景用 ::before */
.slanted-center::before {
  content: "";
  position: absolute;
  top: -40px;    /* 上に少しはみ出す */
  left: 0;
  width: 100%;
  height: calc(100% + 100px); /* 上下に侵食させる */
  background: var(--color-bg);
  clip-path: polygon(0 250px, 100% 0, 100% calc(100% - 250px), 0 100%);
  z-index: -3;
}
.contents__gridBox .slanted-center::before{
  clip-path: polygon(0 0, 100% 250px, 100% 100%, 0 calc(100% - 250px));
  top: 50%;
  height: 50%;
  transform: translateY(-50%);
}
.location .slanted-center::before{
  top: 140px;
  height: 100%;
}
/* 上下装飾画像を1つの ::after で管理 */
.slanted-center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: 
    url("/assets/images/img-bg-icon1.svg") no-repeat right 40px top 40px,
    url("/assets/images/img-bg-icon2.svg") no-repeat left 40px bottom 40px;
  background-size: 200px 243px, 232px 200px;
  pointer-events: none; /* テキストやリンク操作を妨げない */
}
.contents__gridBox .slanted-center::after{
  position: absolute;
  top: 50%;
  height: 45%;
  transform: translateY(-50%);
  background: 
    url("/assets/images/img-bg-icon3.svg") no-repeat left 40px top 40px,
    url("/assets/images/img-bg-icon4.svg") no-repeat right 40px bottom 40px;
  background-size: 232px 200px, 200px 243px;
}
.location .slanted-center::after{
  position: absolute;
  top: 140px;
  background: 
    url("/assets/images/img-bg-icon5.svg") no-repeat right 40px top 100px,
    url("/assets/images/img-bg-icon6.svg") no-repeat left 40px bottom 100px;
  background-size: 200px 243px, 232px 200px;
}

/* About Section */
.about {
  padding: 80px 0;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
  height: 360px;
  background-image: url("/assets/images/img-bg-point.png");
  background-size: cover;
  background-repeat: no-repeat;   /* 繰り返さない */
  z-index: -1;
}

.about__content {
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 50px 0;
  flex-wrap: wrap;
}
.about__content:nth-child(odd){
  flex-direction: row-reverse;
}
.about__content:nth-child(even){
  flex-direction: row;
}
.about__text {
  flex: 1;
}

.about__subtitle {
  font-size: 5.6rem;
  color: var(--color-primary);
  margin-bottom: 32px;
  line-height: 1.28;
}

.about__description {
  font-size: 1.8rem;
}

.about__image {
  flex: 1;
}

/* System Section */
.system {
  padding-bottom: 120px;
  background-color: var(--color-white);
  position: relative;
}
.system::before{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 450px;
  height: 360px;
  background-image: url("/assets/images/img-bg-point2.png");
  background-size: cover;
  background-repeat: no-repeat;   /* 繰り返さない */
}
.system .container{
  padding-top: 30px;
}
.system__diagram {
  margin: 40px 0;
  text-align: center;
}

.system__cta {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 40px;
}

/* CTA Box */
.cta-box {
  display: inline-block;
  margin: 0 auto;
  position: relative;   /* ボタンをインライン要素として扱う */
  white-space: nowrap;       /* 改行をさせない */
  width: auto;
  padding: 4px;
  border-radius: 14px;
  border: 4px solid var(--color-primary);
  box-shadow: 0px 4px 16px rgba(8, 10, 45, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-box__label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 2.4rem;
  padding: 10px 40px;
  border-radius: 30px;
  border: 4px solid var(--color-primary);
}

.cta-box__content {
  text-align: center;
}

.cta-box__title {
  font-size: 3.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.cta-box__button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--gradient-primary);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: var(--color-white);
  padding: 40px 60px;
  border-radius: 8px;
  font-size: 3.2rem;
  font-weight: var(--font-weight-bold);
  transition: background-position 0.6s ease;
}

.cta-box:hover .cta-box__button,
.cta-box:focus-within .cta-box__button {
  background-position: 100% 50%;
}

@media (prefers-reduced-motion: reduce) {
  .cta-box__button {
    transition: none;
  }
}

/* Elevation: stronger shadow + slight lift */
.cta-box:hover,
.cta-box:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 10, 45, 0.45);
}

.cta-box__button-text {
  white-space: nowrap;
}

/* Icon sizes moved from HTML */
.btn__icon {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/icon/icon-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--secondary:hover .btn__icon{
  background-image: url("/assets/images/icon/icon-mail2.svg");
}

.cta-box__button-icon img {
  width: 70px;
  height: 67px;
}

.cta-box__button-arrow {
  width: 30px;
  height: 30px;
  background-image: url("/assets/images/icon/icon-chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Contents Section */
.contents {
  width: 100%; 
}
.contents__inner{
  width: 100%;
}
.contents__titleBox{
  background-color: var(--color-contents);
  color: var(--color-white);
  padding: 80px 0 30px;
}

.contents .section-title__main,
.contents .section-description {
  color: var(--color-white);
}
.contents__gridBox{
  position: relative;
}
.contents__gridBox::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px; /* 上のパディングと同じ高さ */
  background-color: var(--color-contents);
  z-index: -1;
}

.contents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* margin-top: 40px; */
}

.content-card {
  overflow: hidden;
}

.content-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.content-card__title {
  color: var(--color-black);
  font-size: 2rem;
  padding: 20px 0;
  text-align: center;
}
.contents-customize{
  border: solid 2px var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 80px 0 0;
}
.contents-customize__addPrice{
  border: solid 2px var(--color-primary);
  padding: 6px 16px;
  color: var(--color-primary);
  margin-right: 10px;
  white-space: nowrap;
}
/* Location Section */
.location {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}
.location__inner{
  padding-top: 130px;
}

.location .section-title {
  font-size: 4rem;
  line-height: 1.5;
}

.location .section-title span {
  display: inline;
}

.section-title__accent {
  color: var(--color-primary);
  font-size: 5.6rem;
}

.location__grid {
  display: grid;
  grid-template-columns: repeat(5, 150px);
  justify-content: center;
  gap: 24px;
  max-width: 850px;
  margin: 60px auto 0;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.location-item__icon {
  width: 140px;
  height: 140px;
  background-color: var(--color-white);
  border: 1px solid #C2EBFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.location-item__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

.location-item__title {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.42px;
  color: var(--color-black);
}

/* Inquiry */
.inquiry{
  padding: 150px 0 150px;
  background-image: url("/assets/images/img-inquiry.png");
  background-repeat: no-repeat; /* 繰り返しなし */
  background-size: cover;       /* 全体をカバー */
  background-position: center;  /* 中央寄せ */
}
.inquiry .section-title__main{
  color: var(--color-primary);
  font-weight: bold;
  text-align: center;
}
/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 100px 0 0;
  text-align: center;
}

.footer__logo {
  margin-bottom: 100px;
}

.footer__logo img {
  width: 240px;
  height: 70px;
}
.footer__ktp img{
  width: 140px;
  height: 28px;
  margin-bottom: 10px;
}
.footer__ktp{
  padding: 30px 0;
}

/* Media Queries */
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
    /* 9px = 1rem */
  }

  .hero .container {
    max-width: 1000px;
  }
  .hero__title-main,.hero__title-accent{
    font-size: 6rem;
  }
  .hero__title-main2{
    font-size: 4rem;
  }
  .hero__stat-image1{
    max-width: 200px;
  }
  .hero__stat-image2{
    max-width: 350px;
  }
}

@media (max-width: 1000px) {
  .hero .container {
    max-width: 800px;
  }
  .header__cta .btn__text{
    display: none;
  }
  .about__content {
    flex-direction: column;
  }
  .about__content:nth-child(odd), .about__content:nth-child(even){
    flex-direction: column;
  }
  .location__grid{
    grid-template-columns: repeat(4, 150px);
  }
  .contents__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
    /* 8px = 1rem */
  }
  /* Header */
  .header {
    height: 56px;
  }

  .header__left {
    padding: 16px 24px;
  }
  .header__logo img {
    filter: brightness(0) invert(1);
    width: 82px;
    height: 33px;
  }
  
  .header__tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: var(--font-weight-regular);
    margin: 0;
  }
  
  .header__right {
    gap: 16px;
    padding: 0 24px;
  }
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__mobile-menu-toggle {
    display: block;
  }

  .header__mobile-menu {
    display: block;
  }

  .hero .container {
    max-width: 100%;
  }
  .hero{
    padding-top: 56px;
  }
  .hero__inner {
    text-align: center;
    gap: 40px;
    min-height: calc(100vh - 200px);
  }

  .hero__content {
    max-width: 100%;
    flex-direction: column;
  }

  .hero__title-main, .hero__title-accent {
    font-size: 6rem;
    text-align: center;
  }

  .hero__title-main2 {
    font-size: 4rem;
    text-align: center;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .hero__stat-card {
    max-width: 280px;
    justify-content: center;
  }

  .hero__stat-image1 {
    max-width: 150px;
  }
  .hero__stat-image2 {
    max-width: 280px;
  }
  .scrolling {
    gap: 16px;
  }
  .scrolling img {
    display: block;
    width: 160px;          /* 画像サイズ */
    height: auto;
    flex-shrink: 0;        /* 縮小させない */
  }
  .contents-scroll .scrolling{
    gap: 50px;
    animation-duration: 100s;
  }
  .contents-scroll .scrolling img{
    width: 32px;
    height: 32px;
  }

  .about::before, .system::before{
    width: 300px;
    height: 240px;
  }

  /* CTA Box (tablet & down) */
  .cta-box {
    padding: 6px;
  }

  .cta-box__label {
    top: -16px;
    font-size: 1.8rem;
    padding: 8px 24px;
  }

  .cta-box__title {
    font-size: 2.4rem;
  }

  .cta-box__button {
    padding: 25px 24px;
    font-size: 3rem;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }

  .cta-box__button-icon img {
    width: 40px;
    height: 40px;
  }

  .cta-box__button-arrow {
    width: 30px;
    height: 30px;
  }
  .location__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .location .section-title,
  .section-title__accent {
    font-size: 5rem;
  }
  .location .section-title{
    line-height: 1;
  }
  .slanted-center::after {
    background: 
      url("/assets/images/img-bg-icon1.svg") no-repeat right 20px top 40px,
      url("/assets/images/img-bg-icon2.svg") no-repeat left 20px bottom 40px;
    background-size: 100px 122px, 116px 100px;
  }
  .contents__gridBox .slanted-center::after{
    background: 
      url("/assets/images/img-bg-icon3.svg") no-repeat left 20px top 40px,
      url("/assets/images/img-bg-icon4.svg") no-repeat right 20px bottom 40px;
    background-size: 116px 100px, 100px 122px;
  }
  .location .slanted-center::after{
    background: 
      url("/assets/images/img-bg-icon5.svg") no-repeat right 20px top 100px,
      url("/assets/images/img-bg-icon6.svg") no-repeat left 20px bottom 100px;
    background-size: 100px 122px, 116px 100px;
  }
  .contents-customize{
    font-size: 1.8rem;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .br__sp{
    display: inline;
  }
  .section-title__main,.section-title__accent {
    font-size: 4rem;
  }

  .section-title__sub {
    font-size: 2.4rem;
  }

  .about__subtitle {
    font-size: 4rem;
  }

  .hero__title-main, .hero__title-accent{
    font-size: 4.2rem;
  }

  .hero__title-main2 {
    font-size: 3rem;
  }
  .hero__stats {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .hero__stat-card {
    max-width: 100%;
    justify-content: center;
  }

  .hero__stat-image1 {
    max-width: 100px;
  }
  .hero__stat-image2 {
    max-width: 240px;
  }
  .about::before, .system::before{
    width: 200px;
    height: 160px;
  }
  /* CTA Box (phone) */
  .cta-box {
    padding: 2px;
  }

  .cta-box__label {
    top: -14px;
    font-size: 1.6rem;
    padding: 6px 18px;
  }

  .cta-box__title {
    font-size: 2rem;
  }

  .cta-box__button {
    padding: 14px 18px;
    font-size: 1.8rem;
  }
  .cta-box__button-arrow {
    width: 18px;
    height: 18px;
  }
  .location__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
