/* ================================
   Background
================================ */
.bg-gradation {
  background: url('../img/common/gradation.jpg') no-repeat center top / cover;
}

/* ================================
   Header (SP & Tablet)
================================ */
@media (max-width: 959px) {
  main article > header {
    padding-left: 10px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  main article > header > .flex.items-center.justify-start {
    flex-wrap: nowrap;
    gap: 12px !important;
  }

  header img[src*="logo-sap.png"] {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: block;
  }

  header img[src*="logo-service.png"] {
    width: 150px;
    height: auto;
    max-height: 14px;
    flex: 0 0 auto;
    display: block;
  }
}

/* ================================
   Move notice layout
================================ */
.faq-move {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 622px;
  min-height: 622px;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .faq-move {
    height: 500px;
    min-height: 500px;
  }
}

/* ================================
   Card
================================ */
.faq-move__card {
  width: 100%;
  max-width: 680px;
  padding: 60px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .faq-move__card {
    padding: 30px;
  }
}

/* ================================
   Typography
================================ */
.faq-move__title {
  width: 498px;
  margin: 0 0 60px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #003366;
}

.faq-move__text {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 1.6;
  color: #262626;
}

@media (max-width: 959px) {
  .faq-move__title {
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
  }

  .faq-move__text {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .faq-move__br {
    display: none;
  }
}

/* ================================
   Button
================================ */
.faq-move__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  min-width: 200px;
  height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  background: #008a19;
  border: 1px solid #008a19;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.faq-move__btn:hover {
  background: #006819;
  border-color: #006819;
}

.faq-move__btn:focus-visible {
  outline: 2px solid #003366;
  outline-offset: 2px;
}

@media (max-width: 959px) {
  .faq-move__btn {
    font-size: 14px;
    min-width: 160px;
    height: 40px;
    padding: 0 20px;
  }
}

/* ================================
   Service logo sizing
================================ */
.w-bss-service-logo {
  width: 316px;
  max-width: 100%;
  height: auto;
}

/* ================================
   Footer nav layout
================================ */
footer > nav {
  padding: 1.5rem 1rem;
}

footer > nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer > nav ul > li + li {
  margin-top: 1rem;
}

@media (min-width: 960px) {
  footer > nav {
    display: flex;
    gap: 5rem;
    padding: 2.5rem 3rem;
    align-items: flex-start;
  }

  footer > nav ul {
    margin-top: 0;
  }
}

/* ================================
   Footer logos (page-move)
================================ */
footer .w-bss-service-logo {
  width: 315px !important;
  height: 30px !important;
  display: block;
  object-fit: contain;
}

footer img[src*="logo-sap.png"] {
  width: 80px !important;
  height: 80px !important;
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 959px) {
  footer .w-bss-service-logo {
    width: 230px !important;
    height: 30px !important;
  }
}