@charset "UTF-8";
/**************************************
*
* File name: kuraseed24-service.css
* Page name:
*
**************************************/
/* 共通 */
body {
  background: #fef5f5;
}

img {
  width: 100%;
}

hr {
  width: 100%;
}

/* コンテナ */
.container {
  margin: 0 auto;
  width: min(100%, 806px);

}

/* ヘッダー */
.header {
  background: #fef5f5;
}

.header-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: min(100%, 806px);
  margin: 0 auto;

  @media screen and (max-width:806px) {
    height: 100px;
  }
}

.header-img {
  max-height: 70px;
  width: auto;

  @media screen and (max-width:806px) {
    max-height: 50px;
  }
}

/* メイン */
.main-section {
  margin-top: 120px;

  @media screen and (max-width:806px) {
    margin-top: 100px;
  }

}

.cta {
  position: relative;
}

.cta-background {
  display: block;
  width: 100%;
}

.cta-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  cursor: pointer;
  animation: pulse 2s ease-in-out infinite;

  &:hover {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Q&A */
.faq {
  background-color: #fff;
  margin-top: -40px;
}

.faq-header {
  text-align: center;
}

.row {
  padding: 0 20px;
}

.sub-title {
  color: #df707c;
  font-family: "Montserrat Ligh", sans-serif;
  font-size: clamp(1.5rem, calc(0.9945vw + 1.1271rem), 2.4rem);
  line-height: 1.6;
}

.title {
  font-weight: bold;
  font-size: clamp(2.6rem, calc(2.6519vw + 1.6055rem), 5rem);
  line-height: 1.2;
}


/* フッター */
.footer {
  font-size: 14px;
  margin-top: -100px;
  background-color: #fff;

  @media screen and (max-width:806px) {
    margin-top: 0;
  }
}

.footer-container {
  display: grid;
  gap: 20px;
  margin: 30px 0;
  padding: 0 20px;
  text-align: center;
}


.footer-logo-img {
  height: auto;
  width: 193px;
}

.footer-right {
  display: grid;
  gap: 20px;
}

.footer-cta {
  width: 80%;
  margin: 0 auto;

  @media screen and (max-width: 440px) {
    width: 100%;
  }
}

.footer-cta-button {
  cursor: pointer;

  &:hover {
    opacity: 0.7;
  }
}

.footer-links {
  display: flex;
  gap: 10px;
  margin: 0 auto;
}

.footer-links-text {
  text-decoration: underline;

  &:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  font-size: 1.2rem;
}