/* aタグのリセットCSS（不要な場合、セレクタごと削除してください） */
/*
a {
  color: inherit;
  text-decoration: none;
}
*/
/* buttonタグのリセットCSS（不要な場合、セレクタごと削除してください） */
/*
button {
  padding: 0;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
*/
/* ボタンのスタイル */
.buttonIconText {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 8px 40px 8px 8px;
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #2e4a9e;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonIconText_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1;
  padding: 4px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 50%;
}

.buttonIconTextMini {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 155px;
  height: 32px;
  padding: 8px 40px 8px 8px;
  font-family: sans-serif;
  font-size: 12px;
  color: black;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #f2f2f2;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonIconTextMini_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  aspect-ratio: 1;
  padding: 4px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 50%;
}

.buttonIconText_text {
  flex-shrink: 1;
  width: 100%;
}

@media (any-hover: hover) {
  .buttonIconText {
    transition: background-color 0.2s;
  }

  .buttonIconText_icon_item {
    transition: background-color 0.2s;
  }

  .buttonIconText:hover {
    background-color: #557abf;
  }

  .buttonIconTextMini:hover {
    background-color: #c0c0c0;
  }

}

/* 上矢印アイコンのスタイル */
.iconArrowTop {
  rotate: 270deg;
}

/* 下矢印アイコンのスタイル */
.iconArrowBottom {
  rotate: 90deg;
}

/* 左矢印アイコンのスタイル */
.iconArrowLeft {
  rotate: 180deg;
}
