@charset "UTF-8";
/* FONT IMPORT "BIZ UDPGothic" "M PLUS 2" "EB Garamond" "Roboto Mono" "Outfit" "Noto Sans JP"*/
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=M+PLUS+2:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*BODY 設定*/
body {
  margin: 0;
  font-family: "BIZ UDPGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック";
  background-color: var(--c4_c_background);
  color: var(--c4_c_text);
}

/*スクロールバーデザイン*/
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--c4_c_background);
}

::-webkit-scrollbar-thumb {
  background-color: var(--c4_c_text);
  border-radius: 3px;
}

.c4_fonts_color-text {
  color: var(--c4_c_text);
}
.c4_fonts_family_note-sans, p {
  font-family: "Noto Sans JP";
}
.c4_fonts_family_smart {
  font-family: "BIZ UDPGothic";
}
.c4_fonts_family_modern {
  font-family: "Outfit";
}
.c4_fonts_family_regacy {
  font-family: "EB Garamond";
}
.c4_fonts_family_code {
  font-family: "Roboto Mono";
}

.fweight_300 {
  font-weight: 300;
}
.fweight_400 {
  font-weight: 400;
}
.fweight_500 {
  font-weight: 500;
}
.fweight_600 {
  font-weight: 600;
}
.fweight_700 {
  font-weight: 700;
}

.fsize_8 {
  font-size: 0.8rem;
}
.fsize_9 {
  font-size: 0.9rem;
}
.fsize_10 {
  font-size: 1rem;
}
.fsize_15 {
  font-size: 1.5rem;
}
.fsize_20 {
  font-size: 2rem;
}
.fsize_25 {
  font-size: 2.5rem;
}
.fsize_30 {
  font-size: 3rem;
}

.lheight_1 {
  line-height: 1;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

/*COLOR*/
:root {
  --c4_c_white: rgb(255,255,255);
  --c4_c_whitegray: rgb(248, 248, 248);
  --c4_c_lightgray:rgb(108 108 108);
  --c4_c_middlegray: rgb(30, 30, 30);
  --c4_c_darkgray: rgb(20, 20, 20);
  --c4_c_black: rgb(0, 0, 0);
}

:root {
  --c4_c_background: var(--c4_c_whitegray);
  --c4_c_text: var(--c4_c_black);
  --c4_c_shadow_mid: rgba(0, 0, 0, 0.1);
  --c4_c_shadow_lar: rgba(0, 0, 0, 0.1);
  --c4_c_ui_glassO: rgba(255, 255, 255, 0.75);
  --c4_c_ui_background: var(--c4_c_whitegray);
  --c4_c_ui_r_background: var(--c4_c_darkgray);
}

/*DARKMODE*/
@media (prefers-color-scheme: dark) {
  :root {
    --c4_c_background: var(--c4_c_darkgray);
    --c4_c_text: var(--c4_c_white);
    --c4_c_shadow_lar: rgba(255, 255, 255, 0.1);
    --c4_c_ui_glassO: rgba(40, 40, 40, 0.75);
    --c4_c_ui_background: var(--c4_c_middlegray);
    --c4_c_ui_r_background: var(--c4_c_middlegray);
  }
}
:root {
  --c4_c_account_app_size: calc(25% - calc(2.1rem / 4));
}

.c4_c_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1498;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.c4_c_backdrop.c4_state_headerBackdrop_on {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.c4_c_display {
  position: relative;
  min-width: 300px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.c4_c_contents {
  position: relative;
  width: 700px;
  max-width: 100%;
  min-height: 70vh;
  margin-block-start: calc(45px + 1.4rem);
}
.c4_c_header_base {
  position: fixed;
  width: 100%;
  min-width: 300px;
  top: 0;
  left: 0;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c4_c_header_container {
  position: relative;
  width: calc(100% - 1.4rem);
  height: 45px;
  margin-inline: auto;
  margin-block-start: 0.7rem;
  padding-inline: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.c4_c_header_left_logo {
  height: 40px;
}
.c4_c_header_right {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c4_c_header_right_toggle {
  position: relative;
  width: 30px;
  height: 30px;
  margin-inline-end: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 7px;
  cursor: pointer;
}
.c4_c_header_right_toggle span:nth-child(1) {
  position: relative;
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background-color: var(--c4_c_text);
  transition: 0.3s ease-in-out;
}
.c4_c_header_right_toggle span:nth-child(2) {
  position: relative;
  width: 20px;
  height: 3px;
  border-radius: 1px;
  background-color: var(--c4_c_text);
  transition: 0.3s ease-in-out;
}
.c4_c_header_right_toggle.c4_state_headerToggle_on span:nth-child(1) {
  width: 20px;
}
.c4_c_header_right_toggle.c4_state_headerToggle_on span:nth-child(2) {
  width: 30px;
}
.c4_c_header_account_iconarea {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
}
.c4_c_header_account_iconarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c4_c_menu {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c4_c_menu_nav {
  position: relative;
  font-size: 1.5rem;
  font-family: "Outfit";
  padding-inline: 0.7rem;
  border-radius: 0.5rem;
}
.c4_c_menu_apps {
  position: relative;
  width: calc(240px + 3rem);
}
.c4_c_menu_app {
  position: relative;
  width: 60px;
}
.c4_c_menu_app_iconarea {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 17px;
}
.c4_c_menu_app_label {
  font-size: 0.8rem;
  text-align: center;
}
.c4_c_account_profile_iconarea {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.c4_c_account_profile_iconarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c4_c_account_app {
  position: relative;
  width: var(--c4_c_account_app_size);
  display: block;
  text-align: center;
}
.c4_c_account_app_iconarea {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  overflow: hidden;
  margin-inline: auto;
}
.c4_c_account_app_iconarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.c4_w_base {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  width: 100%;
  min-width: 300px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.c4_w_container {
  position: relative;
  width: calc(100% - 1.4rem);
  height: 100%;
  margin-block-start: calc(45px + 1.4rem);
  margin-block-end: 0.7rem;
  margin-inline: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c4_w_window {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  z-index: 1450;
}
.c4_w_cansel {
  position: absolute;
  width: 100%;
  height: 100%;
}
.c4_wc_container {
  position: relative;
}

.c4_p_a {
  text-decoration: none;
}
.c4_p_ac {
  padding-block-start: 1rem;
}
.c4_p_cb {
  position: relative;
  max-width: 100%;
  padding: 1rem;
  margin-block-start: 1rem;
  background-color: var(--c4_c_ui_r_background);
  color: var(--c4_c_white);
  border-radius: 0.5rem;
}
.c4_p_cb_index {
  overflow-x: auto;
  /*スクロールバーデザイン*/
}
.c4_p_cb_index::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.c4_p_cb_index::-webkit-scrollbar-track {
  background-color: var(--c4_c_ui_r_background);
}
.c4_p_cb_index::-webkit-scrollbar-thumb {
  background-color: var(--c4_c_white);
  border-radius: 3px;
}
.c4_p_cb pre {
  resize: none;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono";
  font-size: 0.8rem;
  font-weight: 300;
  background-color: inherit;
  color: inherit;
  border-style: none;
  overflow-y: hidden;
}
.c4_p_cb pre:focus {
  outline: none;
}
.c4_p_b_normal {
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 1rem;
}
.c4_p_shelf {
  position: relative;
  max-width: 100%;
  margin-block-start: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

:root {
  --c4_e_ease: cubic-bezier(0.80, 0, 0.20, 1);
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.cursor-pointer {
  cursor: pointer;
}

.user-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.pointer-events-none {
  pointer-events: none;
}

.text-decoration-none {
  text-decoration: none;
}

.text-noWrap {
  white-space: nowrap;
}

/*POPUP*/
.c4_state_off {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.c4_state_on {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

/*視覚効果*/
.invert {
  filter: invert(100);
  -webkit-filter: invert(100);
}
@media (prefers-color-scheme: dark) {
  .invert {
    filter: none;
    -webkit-filter: none;
  }
}

/*ホバー効果*/
.zoom_x05 {
  transition: 0.3s;
  cursor: pointer;
}
.zoom_x05:hover {
  transform: scale(1.01, 1.01);
  transition: 0.3s;
}

.zoom_x1 {
  transition: 0.3s;
  cursor: pointer;
}
.zoom_x1:hover {
  transform: scale(1.04, 1.04);
  transition: 0.3s;
}

.zoom_x2 {
  transition: 0.3s;
  cursor: pointer;
}
.zoom_x2:hover {
  transform: scale(1.1, 1.1);
  transition: 0.3s;
}

.hover_light {
  transition: 0.3s;
  cursor: pointer;
}
.hover_light:hover {
  box-shadow: 0 0 15px var(--c4_c_shadow_lar);
  transition: 0.3s;
}

/*OVERFLOW*/
.overflow-auto {
  overflow: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/*WIDTH*/
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-100p {
  width: 100%;
}
.w-10 {
  width: 1rem;
}
.w-15 {
  width: 1.5rem;
}
.w-30 {
  width: 3rem;
}
.w-45 {
  width: 4.5rem;
}
.w-60 {
  width: 6rem;
}
.w-75 {
  width: 7.5rem;
}
.w-90 {
  width: 9rem;
}
.w-120 {
  width: 12rem;
}
.w-180 {
  width: 18rem;
}
.w-240 {
  width: 24rem;
}

/*HEIGHT*/
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-100p {
  height: 100%;
}
.h-10 {
  height: 1rem;
}
.h-15 {
  height: 1.5rem;
}
.h-30 {
  height: 3rem;
}
.h-45 {
  height: 4.5rem;
}
.h-60 {
  height: 6rem;
}
.h-75 {
  height: 7.5rem;
}
.h-90 {
  height: 9rem;
}
.h-120 {
  height: 12rem;
}
.h-180 {
  height: 18rem;
}
.h-240 {
  height: 24rem;
}

.min_w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.min_w-100p {
  min-width: 100%;
}
.min_w-10 {
  min-width: 1rem;
}
.min_w-15 {
  min-width: 1.5rem;
}
.min_w-30 {
  min-width: 3rem;
}
.min_w-45 {
  min-width: 4.5rem;
}
.min_w-60 {
  min-width: 6rem;
}
.min_w-75 {
  min-width: 7.5rem;
}
.min_w-90 {
  min-width: 9rem;
}
.min_w-120 {
  min-width: 12rem;
}
.min_w-150 {
  min-width: 15rem;
}
.min_w-180 {
  min-width: 18rem;
}
.min_w-240 {
  min-width: 24rem;
}
.min_h-fit {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.min_h-100p {
  min-height: 100%;
}
.min_h-10 {
  min-height: 1rem;
}
.min_h-15 {
  min-height: 1.5rem;
}
.min_h-30 {
  min-height: 3rem;
}
.min_h-45 {
  min-height: 4.5rem;
}
.min_h-60 {
  min-height: 6rem;
}
.min_h-75 {
  min-height: 7.5rem;
}
.min_h-90 {
  min-height: 9rem;
}
.min_h-120 {
  min-height: 12rem;
}
.min_h-180 {
  min-height: 18rem;
}
.min_h-240 {
  min-height: 24rem;
}

.max_w-fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.max_w-100p {
  max-width: 100%;
}
.max_w-10 {
  max-width: 1rem;
}
.max_w-15 {
  max-width: 1.5rem;
}
.max_w-30 {
  max-width: 3rem;
}
.max_w-45 {
  max-width: 4.5rem;
}
.max_w-60 {
  max-width: 6rem;
}
.max_w-75 {
  max-width: 7.5rem;
}
.max_w-90 {
  max-width: 9rem;
}
.max_w-120 {
  max-width: 12rem;
}
.max_w-180 {
  max-width: 18rem;
}
.max_w-240 {
  max-width: 24rem;
}
.max_h-fit {
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.max_h-100p {
  max-height: 100%;
}
.max_h-10 {
  max-height: 1rem;
}
.max_h-15 {
  max-height: 1.5rem;
}
.max_h-30 {
  max-height: 3rem;
}
.max_h-45 {
  max-height: 4.5rem;
}
.max_h-60 {
  max-height: 6rem;
}
.max_h-75 {
  max-height: 7.5rem;
}
.max_h-90 {
  max-height: 9rem;
}
.max_h-120 {
  max-height: 12rem;
}
.max_h-180 {
  max-height: 18rem;
}
.max_h-240 {
  max-height: 24rem;
}

/*WIDTH HEIGHT*/
.wh-fit {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.wh-10 {
  width: 1rem;
  height: 1rem;
}
.wh-15 {
  width: 1.5rem;
  height: 1.5rem;
}
.wh-30 {
  width: 3rem;
  height: 3rem;
}
.wh-45 {
  width: 4.5rem;
  height: 4.5rem;
}
.wh-60 {
  width: 6rem;
  height: 6rem;
}
.wh-75 {
  width: 7.5rem;
  height: 7.5rem;
}
.wh-90 {
  width: 9rem;
  height: 9rem;
}
.wh-120 {
  width: 12rem;
  height: 12rem;
}
.wh-180 {
  width: 18rem;
  height: 18rem;
}
.wh-240 {
  width: 24rem;
  height: 24rem;
}

/*FLEX*/
.flex_column {
  position: relative;
  display: flex;
  flex-direction: column;
}

.flex_row {
  position: relative;
  display: flex;
  flex-direction: row;
}

.flex_column_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.flex_row_wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_align_center {
  align-items: center;
}

.flex_align_start {
  align-items: start;
}

.flex_align_end {
  align-items: end;
}

.flex_justify_center {
  justify-content: center;
}

.flex_justify_start {
  justify-content: start;
}

.flex_justify_end {
  justify-content: end;
}

.flex_anti_shrink {
  flex-shrink: 0;
}

/*GAP*/
.gap3 {
  gap: 0.3rem;
}

.gap5 {
  gap: 0.5rem;
}

.gap7 {
  gap: 0.7rem;
}

.gap10 {
  gap: 1rem;
}

.gap15 {
  gap: 1.5rem;
}

.gap30 {
  gap: 3rem;
}

/*デザイン*/
.iconarea {
  overflow: hidden;
}
.iconarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (prefers-color-scheme: light) {
  .outline, .apperaInputText {
    outline: none;
  }
}
@media (prefers-color-scheme: dark) {
  .outline, .apperaInputText {
    outline: 1px solid var(--c4_c_lightgray);
  }
}

.apperaGlass, .apperaGlass_hover {
  box-shadow: 0 0 1rem var(--c4_c_shadow_mid);
  border-radius: 0.8rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: var(--c4_c_ui_glassO);
}

.apperaGlass_hover {
  transition: 0.2s;
}
@media (prefers-color-scheme: light) {
  .apperaGlass_hover:hover {
    box-shadow: 0 0 5px var(--c4_c_shadow_mid);
  }
}
.apperaGlass-clean {
  box-shadow: 0 0 10px var(--c4_c_shadow_mid);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.apperaShadow-light {
  box-shadow: 0 0 10px var(--c4_c_shadow_mid);
}

.apperaShadow-strong {
  box-shadow: 0 0 20px var(--c4_c_shadow_mid);
}

.apperaZoom-light {
  transition: 0.3s;
  cursor: pointer;
}
.apperaZoom-light:hover {
  transform: scale(1.02, 1.02);
}

.apperaZoom-strong {
  transition: 0.3s;
  cursor: pointer;
}
.apperaZoom-strong:hover {
  transform: scale(1.1, 1.1);
}

.apperaInput {
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: none;
}
.apperaInputText {
  font-size: 0.8rem;
  line-height: 1;
  color: var(--c4_c_text);
}
.apperaInputFile {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--c4_c_text);
}

/*PADDING*/
.pad5 {
  padding: 0.5rem;
}

.pad10 {
  padding: 1rem;
}

.pad15 {
  padding: 1.5rem;
}

.pad3_b {
  padding-block: 0.3rem;
}

.pad3_b_s {
  padding-block-start: 0.3rem;
}

.pad3_b_e {
  padding-block-end: 0.3rem;
}

.pad3_i {
  padding-inline: 0.3rem;
}

.pad3_i_s {
  padding-inline-start: 0.3rem;
}

.pad3_i_e {
  padding-inline-end: 0.3rem;
}

.pad5_b {
  padding-block: 0.5rem;
}

.pad5_b_s {
  padding-block-start: 0.5rem;
}

.pad5_b_e {
  padding-block-end: 0.5rem;
}

.pad5_i {
  padding-inline: 0.5rem;
}

.pad5_i_s {
  padding-inline-start: 0.5rem;
}

.pad5_i_e {
  padding-inline-end: 0.5rem;
}

.pad7_b {
  padding-block: 0.7rem;
}

.pad7_b_s {
  padding-block-start: 0.7rem;
}

.pad7_b_e {
  padding-block-end: 0.7rem;
}

.pad7_i {
  padding-inline: 0.7rem;
}

.pad7_i_s {
  padding-inline-start: 0.7rem;
}

.pad7_i_e {
  padding-inline-end: 0.7rem;
}

.pad10_b {
  padding-block: 1rem;
}

.pad10_b_s {
  padding-block-start: 1rem;
}

.pad10_b_e {
  padding-block-end: 1rem;
}

.pad10_i {
  padding-inline: 1rem;
}

.pad10_i_s {
  padding-inline-start: 1rem;
}

.pad10_i_e {
  padding-inline-end: 1rem;
}

.pad15_b {
  padding-block: 1.5rem;
}

.pad15_b_s {
  padding-block-start: 1.5rem;
}

.pad15_b_e {
  padding-block-end: 1.5rem;
}

.pad15_i {
  padding-inline: 1.5rem;
}

.pad15_i_s {
  padding-inline-start: 1.5rem;
}

.pad15_i_e {
  padding-inline-end: 1.5rem;
}

/*MARGIN*/
.mar5 {
  margin: 0.5rem;
}

.mar10 {
  margin: 1rem;
}

.mar15 {
  margin: 1.5rem;
}

.mar3_b {
  margin-block: 0.3rem;
}

.mar3_b_s {
  margin-block-start: 0.3rem;
}

.mar3_b_e {
  margin-block-end: 0.3rem;
}

.mar3_i {
  margin-inline: 0.3rem;
}

.mar3_i_s {
  margin-inline-start: 0.3rem;
}

.mar3_i_e {
  margin-inline-end: 0.3rem;
}

.mar5_b {
  margin-block: 0.5rem;
}

.mar5_b_s {
  margin-block-start: 0.5rem;
}

.mar5_b_e {
  margin-block-end: 0.5rem;
}

.mar5_i {
  margin-inline: 0.5rem;
}

.mar5_i_s {
  margin-inline-start: 0.5rem;
}

.mar5_i_e {
  margin-inline-end: 0.5rem;
}

.mar7_b {
  margin-block: 0.7rem;
}

.mar7_b_s {
  margin-block-start: 0.7rem;
}

.mar7_b_e {
  margin-block-end: 0.7rem;
}

.mar7_i {
  margin-inline: 0.7rem;
}

.mar7_i_s {
  margin-inline-start: 0.7rem;
}

.mar7_i_e {
  margin-inline-end: 0.7rem;
}

.mar10_b {
  margin-block: 1rem;
}

.mar10_b_s {
  margin-block-start: 1rem;
}

.mar10_b_e {
  margin-block-end: 1rem;
}

.mar10_i {
  margin-inline: 1rem;
}

.mar10_i_s {
  margin-inline-start: 1rem;
}

.mar10_i_e {
  margin-inline-end: 1rem;
}

.mar15_b {
  margin-block: 1.5rem;
}

.mar15_b_s {
  margin-block-start: 1.5rem;
}

.mar15_b_e {
  margin-block-end: 1.5rem;
}

.mar15_i {
  margin-inline: 1.5rem;
}

.mar15_i_s {
  margin-inline-start: 1.5rem;
}

.mar15_i_e {
  margin-inline-end: 1.5rem;
}

/*BORDER REDIUS*/
.br5 {
  border-radius: 0.5rem;
}

.br7 {
  border-radius: 0.7rem;
}

.br10 {
  border-radius: 1rem;
}/*# sourceMappingURL=style.css.map */