@charset "UTF-8";
/* 
------------------------------------------------------------------------------
修正用共通CSS（原則修正時は既存CSSファイルを編集せずuniq.cssで上書きしてください）
------------------------------------------------------------------------------
*/ /*-----追加260731--------------------------------*/
.top-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: #ecf8fa;
  padding: 88px 20px;
}
.top-cta__title {
  margin: 0;
  font-size: clamp(20px, calc(28 / 1680 * 100vw), 28px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.top-cta__bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 10px 0;
}
.top-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 280px;
  height: 68px;
  padding: 24px 8px;
  background-color: #61acd7;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: clamp(16px, calc(18 / 1680 * 100vw), 18px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.top-cta__btn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 834px) {
  .top-cta__inner {
    gap: 24px;
    padding: 48px 16px;
  }
  .top-cta__btn {
    width: 100%;
    max-width: 280px;
  }
}
