* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #252525;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #8b6c42 0%, #a67c52 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(139, 108, 66, 0.4);
  box-shadow: 0 6px 20px rgba(139, 108, 66, 0.4);
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .btn-cta {
    padding: 12px 30px;
    font-size: 14px;
  }
}

.btn-form {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #8b6c42 0%, #a67c52 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 10px 10px 0;
}
.btn-form:hover {
  background: linear-gradient(135deg, #a67c52 0%, #8b6c42 100%);
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .btn-form {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
}

.btn-line {
  color: #ffffff !important;
  background-color: #07b53b;
}

.btn-line:hover, .btn-line:active {
  color: #ffffff !important;
  background-color: #000000;
}

.hero-section {
  position: relative;
  overflow: hidden;
  height: 80dvh;
  min-height: 600px;
  max-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    height: 60dvh;
    min-height: 500px;
  }
}
.hero-section .hero-subtitle {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }
}
.hero-section .hero-title {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 32px;
    text-align: center;
  }
}
.hero-section .hero-brand {
  color: #ffffff;
  display: block;
  font-size: 56px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero-section .hero-brand {
    font-size: 36px;
  }
}
.hero-section .hero-cta {
  text-align: center;
}
.hero-section .hero-images {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #6f5337;
}
.hero-section .hero-images::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.hero-section .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 20px;
}

.company-logos {
  padding: 80px 0;
}
.company-logos .wheat-icons {
  position: relative;
  margin-bottom: 20px;
}
.company-logos .wheat-icons .wheat-left,
.company-logos .wheat-icons .wheat-right {
  width: 30px;
  height: auto;
}
.company-logos .wheat-icons .wheat-left {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
}
.company-logos .wheat-icons .wheat-right {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.company-logos .company-text {
  font-size: 16px;
  font-weight: bold;
}
.company-logos .company-title {
  font-size: 24px;
  font-weight: bold;
}
.company-logos .award-decoration-right {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.company-logos .logos-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .company-logos .logos-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .company-logos .logos-grid {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .company-logos .logos-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.company-logos .logo-item {
  padding: 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.company-logos .logo-item img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
}
.company-logos .company-note {
  font-size: 12px;
  color: #606060;
  margin-top: 20px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: #252525;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.loyalty-section {
  padding: 80px 0;
}
.loyalty-section .loyalty-content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.loyalty-section .loyalty-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .loyalty-section .loyalty-description {
    text-align: left;
  }
}
.loyalty-section .loyalty-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.loyalty-section .loyalty-image-left {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.loyalty-section .loyalty-image-left img {
  margin: 0 0 0 auto;
  width: 100%;
  max-width: 300px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.loyalty-section .loyalty-image-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.loyalty-section .loyalty-image-top {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 30px 0 0;
}
.loyalty-section .loyalty-image-top img {
  margin: 0 auto 0 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  min-height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.loyalty-section .loyalty-image-bottom {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.loyalty-section .loyalty-image-bottom img {
  width: 100%;
  max-width: 450px;
  height: 100%;
  min-height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.features-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 0;
}
.features-section .feature-item {
  margin-bottom: 5rem;
}
.features-section .feature-item:last-child {
  margin-bottom: 0;
}
.features-section .feature-title {
  font-size: 32px;
  font-weight: bold;
  color: #6f5337;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .features-section .feature-title {
    font-size: 24px;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.features-section .feature-description {
  line-height: 1.8;
  color: #252525;
  margin-bottom: 1rem;
  text-align: justify;
}
.features-section .feature-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .features-section .feature-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.features-section .feature-image {
  text-align: center;
  padding: 1rem;
}
.features-section .feature-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media (max-width: 768px) {
  .features-section .feature-image {
    padding: 0.5rem;
    margin-top: 1.5rem;
  }
}
.features-section .feature-left .feature-image {
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .features-section .feature-left .feature-image {
    padding-right: 0.5rem;
  }
}
.features-section .feature-right .feature-image {
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .features-section .feature-right .feature-image {
    padding-left: 0.5rem;
  }
}
@media (max-width: 768px) {
  .features-section {
    padding: 2rem 0;
  }
  .features-section .feature-item {
    margin-bottom: 4rem;
  }
}

.process-section {
  padding: 80px 0 0;
  margin-bottom: 140px;
  max-height: 880px;
}
@media (max-width: 768px) {
  .process-section {
    padding: 60px 0 0;
    max-height: 1200px;
  }
}
.process-section .process-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .process-section .process-header {
    margin-bottom: 40px;
  }
}
.process-section .process-title {
  font-weight: bold;
  color: #252525;
}
@media (max-width: 768px) {
  .process-section .process-title {
    font-size: 28px;
  }
}
.process-section .process-flow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .process-section .process-flow {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.process-section .process-step {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1024px) {
  .process-section .process-step {
    max-width: 100%;
  }
}
.process-section .process-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 250px;
  min-height: 110px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .process-section .process-number {
    min-width: 160px;
    min-height: 100px;
    font-size: 16px;
    padding: 0 1rem;
  }
}
.process-section .process-number-secondary-start {
  background: url("/img/corporate-novelty/start-secondary-arrow.svg") no-repeat center center;
  background-size: contain;
}
.process-section .process-number-primary-arrow {
  background: url("/img/corporate-novelty/primary-arrow.svg") no-repeat center center;
  background-size: contain;
}
.process-section .process-number-secondary-arrow {
  background: url("/img/corporate-novelty/secondary-arrow.svg") no-repeat center center;
  background-size: contain;
}
.process-section .process-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.process-section .process-content-list {
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.process-section .process-step-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #252525;
}
.process-section .process-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.process-section .process-items li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #606060;
}
.process-section .process-note {
  font-size: 0.8rem;
  color: #606060;
  margin-top: 0.5rem;
}
.process-section .process-arrow {
  font-size: 1.5rem;
  color: #ccc;
  margin: 0 1rem;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1024px) {
  .process-section .process-arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: 0;
  }
}

.voice-section {
  padding: 80px 0;
  background: #f6f6f6;
}
@media (max-width: 768px) {
  .voice-section {
    padding: 60px 0;
  }
}
.voice-section .voice-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .voice-section .voice-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .voice-section .voice-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.voice-section .voice-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.voice-section .voice-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.voice-section .voice-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.voice-section .voice-title {
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #252525;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .voice-section .voice-title {
    font-size: 14px;
    padding: 15px;
  }
}
.voice-section .voice-cta {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .voice-section .voice-cta {
    padding: 30px 20px;
  }
}
.voice-section .voice-cta-title {
  font-size: 24px;
  font-weight: bold;
  color: #252525;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .voice-section .voice-cta-title {
    font-size: 20px;
  }
}
.voice-section .voice-cta-text {
  font-size: 16px;
  color: #252525;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .voice-section .voice-cta-buttons .btn-form,
  .voice-section .voice-cta-buttons .btn-line {
    display: block;
    margin: 0 0 10px 0;
  }
}

.works-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .works-section {
    padding: 60px 0;
  }
}
.works-section .works-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .works-section .works-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .works-section .works-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.works-section .work-item {
  text-align: center;
}
.works-section .work-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .works-section .work-image {
    height: 200px;
  }
}
.works-section .work-title {
  font-size: 16px;
  font-weight: bold;
  color: #252525;
}
@media (max-width: 768px) {
  .works-section .work-title {
    font-size: 14px;
  }
}

.order-section {
  padding: 80px 0;
  background: #f6f6f6;
}
@media (max-width: 768px) {
  .order-section {
    padding: 60px 0;
  }
}
.order-section .order-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .order-section .order-steps {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .order-section .order-steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.order-section .order-step {
  text-align: center;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .order-section .order-step {
    padding: 25px 15px;
  }
}
.order-section .order-step-icon {
  margin-bottom: 20px;
}
.order-section .order-step-icon img {
  width: 60px;
  height: 60px;
}
.order-section .order-step-title {
  font-size: 18px;
  font-weight: bold;
  color: #6f5337;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .order-section .order-step-title {
    font-size: 16px;
  }
}
.order-section .order-step-description {
  font-size: 14px;
  color: #606060;
  line-height: 1.6;
}

.faq-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.faq-section .faq-question {
  background: linear-gradient(135deg, #ddc499 0%, #e8d5aa 100%);
  padding: 20px;
  font-weight: bold;
  color: #6f5337;
  cursor: pointer;
  position: relative;
}
.faq-section .faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq-section .faq-question {
    padding: 15px;
    font-size: 14px;
  }
}
.faq-section .faq-answer {
  padding: 20px;
  color: #252525;
  line-height: 1.6;
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .faq-section .faq-answer {
    padding: 15px;
    font-size: 14px;
  }
}
.faq-section .faq-answer a {
  color: #6f5337;
  text-decoration: underline;
}
.faq-section .faq-answer a:hover {
  color: rgb(76.8975903614, 57.5, 38.1024096386);
}

.faq__question {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 20px;
}
.faq__question::before {
  content: "Q.";
  position: absolute;
  top: 10px;
  left: 15px;
}

.faq__answer {
  position: relative;
  padding-left: 35px;
  padding-right: 20px;
}
.faq__answer::before {
  content: "A.";
  position: absolute;
  top: 10px;
  left: 15px;
}

.media-section {
  padding: 80px 0;
  background: #f6f6f6;
}
@media (max-width: 768px) {
  .media-section {
    padding: 60px 0;
  }
}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f4e6 0%, #f0ead6 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
}
.contact-section .contact-title {
  font-size: 36px;
  font-weight: bold;
  color: #252525;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-section .contact-title {
    font-size: 28px;
  }
}
.contact-section .contact-text {
  font-size: 16px;
  color: #252525;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-section .contact-buttons .btn-form,
  .contact-section .contact-buttons .btn-line {
    display: block;
    margin: 0 0 15px 0;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation: fadeInUp 0.6s ease-out;
  animation: fadeInUp 0.6s ease-out;
}

.hover-opacity {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hover-opacity:hover {
  opacity: 0.8;
}

.top-0 {
  top: 0;
}

.bg-base {
  background-color: #f8f9fa;
}

@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 0;
  }
  .hero-section .hero-title {
    font-size: 1.8rem;
  }
  .hero-section .hero-subtitle {
    font-size: 0.9rem;
  }
  .company-logos .logos-grid {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .loyalty-section .loyalty-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .loyalty-section .loyalty-images {
    margin-top: 2rem;
  }
}
.marker-highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffeb3b), color-stop(90%, #ffeb3b), color-stop(90%, transparent));
  background: linear-gradient(transparent 50%, #ffeb3b 50%, #ffeb3b 90%, transparent 90%);
  padding: 2px 8px;
  display: inline;
  line-height: 1.6;
  font-weight: bold;
  color: #333;
  position: relative;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-animation: highlightAnimation 1.5s ease-in-out forwards;
  animation: highlightAnimation 1.5s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.marker-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(255, 235, 59, 0.9)), color-stop(100%, rgba(255, 235, 59, 0.9)), to(transparent));
  background: linear-gradient(transparent 50%, rgba(255, 235, 59, 0.9) 50%, rgba(255, 235, 59, 0.9) 100%, transparent 100%);
  z-index: -1;
}
@media (max-width: 768px) {
  .marker-highlight {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, #ffeb3b), color-stop(95%, #ffeb3b), color-stop(95%, transparent));
    background: linear-gradient(transparent 55%, #ffeb3b 55%, #ffeb3b 95%, transparent 95%);
    padding: 1px 6px;
    line-height: 1.5;
  }
}

@-webkit-keyframes highlightAnimation {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@keyframes highlightAnimation {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}
@media (max-width: 768px) {
  .flex-md-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .fs-sm-default {
    font-size: 15px !important;
  }
}
.flow-cta-title-wrap {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .flow-cta-title-wrap {
    top: -40px;
  }
}

.flow-cta-title {
  display: block;
  padding: 10px 20px 0;
  text-align: center;
}
.flow-cta-title::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 auto;
  display: block;
  width: 300px;
  height: 10px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .flow-cta-title::before {
    top: 38px;
    width: 150px;
  }
}

.process-cta {
  position: relative;
  top: 30px;
  padding: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .process-cta {
    top: 80px;
  }
}
@media (max-width: 576px) {
  .process-cta {
    top: 60px;
  }
}
@media (max-width: 380px) {
  .process-cta {
    top: 30px;
  }
}

.process-cta-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #6f5337;
}

.process-cta-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #252525;
}

.process-cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.process-cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}