/* ----------------------------------------
カスタムプロパティ（変数）
---------------------------------------- */

:root {
  --blue-2023: hsl(204, 65%, 48%);
  --blue-2023-hover: hsl(204, 65%, 52%);

  --blue-2024: hsl(204, 76%, 49%);
  --blue-2024-hover: hsl(204, 76%, 53%);

  --default-light-color: hsl(0, 0%, 55%);

  --link-color: hsl(205, 90%, 55%);
}

/* ----------------------------------------
リセットCSS
---------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:target {
  /* ページ内リンクがサイトヘッダーの下に隠れないように調整 */
  scroll-margin-top: 60px;
}

html {
  height: 100%;
  /* Disable font-size adjustment in landscape mode.
  https://stackoverflow.com/questions/2710764/preserve-html-font-size-when-iphone-orientation-changes-from-portrait-to-landsca */
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  margin: 0px;
  color: #303036;
  font-family: "Noto Sans JP", sans-serif;
  text-spacing-trim: space-all; /* Chorme 123 以降のデフォルト挙動である `text-spacing-trim: normal;` をキャンセルし、Chromiumエンジン以外を使うブラウザと足並みを揃える */
}
a {
  text-decoration: none;
  color: #303036;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {
  letter-spacing: 0.05em;
}

img {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  resize: vertical;
}

@media screen and (max-width: 980px) {
  body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

/* 中身を中央寄せするためのスタイル */
.center {
  display: grid;
  place-items: center;
}

/* ----------------------------------------
Utilities
---------------------------------------- */

@media screen and (min-width: 520px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 520px) {
  .pc-only {
    display: block;
  }
}

/* テキスト装飾 */

.wbr-wrapper {
  word-break: keep-all; /* wbrタグを機能させるために指定 */
  overflow-wrap: break-word;
  overflow-wrap: anywhere; /* https://qiita.com/tamanyan/items/e37e76b7743c59235995#%E7%B5%90%E5%B1%80%E4%BD%95%E3%82%92%E4%BD%BF%E3%81%88%E3%81%B0%E8%89%AF%E3%81%84%E3%81%AE */
}

.palt {
  font-feature-settings: "palt";
}

/* リンク装飾 */

a.text-link[target="_blank"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
  font: var(--fa-font-solid);
  text-decoration: none;
  padding-left: 0.5em;
  font-size: 0.75em;
  color: inherit;
}

/* box */

.box {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  background-color: var(--default-background);
  color: var(--default-color);
  border: 1px solid var(--default-border);
}
.box.light {
  background-color: var(--light-background);
  color: var(--light-color);
}
.box.minimal {
  padding: 0;
  border-radius: 0;
  border: none;
}

.box h3 {
  font-size: 1.25em;
}

.box h4 {
  font-size: 1.15em;
}

.box ul {
  padding-inline-start: 1.5em;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.box li {
  list-style-type: disc;
}

/* 注記表現 */

.note {
  font-size: 14px;
  color: var(--default-light-color);
}

div.note,
ul.note {
  padding-top: 10px;
  border-top: 1px solid hsl(0, 0%, 80%);
}

p.note {
  position: relative;
  padding-left: 1.25em;
}
p.note::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* ----------------------------------------
sectionの共通レイアウト
---------------------------------------- */

/* section.cover の指定に負けるように :where() で包んでいる */
:where(:not(.markdown) > section) {
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}
@media screen and (min-width: 520px) {
  section {
    padding: 60px 40px;
  }
}
@media screen and (min-width: 960px) {
  section {
    padding: 100px;
  }
}

section > * {
  max-width: min(100%, 1000px);
}

section h2 {
  font-size: 1.6em;
  text-align: center;
}
@media screen and (min-width: 960px) {
  section h2 {
    font-size: 1.8em;
  }
}

section a {
  text-decoration: underline;
  color: var(--link-color);
}

/* ------------------------------
ヘッダー
------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.site-header a {
  color: #303036;
}
.site-header.active {
  background-color: rgb(255, 255, 255, 1);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
}
.site-header.active a {
  color: #303036;
}
.site-header .header__wrapper {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}

.logo {
  display: block;
  width: 110px;
  height: 27px;
  background-image: url("/assets/images/siiibo_wide_color.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.logo.active {
  background-image: url("/assets/images/siiibo_wide_color.png");
}

.header__menu {
  display: none;
}
@media screen and (min-width: 981px) {
  .header__menu {
    display: flex;
    align-items: center;
    column-gap: 1.25vw;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1121px) {
  .header__menu {
    column-gap: 1.5vw;
  }
}

.menu__item {
  position: relative;
}
.menu__item > * {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(8 / 3);
  cursor: pointer;
}
@media screen and (min-width: 1121px) {
  .menu__item > * {
    font-size: 15px;
  }
}

.menu__item.-selected > :any-link,
.menu__item.-selected > div {
  font-weight: 700;
  color: var(--blue-2024);
}
.menu__item.-selected::before {
  position: absolute;
  content: "";
  bottom: -11px;
  width: 100%;
  height: 2px;
  background-color: var(--blue-2024);
}

.header__menu:hover .menu__item > * {
  opacity: 0.5;
  transition: 0.2s;
}
.header__menu .menu__item > :hover,
.header__menu .menu__item.-trigger.-on > * {
  opacity: 1;
}

.menu__wrapper {
  display: none;
}
@media screen and (min-width: 981px) {
  .menu__wrapper {
    display: flex;
    align-items: center;
    column-gap: 15px;
    white-space: nowrap;
  }
}

/*スクロール前-共通*/
.header__buttons {
  display: flex;
  column-gap: 10px;
}

.header__buttons > li {
  display: block;
}
.header-button {
  padding: 10px 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: 0.2s;
  border: 1px solid #fff;
  border-radius: 5px;
}
@media screen and (min-width: 1121px) {
  .header-button {
    font-size: 15px;
  }
}

/*
.header-button の配色は記述順番に依存している
TODO: 記述順番の影響が少なくなるようにする
*/

.header-button:hover {
  cursor: pointer;
  background-color: var(--blue-2024-hover);
  border-color: var(--blue-2024-hover);
}

.header-button.blue {
  background-color: var(--blue-2024);
  border: 1px solid var(--blue-2024);
  color: #fff;
}
.header-button.blue:hover {
  background-color: var(--blue-2024-hover);
}

.header-button.white {
  background-color: #fff;
  color: var(--blue-2024);
  border: 1px solid var(--blue-2024);
}
.header-button.white:hover {
  background-color: #ececec;
  border-color: var(--blue-2024-hover);
}

.header-button.lightblue {
  color: #fff;
}
.header-button.lightblue {
  background-color: #5ec3dc;
  border: 1px solid #5ec3dc;
}

/* /business用ヘッダーボタンスタイル */
.header-button.round {
  width: 180px;
  height: 37px;
  border-radius: 19px;
  font-weight: 700;
  line-height: 1;
}
.header-button.black {
  background-color: #242626;
  color: #fff !important;
  border: 1px solid #242626;
}
.header-button.black:hover {
  background-color: #444;
  border-color: #444;
}

.header-button .badge {
  border-radius: 10px;
  padding: 1.5px 7px 2.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 1);
  font-size: 13px;
}
@media screen and (min-width: 1121px) {
  .header-button .badge {
    font-size: 14px;
  }
}
.header-button .badge > p {
  line-height: 1;
}

.switch_type {
  padding: 0 0.75em;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  cursor: pointer;
  border-left: solid 1px #303036;
  border-right: solid 1px #303036;
}
@media screen and (min-width: 1121px) {
  .switch_type {
    font-size: 15px;
  }
}

.hiddenMenu {
  display: none;
  position: absolute;
  min-width: 200px;
  left: 0;
  top: 37px;
  z-index: 350;
  padding: 10px 20px 10px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #dcdcdc;
  background-color: #fff;
  border-radius: 4px;
  font-feature-settings: "palt" on;
}
.hiddenMenu a {
  color: #303036;
  display: flex;
  align-items: center;
  transition: 0.5s;
  padding: 0 5px;
}
.hiddenMenu a:hover {
  color: var(--blue-2024-hover);
  transform: translateX(-2px);
}
.hiddenMenu.-on {
  display: block;
}
.hiddenMenu li {
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  line-height: calc(8 / 3);
}

/* ヘッダー内外部リンクのアイコン */
.hiddenMenu a[target="_blank"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
  font: var(--fa-font-solid);
  padding-left: 1em;
  color: #aaa;
  font-size: 10px;
}

.menuWindow {
  display: none;
}

/* ------------------------------
サブヘッダー
------------------------------ */

.subheader {
  min-height: 3em;
  padding: 0.5em 20px;
  display: grid;
  place-items: center;
  background-color: hsl(240, 25%, 96%);
  color: hsl(0, 0%, 49%);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.subheader.inactive {
  display: none;
}
.subheader.lp-7 {
  background-color: hsl(195, 100%, 80%);
  color: hsl(205, 50%, 20%);
}
@media screen and (max-width: 980px) {
  .subheader {
    font-size: 14px;
  }
}

.subheader a {
  /* ::after のchevronを想定したレイアウト指定をしているが、他のタグを含めたくなったときに干渉する可能性あり
     その場合は display: inline-block などを使った横並びに変更する
  */
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  text-decoration: none;
  color: currentColor;
}
.subheader a::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url("/assets/images/chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.subheader a:hover {
  text-decoration: underline;
}

/* ------------------------------
ハンバーガメニュー
------------------------------ */

@media screen and (min-width: 981px) {
  .menuArea {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
  }
  .menu-trigger {
    position: relative;
    width: 17px;
    height: 12px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #303036;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 5.4px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    background-color: #303036;
    transform: translateY(5.5px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    background-color: #303036;
    transform: translateY(-5.5px) rotate(45deg);
  }
  /* ハンバーガーメニュークリックで表示 */
  .menuWindow {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 20px 20px 50px;
    background-color: #f2f2f2;
    z-index: 33;
    overflow: scroll;
  }
  .menuWindow.active {
    display: block;
  }
  .menuWindow h3 {
    font-size: 15px;
    padding-top: 10px;
    font-weight: 700;
  }

  .menuWindow-link-section {
    width: 100%;
    border-top: 1px #ccc solid;
  }
  .menuWindow-link-wrapper {
    margin: 5px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
  }

  .menuWindow-link-wrapper li a {
    display: flex;
    align-items: baseline;
    width: 100%;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 400;
  }

  .menuWindow-link-wrapper a[target="_blank"]::after {
    font-family: "Font Awesome 6 Free";
    content: "\f08e";
    /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
    font: var(--fa-font-solid);
    padding-left: 1em;
    color: #aaa;
    font-size: 10px;
  }

  .menuWindow__buttons {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .menuWindow .menuWindow__button {
    text-align: center;
    padding: 17px 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: #171c23;
    border-radius: 10px;
  }
  .menuWindow .menuWindow__button.signin {
    color: #171c23;
    background-color: #fff;
  }
  .menuWindow .menuWindow__button.signup {
    color: #fff;
    background-color: var(--blue-2024);
  }
  .menuWindow .menuWindow__button.inquiry {
    background-color: #242626;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: #fff;
    border-radius: 0;
  }
  .menuWindow .menuWindow__button.inquiry .badge {
    border-radius: 11.5px;
    padding: 0px 7px;
    border: 1.5px solid rgba(255, 255, 255, 1);
    color: #fff;
    font-size: 14px;
  }
}

/* ------------------------------
パンくずリスト
------------------------------ */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.breadcrumbs > li {
  display: contents; /* 区切り記号の両端の余白をgapで表現するために指定 */
  font-size: 14px;
  color: #666;
}

.breadcrumbs > li:nth-child(n + 2)::before {
  content: "/";
  display: block;
  font-size: 0.8em;
  color: #ccc;
}

.breadcrumbs a {
  position: relative;
  white-space: nowrap;
  color: inherit;
}

.breadcrumbs a::before {
  content: "";
  position: absolute;
  top: -0.1em;
  left: -0.5em;
  z-index: -1;
  width: calc(100% + 1em);
  height: calc(100% + 0.3em);
  border-radius: 5px;
  transition: background-color 0.2s;
}

.breadcrumbs a:hover::before {
  background-color: #eee;
}

.breadcrumbs > li:last-child > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* -----------------------------------------------------------------
LPに表示するダイアログ
外部サイトから流入した際、URLに特定のクエリが含まれていればこのダイアログを表示する
----------------------------------------------------------------- */

.dialog {
  display: none;
}

.dialog.active {
  display: block;
}

.dialog__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.dialog__content {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: calc(100% - 10px);
  max-width: 500px;
  padding: 35px 20px 20px;
  border-radius: 15px;
  background-color: #fff;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5em;
}
@media screen and (min-width: 520px) {
  .dialog__content {
    padding: 2.5rem 2rem 2rem;
  }
}

.dialog__content::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 150px;
  min-height: 35px;

  background-image: url("/assets/images/siiibo_wide_color.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 520px) {
  .dialog__content::before {
    max-width: 180px;
    min-height: 40px;
  }
}

.dialog__header {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (min-width: 520px) {
  .dialog__header {
    font-size: 1.4em;
  }
}

.dialog__description {
  line-height: 1.6;
  font-size: 14px;
}
@media screen and (min-width: 520px) {
  .dialog__description {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------------------
conversion-section
----------------------------------------------------------------- */

.conversion-section {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  background-color: var(--blue-2024);
}
@media screen and (min-width: 960px) {
  .conversion-section {
    padding: 100px 30px;
  }
}

.conversion-section > h4 {
  line-height: 1.3;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .conversion-section > h4 {
    font-size: 18px;
  }
}

/* ------------------------------
.bottomFixedBlock
------------------------------ */

.bottomFixedBlock {
  display: none;
}

@media screen and (max-width: 519px) {
  .bottomFixedBlock.transform {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 20px;
    display: grid;
    justify-items: center;
    background-color: hsla(0, 0%, 100%, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  }
}

/* ------------------------------
サイトフッター
------------------------------ */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  padding: 20px 20px 100px;
}
.site-footer > * {
  max-width: 1080px;
  width: 100%;
}
@media screen and (min-width: 414px) {
  .site-footer {
    padding-top: 30px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 520px) {
  .site-footer {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .site-footer {
    padding: 40px;
  }
}

@media screen and (min-width: 981px) {
  .siteMap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    column-gap: 0.5em;
  }
}

.siteMap .block {
  width: 100%;
  padding: 1.5em 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1em;
  column-gap: 5px;
  font-size: 13px;
  border-top: 1px solid #dcdcdc;
}
.siteMap .block:nth-child(4) {
  border-bottom: 1px solid #dcdcdc;
}
@media screen and (min-width: 981px) {
  .siteMap .block {
    padding: 0;
    grid-template-columns: 1fr;
    border: none;
  }
  .siteMap .block:nth-child(4) {
    border-bottom: none;
  }
}

.siteMap_snsArea {
  display: flex;
  column-gap: 10px;
  overflow: auto;
}
.siteMapSnsArea__snsBlock {
  width: 20px;
  height: 20px;
  background-size: contain;
}
.siteMapSnsArea__snsBlock.-facebook {
  background-image: url("/assets/images/snsicon_fb.png");
}
.siteMapSnsArea__snsBlock.-twitter {
  background-image: url("/assets/images/snsicon_tw.png");
}

.siteMap .block a[target="_blank"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
  font: var(--fa-font-solid);
  padding-left: 1em;
  color: #aaa;
  font-size: 10px;
}

/* これが外部リンクアイコンの高さを決めている */
.siteMap .block a {
  display: flex;
  align-items: baseline;
  font-feature-settings: "palt" on;
}

/*Siiibo証券株式会社　金融商品取引業者*/
.registration {
  padding-top: 32px;
  text-align: center;
  border-top: 1px solid #dcdcdc;
}
.registration p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

/* フッター */
.copyright {
  text-align: center;
  font-size: 10px;
}

.grecaptcha-badge {
  visibility: hidden;
}

body.inquiry-page .grecaptcha-badge {
  visibility: visible;
}

/* リンクボタン用のスタイル */
.link-button {
  width: 100%;
  max-width: 16.5em;
  padding: 0.6em 1em 0.6em 1.5em;
  display: grid;
  grid-template-columns: 1fr auto;
  place-items: center;
  column-gap: 0.5em;
  border-radius: 100px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: var(--blue-2024);
  transition: 0.2s;
  cursor: pointer;
}
.link-button:hover {
  background-color: var(--blue-2024-hover);
}
.link-button::after {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
  font: var(--fa-font-solid);
  font-size: 1em;
}
.link-button[target="_blank"]:not([href$=".pdf"])::after {
  content: "\f08e";
  font: var(--fa-font-solid);
}

/* largeボタン用のCSS */
.link-button.large {
  font-size: 18px;
}
@media screen and (min-width: 520px) {
  .link-button.large {
    font-size: 20px;
  }
}
/* hugeボタン用のCSS */
@media screen and (min-width: 350px) {
  .link-button.huge {
    font-size: 20px;
  }
}
@media screen and (min-width: 520px) {
  .link-button.huge {
    font-size: 24px;
  }
}

.link-button.back {
  padding: 0.7em 1.5em 0.7em 1em;
  grid-template-columns: auto 1fr;
}
.link-button.back::before {
  font-family: "Font Awesome 6 Free";
  content: "\f053";
  /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
  font: var(--fa-font-solid);
  font-size: 1em;
}
.link-button.back::after {
  display: none;
}
/* whiteのスタイリング */
.link-button.white {
  color: var(--blue-2024);
  background: #ffffff;
}
.link-button.white:hover {
  background-color: #ececec;
}

/* blackのスタイリング */
.link-button.black {
  color: var(--white);
  background-color: var(--dark-slate-gray);
}
.link-button.black:hover {
  background-color: #444;
}

/* badgeが付与されたときに機能するスタイリング */
.link-button .label {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.2em;
  align-items: center;
}
.link-button .badge {
  font-size: 0.85em;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 100px;
  padding: 0.1em 0.5em 0.2em;
  border: 1px solid var(--white);
}
