:root {
  --color__primary: #009be5;
  --color__secondary: #ff55b2;
  --font__default: "Noto Sans JP", "游ゴシック体", "YuGothic",
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    sans-serif;
}
html {
  overflow: auto;
  font-size: 16px;
}
body {
  position: relative;
  line-height: 1.6;
  color: #000;
  font-weight: 400;
  overflow-x: clip;
  font-family: var(--font__default);
  background-color: var(--color__primary);
  background: linear-gradient(90deg, #009be4 0%, #0066b3 100%);
}

a {
  display: inline-block;
  color: inherit;
  transition: 0.3s ease-in;
}
img {
  width: 100%;
}
/* =====================================================
Layout
===================================================== */
.pc-view {
  position: relative;
  width: 100%;
  height: 100dvh;
}
.pc-view__content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100vh;
  width: calc(100vw - calc(375px + 151px));
  display: none;
}
.sp-view {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  z-index: 10;
  margin-left: auto;
  margin-right: 151px;
}
.sp-view__container {
  overflow-x: hidden;
  background: linear-gradient(90deg, #009be4 0%, #0066b3 100%);
}

/* =====================================================
Content
===================================================== */
.pc-view__logo {
  position: absolute;
  left: 48px;
  top: 48px;
  height: 28px;
}
.pc-view__text {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.pc-view__app {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.pc-view__app-logo {
  position: relative;
  width: 267px;
  margin-top: 0;
}
.pc-view__app-logo::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon__app-logo-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 35px;
  right: -38px;
  top: 17px;
}
.pc-view__app-qr {
  border-radius: 12px;
  background-color: #fff;
  padding: 7px;
  width: 103px;
  height: 103px;
  margin-left: 50px;
}

/* ヘッダー */
.header {
  background-color: #fff;
  padding: 38px 12px 12px;
}
.header__logo {
  height: 20px;
}
.header__logo-image {
  width: auto;
  height: 100%;
  object-fit: contain;
  vertical-align: baseline;
}
/* メインビジュアル */
.mainvisual {
  position: relative;
  color: #ffffff;
  margin-top: 16px;
}
.mainvisual__content {
  position: relative;
  z-index: 2;
}
.mainvisual__heading {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 215px;
  margin-inline: auto;
}
.mainvisual__title {
  text-align: center;
  margin-top: 6px;
}

.mainvisual__description {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
.mainvisual__card-area {
  position: relative;
  margin-top: 8px;
}
.mainvisual__smartphone {
  position: relative;
  width: 225px;
  margin-inline: auto;
}
.mainvisual__smartphone-img {
  width: 100%;
  height: auto;
  display: block;
}
.mainvisual__badge {
  background-color: #41c2ffcc;
  color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -26px;
  right: -45px;
  text-align: center;
  z-index: 3;
}
.mainvisual__badge-text {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section__deco {
  position: relative;
  z-index: 1;
}
.section__deco::before {
  position: absolute;
  content: "";
  background-image: url(../img/section-deco__top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 101%;
  height: 22.3vw;
  top: -22.1vw;
  left: -0.5%;
  right: 0;
  z-index: 1;
}
.section__deco::after {
  position: absolute;
  content: "";
  background-image: url(../img/section-deco__bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  width: 101%;
  height: 22.3vw;
  bottom: -22.1vw;
  left: -0.5%;
  right: -0.5%;
  z-index: 1;
}
.section__deco--top-swap::before {
  transform: scale(-1, 1);
}
.section__deco--bottom-swap::after {
  transform: scale(-1, 1);
}
.section__deco--only-top::after {
  content: none;
}
.section__deco--white::before {
  background-image: url(../img/section-deco__top--white.svg);
  height: 20.15vw;
  top: -19.5vw;
  left: -1%;
}
/* バナー */
.banner {
  position: absolute;
  padding: 0 24px;
  bottom: -104px;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.banner__button {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s;
  max-width: 324px;
  margin-inline: auto;
}
.banner__button:hover,
.banner__button:focus {
  outline: none;
}
.banner__image {
  width: 100%;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  max-height: 87vh;
  max-height: 87dvh;
}
.modal__scroll-area {
  background-color: #fff;
  overflow-y: auto;
  max-height: calc(90vh - 74px);
}
.modal__content {
  padding: 24px;
  text-align: center;
}
.modal__title {
  font-weight: 700;
}
.modal__table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  text-align: left;
}
.modal__table th {
  background-color: #e5f4fc;
  padding: 3px 10px;
  font-weight: 400;
  border: 1px solid #000;
  text-align: center;
}
.modal__table td {
  padding: 3px 10px;
  border: 1px solid #000;
}
.modal__button-container {
  margin-top: 24px;
  text-align: center;
}
.modal__close-button {
  background-color: var(--color__primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 0;
  width: 120px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.modal__container {
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.no-scroll {
  overflow: hidden;
}

/* セクションタイトル共通スタイル */
.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 英語タイトル */
.section-title__en {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.section-title__en::before,
.section-title__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
}
.section-title__en::before {
  left: -20px;
  transform: translateY(-50%);
}
.section-title__en::after {
  right: -20px;
  transform: translateY(-50%);
}
.section-title__main {
  font-size: 40px;
  line-height: 1;
  margin-top: 12px;
  display: inline-block;
}
.section-title__sub {
  margin-top: 2px;
  font-size: 24px;
  display: inline-block;
}
.section-title--blue .section-title__en,
.section-title--blue .section-title__main,
.section-title--blue .section-title__sub {
  color: var(--color__primary);
}

.section-title--blue .section-title__en::before,
.section-title--blue .section-title__en::after {
  background-color: var(--color__primary);
}
.section-title--white .section-title__en,
.section-title--white .section-title__main,
.section-title--white .section-title__sub {
  color: #ffffff;
}
.section-title--white .section-title__en::before,
.section-title--white .section-title__en::after {
  background-color: #ffffff;
}

/* Aboutセクション */
.about {
  background-color: #e5f5fc;
  padding: 160px 0 50px;
}
.about__content {
  padding: 0 24px;
}
.about__image {
  position: relative;
  text-align: center;
  margin-top: 24px;
  width: 289px;
  margin-inline: auto;
}
.about__catch {
  margin-top: 40px;
  font-size: 20px;
  color: var(--color__primary);
  text-align: center;
}
.about__description {
  margin-top: 24px;
  letter-spacing: 0.005em;
}
.about__recommend {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 16px 24px;
  margin-top: 24px;
}
.about__recommend-heading {
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color__primary);
}
.about__recommend-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.about__recommend-item {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
  line-height: 1.2;
}
.about__recommend-item::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #018fd9;
}
/* POINTセクション全体 */
.point {
  padding: clamp(115px, calc(115px + (100vw - 450px) * 0.1), 150px) 0;
}
.point__cards {
  display: grid;
  gap: 80px;
  margin-top: 40px;
}
.point-card {
  position: relative;
  width: 93.33%;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 右からスライドイン（奇数カード用） */
.point-card--right {
  margin-left: auto;
  transform: translateX(30px);
}

/* 左からスライドイン（偶数カード用） */
.point-card--left {
  margin-right: auto;
  transform: translateX(-30px);
}

/* アニメーション表示状態のクラス */
.point-card.visible {
  opacity: 1;
  transform: translateX(0);
}
.point-card--right {
  margin-left: auto;
}
.point-card--left {
  margin-right: auto;
}
.point-card__badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 84px;
  height: 84px;
  z-index: 2;
}
.point-card--left .point-card__badge {
  left: auto;
  right: -20px;
}
.point-card__content {
  background-color: #ffffff;
  padding: 20px 24px;
}
.point-card--left .point-card__content {
  border-radius: 0 10px 10px 0;
}
.point-card--right .point-card__content {
  border-radius: 10px 0 0 10px;
}
/* カードタイトル */
.point-card__title {
  color: var(--color__primary);
  font-size: 20px;
  text-align: center;
}
.point-card__image {
  margin-top: 10px;
}
.point-card__img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.point-card__description {
  line-height: 1.6;
  margin-top: 12px;
  text-align: justify;
}

/* STEPセクション全体 */
.step {
  background-color: #e5f5fc;
  padding-top: 30px;
  padding-bottom: 45px;
}
/* タブコンテナ */
/* wallet-guide全体のスタイル */
.wallet-guide {
  margin-top: 40px;
  padding-bottom: 44px;
}
.wallet-guide__tabs {
  display: flex;
  margin: 0 17px 0 24px;
}
.wallet-guide__tab-button {
  flex: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  transform: translateY(1px);
  position: relative;
  z-index: 1;
}
.wallet-guide__tab-button:nth-of-type(2) {
  left: -16px;
}
.wallet-guide__tab-button.wallet-guide__tab-button--active {
  z-index: 2;
}
.wallet-guide__step {
  position: absolute;
  width: 51%;
  left: 0;
  top: 17px;
  z-index: 2;
}
.wallet-guide__step img {
  object-fit: contain;
}
.wallet-guide__phone {
  width: 220px;
  aspect-ratio: 218 / 240;
  overflow: hidden;
}
.wallet-guide__phone-image {
  object-fit: contain;
  height: 100%;
}
.wallet-guide__instruction {
  margin-top: 12px;
  font-size: 20px;
  text-align: center;
  color: var(--color__primary);
  font-weight: 700;
}
/* Swiper関連 */
.wallet-guide__swiper {
  width: 100%;
  background-color: #fff;
  overflow: visible;
}

.wallet-guide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(82px + ((100vw - 375px) * 0.084));
  padding-bottom: 42px;
}
.wallet-guide_deco {
  position: absolute;
  content: "";
  height: 100%;
  width: 24px;
  top: 0;
  bottom: 0;
  background-color: #e5f5fc;
}
.wallet-guide__slide:first-child .wallet-guide_deco {
  left: 0;
}
.wallet-guide__slide:last-child .wallet-guide_deco {
  right: 0;
}
.wallet-guide__slide:first-child .wallet-guide_deco::before,
.wallet-guide__slide:first-child .wallet-guide_deco::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 24px;
  bottom: 0;
  left: 24px;
}
.wallet-guide__slide:first-child .wallet-guide_deco::before {
  background-color: #e5f5fc;
}
.wallet-guide__slide:first-child .wallet-guide_deco::after {
  background-color: #fff;
  border-bottom-left-radius: 20px;
}
.wallet-guide__slide:last-child .wallet-guide_deco::before,
.wallet-guide__slide:last-child .wallet-guide_deco::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  right: 24px;
  bottom: 0;
}
.wallet-guide__slide:last-child .wallet-guide_deco::before {
  background-color: #e5f5fc;
}
.wallet-guide__slide:last-child .wallet-guide_deco::after {
  background-color: #fff;
  border-bottom-right-radius: 20px;
}
.wallet-guide__slide:last-child .wallet-guide_deco--last {
  position: absolute;
  content: "";
  height: 100%;
  width: 24px;
  top: 0;
  bottom: 0;
  right: 0;
}
.wallet-guide__slide:last-child .wallet-guide_deco--last::before,
.wallet-guide__slide:last-child .wallet-guide_deco--last::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  right: 24px;
  top: 0;
}
.wallet-guide__slide:last-child .wallet-guide_deco--last::before {
  background-color: #e5f5fc;
}
.wallet-guide__slide:last-child .wallet-guide_deco--last::after {
  background-color: #fff;
  border-top-right-radius: 20px;
}
.wallet-guide__pagination.swiper-pagination {
  margin: 0;
  top: auto;
  line-height: 1;
  bottom: -44px;
}

.wallet-guide__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #d9d9d9;
  opacity: 1;
  margin: 0 5px;
}

.wallet-guide__pagination .swiper-pagination-bullet-active {
  background-color: var(--color__primary);
}
.how {
  color: #fff;
  padding: calc(92px + ((100vw - 375px) * 0.059)) 24px;
}
.how__header {
  text-align: center;
}
.how__title {
  width: 260px;
  margin-inline: auto;
}
.how__main-description {
  margin-top: 30px;
}
.how__catchphrase {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
}
.how__detail {
  margin-top: 24px;
}
.how__app-visual {
  width: 320px;
  margin-inline: auto;
  margin-top: 38px;
}
.sections-footer {
  background-color: #fff;
}
/* FAQセクションのスタイル */
.faq {
  background-color: #fff;
  padding-top: 50px;
}
.faq__list {
  display: grid;
  padding: 0 24px;
  margin-top: 30px;
  gap: 15px;
}
.faq__item {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

/* 質問部分 */
.faq__question {
  width: 100%;
  background-color: #e5f4fc;
  padding: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  border-radius: 10px;
  text-align: left;
  font-weight: 400;
  margin-bottom: 8px;
}
.faq__question-text {
  flex: 1;
}
.faq__toggle-icon {
  width: 14px;
  height: 14px;
  position: relative;
  margin-left: 15px;
}
.faq__toggle-icon::before,
.faq__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color__primary);
  transition: transform 0.3s;
}
.faq__toggle-icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}
.faq__toggle-icon::after {
  width: 2px;
  height: 14px;
  left: 6px;
  top: 0;
}
.product-overview__accordion-icon {
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 0.3s;
}
.faq__answer {
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 10px;
}
.faq__answer p {
  padding: 16px;
}
.faq__item.active .faq__toggle-icon::after {
  transform: rotate(90deg);
}
.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0;
}
/* 商品概要セクションのスタイル */
.product-overview {
  background-color: #fff;
  padding-top: 120px;
}

/* アコーディオン部分 */
.product-overview__content {
  padding: 0 24px 25px;
  margin-top: 30px;
}
.product-overview__accordion {
  position: relative;
  width: 100%;
  background-color: #ebebeb;
  border: none;
  padding: 8px 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 0.3s;
}
.product-overview__accordion-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
  background-image: url(../img/icon__service-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 5px;
  top: 14px;
  display: inline-block;
}
.product-overview__accordion.active .product-overview__accordion-icon {
  transform: rotate(180deg);
}
.product-overview__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.product-overview__detail-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}
.product-overview__detail-inner .modal__table th {
  background-color: #f9f9f9;
}
/* アクティブ状態 */
.product-overview__accordion.active + .product-overview__detail {
  max-height: auto;
}
.table__note {
  display: grid;
  gap: 1em;
  margin-top: 10px;
  margin-bottom: 4px;
}
.table__note-item {
  font-size: 12px;
  line-height: 1.2;
}
.table__note-item a {
  color: #009be5;
  text-decoration: underline;
}

/* お問い合わせセクション */
.wallet-contact {
  background-color: #fff;
  padding: 30px 24px;
}
.wallet-contact__title,
.wallet-reception__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--color__primary);
}
.wallet-contact__description {
  margin-top: 27px;
}
.wallet-contact__card {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
}
.wallet-contact__card-title {
  font-size: 15px;
}
.wallet-contact__phone-number {
  font-size: 34px;
  font-weight: 700;
  margin-top: 2px;
  line-height: 1.4;
}
.wallet-contact__hours {
  font-size: 15px;
  line-height: 1.4;
  margin-top: 2px;
}

/* 申込み受付時間セクション */
.wallet-reception {
  background-color: #fff;
  padding: 30px 24px;
}
.wallet-reception__schedule {
  margin-top: 28px;
}
.wallet-reception__schedule-item {
  line-height: 1.6;
}
/* フッターセクションのスタイル */
.site-footer {
  background-color: #626262;
  padding-bottom: 42vw;
}
.site-footer__container {
  padding: 20px 30px 2px 30px;
}
.site-footer__copyright {
  text-align: center;
  color: #fff;
}
.site-footer__copyright-text {
  font-size: 12px;
  line-height: 1.2;
}

.application__sp-content {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.application__sp-content.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.application__sp-image-wrapper {
  position: relative;
  width: 100%;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}
.application__sp-image {
  width: 100%;
  height: auto;
  display: block;
}
.application__link {
  position: absolute;
  display: block;
  background-color: transparent;
  aspect-ratio: 182 / 70;
  z-index: 1;
  bottom: 0;
  width: 48%;
}
.application__link--left {
  left: 0;
  width: 50%;
}

/* 右側のリンク */
.application__link--right {
  right: 0;
  width: 50%;
}

/* スクリーンリーダー用のテキスト（視覚的には非表示） */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* レスポンシブ対応 */
@media (min-width: 768px) {
  .site-footer {
    padding: 25px 20px;
  }
}
@media screen and (min-width: 769px) {
  /* =====================================================
  Layout
  ===================================================== */
  .pc-view__content {
    display: flex;
    width: calc(100vw - (375px + calc((151 / 1280) * 100vw)));
  }
  .sp-view {
    width: 375px;
    margin-right: calc((151 / 1280) * 100vw);
  }
  .sp-view__container {
    box-shadow: 10px 10px 50px 0px #004f8b;
    border-radius: 30px 30px 0 0;
    margin-top: 24px;
  }
  .application__sp-content {
    display: none;
  }
  /* =====================================================
  Content
  ===================================================== */
  .pc-view__logo {
    left: clamp(30px, calc(30px + (100vw - 769px) * 0.0542), 48px);
    top: clamp(15px, calc(15px + (100vw - 769px) * 0.0542), 24px);
    height: clamp(20px, calc(20px + (100vw - 769px) * 0.0241), 28px);
  }

  .pc-view__text {
    font-size: clamp(28px, calc(28px + (100vw - 769px) * 0.0361), 40px);
  }
  .pc-view__app {
    margin-top: clamp(20px, calc(20px + (100vw - 769px) * 0.0301), 30px);
  }
  .pc-view__app-logo {
    width: clamp(200px, calc(200px + (100vw - 769px) * 0.2018), 267px);
  }
  .pc-view__app-logo::before {
    width: clamp(16px, calc(16px + (100vw - 769px) * 0.0151), 21px);
    height: clamp(27px, calc(27px + (100vw - 769px) * 0.0241), 35px);
    right: clamp(-30px, calc(-30px + (100vw - 769px) * -0.0241), -38px);
    top: clamp(13px, calc(13px + (100vw - 769px) * 0.0121), 17px);
  }
  .pc-view__app-qr {
    width: clamp(80px, calc(80px + (100vw - 769px) * 0.0693), 103px);
    height: clamp(80px, calc(80px + (100vw - 769px) * 0.0693), 103px);
    margin-left: clamp(35px, calc(35px + (100vw - 769px) * 0.0452), 50px);
  }
  .wallet-guide__slide {
    padding-top: 82px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .modal__close-button:hover,
  .modal__close-button:focus {
    background-color: #0087c5;
  }
}
