@charset "utf-8";
/* CSS Document */

.top-search{
  background-color: #000;
}
.top-search .ttl{
  font-size: 57px;
  font-weight: bolder;
  text-align: center;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}
.top-search .ttl::after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.top-search{
  text-align: center;
}
.top-search .u-text-01 b{
  font-size: clamp(1.875rem, -0.625rem + 3.3333333333vw, 2.5rem);
  line-height: 1.4375;
  white-space: nowrap;
  color: #000;
  margin: 0 auto;
}
.top-search .u-text-01 p{
  margin-top: 25px;
  color: #fff;
}

.top-search .flex{
  display: flex;
  justify-content: center;
  gap:50px;
} 
.top-search .link-circle a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* 白い角丸 */
  width: 380px;
  height: 50px;
  border-radius: 50vh;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  color: #000; /* 黒い文字 */
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .top-search .ttl{
    font-size: 35px;
  }
  .top-search .flex{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:30px;
  }
  .top-search .link-circle{
    width: 100%;
  }
  .top-search .link-circle a{
    max-width: 100%;
    padding: 0 5px;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
  }
  .top-search .u-text-01 b{
    font-size: clamp(1.125rem, 0.0515267176rem + 4.5801526718vw, 2.25rem);
    line-height: 1.75;
    white-space: normal;
    white-space-collapse: collapse;
    text-wrap-mode: wrap;
  }
  .top-search .u-text-01 p{
    margin-top: 20px;
  }
}