@charset "UTF-8";
.kv__txt1 img {
  width: 88%;
}

/* kv__descriptionのスタイル */
.kv__description {
  background-color: #FFFFFF;
  border-radius: 12px;
  margin: 2rem 0;
}
.kv__description p {
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.35rem;
  color: #000000;
  padding: 1.25rem;
  box-sizing: border-box;
}
.kv__description p span {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
}
.kv__description p sub {
  position: relative;
  top: 0.4em;
}

/* kv__featuresのスタイル */
.kv__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 20px 0;
  border: 12px solid #C8E9FB;
  font-size: 1.8rem;
}

.kv__features__list {
  list-style: none;
  padding: 0;
}

.kv__features__item {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.kv__features__item:last-child {
  margin-bottom: 0;
}
.kv__features__item::before {
  content: "";
  display: inline-block;
  background-image: url("/uu_concierge/assets/img/square-check-solid.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.kv__btn__add-friend {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  background-color: #07B53B;
  color: #FFFFFF;
  text-decoration: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
  position: relative;
}
.kv__btn__add-friend:hover {
  opacity: 0.8;
}
.kv__btn__add-friend::after {
  content: "";
  display: inline-block;
  background-image: url("/uu_concierge/assets/img/arrow-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 1.5rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .kv__txt1 img {
    width: 100%;
  }
  .kv__description {
    margin-top: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
  }
  .kv__description p {
    font-size: 12px;
    line-height: 1.35;
    padding: 8px;
  }
  .kv__description p span {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .kv__features {
    padding: 8px 12px;
    margin: 15px 0 0 0;
    border: 6px solid #C8E9FB;
    gap: 8px;
  }
  .kv__features__item {
    font-size: 15px;
  }
  .kv__features__item::before {
    width: 16px;
    height: 16px;
  }
  .kv__btn__add-friend {
    padding: 8px;
    font-size: 20px;
  }
  .kv__btn__add-friend::after {
    width: 16px;
    height: 16px;
    right: 1rem;
  }
  .kv__img {
    margin-top: 40px;
  }
  .kv__inner {
    /* 子要素を絶対配置するための基準点として設定 */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 絶対配置した要素がはみ出さないように、コンテナ下部に余白を確保 */
    padding-bottom: 90px;
  }
  /* 「ともだち追加...」のボックスを絶対配置で画像の上に重ねる */
  .kv__txt2:not(.kv__description) {
    position: absolute;
    bottom: 26px; /* 画像の下端から少しはみ出すように配置 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0; /* gapの影響をリセット */
  }
  /* 2つ目のkv__imgはスマホでは不要なため非表示にする */
  .kv__txt2:not(.kv__description) + .kv__img {
    display: none;
  }
  .kv__features {
    /* 親要素が絶対配置になったため、marginを0にリセット */
    margin: 0;
  }
  .kv__img {
    margin-top: 0;
    position: relative;
    top: -16px;
    left: 38%;
    transform: translateX(-50%);
  }
}
/* サポート機能のスタイル */
.support__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.support__item {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  box-sizing: border-box;
}

/* レスポンシブ対応 - サポート機能 */
@media screen and (max-width: 900px) {
  .support__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .support__list {
    gap: 20px;
  }
}
.support__item__body {
  display: flex;
  gap: 18px;
}

.support__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, rgb(2, 136, 207) 0%, rgb(3, 151, 203) 100%);
  background-color: rgb(2, 136, 207);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  aspect-ratio: 1/1;
}

.support__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.support__description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support__image {
  max-width: 400px;
  margin: 0 auto;
}

.support__image img {
  width: 100%;
  height: auto;
}

/* レスポンシブ対応 - サポート機能 */
@media screen and (max-width: 767px) {
  .support__list {
    gap: 20px;
    margin-top: 30px;
  }
  .support__item {
    padding: 20px;
    border: none;
    box-shadow: none;
  }
  .support__number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .support__title {
    font-size: 16px;
  }
}
.notice-text {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #666666;
  line-height: 1.7;
  margin-top: 40px;
  letter-spacing: 0.02em;
}

.u-flex {
  display: flex !important;
}

.my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.w-100 {
  width: 100% !important;
}

.text-center {
  text-align: center !important;
}

sup {
  vertical-align: super;
  font-size: 0.7em;
  line-height: 1;
}/*# sourceMappingURL=custom.css.map */