@charset "UTF-8";
/* --------------------------------------------------
  Template by espace（https://espace.monbalcon.net/）
  Copyright: 2020 espace.

  利用規約を遵守の上、ご利用ください。
  二次配布、販売は禁止しています。
  --------------------------------------------------*/

/* ----- ▼ CSS変数設定 ここから ▼ ----- */
@import url("https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&family=Zen+Maru+Gothic:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
:root {
    --text-color: var(--theme-color-mono-lv3);
    --bg-color-1: var(--theme-color-mono-lv1);
    --bg-color-2: var(--theme-color-main-lv1);
    --required-color: #615ac5;
    --theme-color-mono-lv1: #fff;
    --theme-color-mono-lv2: #dddddd;
    --theme-color-mono-lv3: #000;
    --theme-color-main-lv1: #e2f6e6;
    --theme-color-main-lv2: #bde1c2;
    --theme-color-main-lv3: #7faa84;
    --theme-color-link-lv1: #edcdd0;
    --theme-color-link-lv2: #c55a63;
    --animation: 0.5s;
    --title-width: 200px;
    --title-outline: 3px;
    --font-family-basic: "Zen Maru Gothic", Yu Gothic, Meiryo, Hiragino Kaku Gothic ProN, sans-serif;
    --font-family-menu: "Reddit Mono", Yu Mincho, YuMincho, Hiragino Mincho Pro, serif;
    --font-family-icon: Material Symbols Outlined;
    --font-size-basic: 1.6rem;
    --line-height-basic: 2.65rem;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: var(--theme-color-mono-lv3);
        --bg-color-1: var(--theme-color-mono-lv1);
        --bg-color-2: var(--theme-color-main-lv1);
        --required-color: #615ac5;
        --theme-color-mono-lv1: #171817;
        --theme-color-mono-lv2: #555a55;
        --theme-color-mono-lv3: #acacac;
        --theme-color-main-lv1: #506452;
        --theme-color-main-lv2: #447048;
        --theme-color-main-lv3: #e2f6e6;
        --theme-color-link-lv1: #927679;
        --theme-color-link-lv2: #c55a63;
    }
}
/* ----- ▲ CSS変数設定 ここまで ▲ ----- */

/* ----- ▼ リセット　ここから（基本的には触らない方が良い部分） ▼ ----- */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

/*
  Add by espace
*/
* {
    word-break: normal;
}

:focus {
    outline: none;
}

html {
    font-size: 62.5%;
}

body {
    word-wrap: break-word;
}

picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    margin-block: 0;
    margin-inline: auto;
}

a,
button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    vertical-align: middle;
    max-inline-size: 100%;
}

p,
dl,
ul,
ol,
form,
blockquote,
.box,
.scrollbox {
    margin-block: 2.5rem;
    margin-inline: auto;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

main {
    hanging-punctuation: allow-end;
}
/* ----- ▲ リセット　ここまで（基本的には触らない方が良い部分） ▲ ----- */

/* ----- ▼ PCレイアウト　ここから ▼ ----- */
/* 基本 */
html {
    background: var(--bg-color);
}

body,
button,
input,
textarea,
select {
    font: 500 var(--font-size-basic) / var(--line-height-basic) var(--font-family-basic);
    color: var(--text-color);
}

html {
    background: var(--bg-color-2);
}

body {
    position: relative;
    height: 100%;
}
body::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color-1);
    mask: url("../img/layout/bg.png") top center;
    -webkit-mask: url("../img/layout/bg.png") top center;
    z-index: -1;
}
header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    max-width: 100rem;
    margin-inline: auto;
    height: calc(var(--title-width) + 8rem);
}
header h1 {
    position: absolute;
    top: 6rem;
    left: calc((100% - var(--title-width)) / 2);
    width: var(--title-width);
    aspect-ratio: 10.6/7;
}
header h1 a {
    display: block;
    height: 100%;
    background: var(--bg-color-1);
    color: transparent;
    border-radius: calc(var(--title-outline) * 3);
    transition: transform var(--animation);
}
header h1 a::before {
    content: "";
    position: absolute;
    top: var(--title-outline);
    left: var(--title-outline);
    display: block;
    width: calc(100% - var(--title-outline) * 2);
    height: calc(100% - var(--title-outline) * 2);
    background: var(--text-color);
    mask: url("../img/layout/logo.png") center/contain no-repeat;
    -webkit-mask: url("../img/layout/logo.png") center/contain no-repeat;
}
header h1 a:hover {
    transform: scale(1.15);
}

main {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 100rem;
    margin-inline: auto;
    padding-block-start: 4rem;
}
main > article:not(:has(.ebs-base)) {
    padding: 6rem;
    background: var(--bg-color-1);
    border: 2px solid var(--text-color);
    border-radius: 6rem;
}
main > article:not(:has(.ebs-base)) > p:first-child,
main > article:not(:has(.ebs-base)) > dl:first-child,
main > article:not(:has(.ebs-base)) > ul:first-child,
main > article:not(:has(.ebs-base)) > ol:first-child,
main > article:not(:has(.ebs-base)) > form:first-child,
main > article:not(:has(.ebs-base)) > blockquote:first-child,
main > article:not(:has(.ebs-base)) > .box:first-child,
main > article:not(:has(.ebs-base)) > .scrollbox:first-child,
main > article:not(:has(.ebs-base)) > h2:first-child,
main > article:not(:has(.ebs-base)) > h3:first-child,
main > article:not(:has(.ebs-base)) > h4:first-child,
main > article:not(:has(.ebs-base)) > h5:first-child,
main > article:not(:has(.ebs-base)) > h6:first-child {
    margin-block-start: 0;
}
main > article:not(:has(.ebs-base)) > p:last-child,
main > article:not(:has(.ebs-base)) > dl:last-child,
main > article:not(:has(.ebs-base)) > ul:last-child,
main > article:not(:has(.ebs-base)) > ol:last-child,
main > article:not(:has(.ebs-base)) > form:last-child,
main > article:not(:has(.ebs-base)) > blockquote:last-child,
main > article:not(:has(.ebs-base)) > .box:last-child,
main > article:not(:has(.ebs-base)) > .scrollbox:last-child,
main > article:not(:has(.ebs-base)) > h2:last-child,
main > article:not(:has(.ebs-base)) > h3:last-child,
main > article:not(:has(.ebs-base)) > h4:last-child,
main > article:not(:has(.ebs-base)) > h5:last-child,
main > article:not(:has(.ebs-base)) > h6:last-child {
    margin-block-end: 0;
}
main > article:not(:has(.ebs-base)) > * > p:first-child,
main > article:not(:has(.ebs-base)) > * > dl:first-child,
main > article:not(:has(.ebs-base)) > * > ul:first-child,
main > article:not(:has(.ebs-base)) > * > ol:first-child,
main > article:not(:has(.ebs-base)) > * > form:first-child,
main > article:not(:has(.ebs-base)) > * > blockquote:first-child,
main > article:not(:has(.ebs-base)) > * > .box:first-child,
main > article:not(:has(.ebs-base)) > * > .scrollbox:first-child,
main > article:not(:has(.ebs-base)) > * > h2:first-child,
main > article:not(:has(.ebs-base)) > * > h3:first-child,
main > article:not(:has(.ebs-base)) > * > h4:first-child,
main > article:not(:has(.ebs-base)) > * > h5:first-child,
main > article:not(:has(.ebs-base)) > * > h6:first-child {
    margin-block-start: 0;
}
main > article:not(:has(.ebs-base)) > * > p:last-child,
main > article:not(:has(.ebs-base)) > * > dl:last-child,
main > article:not(:has(.ebs-base)) > * > ul:last-child,
main > article:not(:has(.ebs-base)) > * > ol:last-child,
main > article:not(:has(.ebs-base)) > * > form:last-child,
main > article:not(:has(.ebs-base)) > * > blockquote:last-child,
main > article:not(:has(.ebs-base)) > * > .box:last-child,
main > article:not(:has(.ebs-base)) > * > .scrollbox:last-child,
main > article:not(:has(.ebs-base)) > * > h2:last-child,
main > article:not(:has(.ebs-base)) > * > h3:last-child,
main > article:not(:has(.ebs-base)) > * > h4:last-child,
main > article:not(:has(.ebs-base)) > * > h5:last-child,
main > article:not(:has(.ebs-base)) > * > h6:last-child {
    margin-block-end: 0;
}
main > article > .ebs-base > * {
    background: var(--bg-color-1);
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    margin-block-start: 8rem;
    padding-block-start: 2rem;
    margin-inline: auto;
    aspect-ratio: 3/1;
    text-align: center;
    border-radius: 50%/100% 100% 0 0;
    background: var(--text-color);
    color: var(--theme-color-mono-lv1);
}
footer a {
    color: var(--theme-color-mono-lv1);
}

/* メニュー */
.menu:not(#spotlight) {
    position: relative;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    height: 4rem;
    letter-spacing: 0.2rem;
}
.menu:not(#spotlight)::-webkit-scrollbar {
    block-size: 0.6rem;
}
.menu:not(#spotlight)::-webkit-scrollbar-track {
    background-color: transparent;
}
.menu:not(#spotlight)::-webkit-scrollbar-thumb {
    background-color: var(--theme-color-mono-lv2);
    border-radius: 1rem;
}
.menu:not(#spotlight) ul {
    display: flex;
    gap: 4rem;
}
.menu:not(#spotlight) ul li {
    display: block;
}
.menu:not(#spotlight) ul li a,
.menu:not(#spotlight) ul li button {
    position: relative;
    display: block;
    padding-inline: 1.2rem 1rem;
    color: var(--text-color);
    background: none;
    border: 0;
    border-radius: 2rem;
    overflow: hidden;
    z-index: 1;
    transition: color var(--animation);
}
.menu:not(#spotlight) ul li a::before,
.menu:not(#spotlight) ul li button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    border-radius: 2rem;
    transition: transform var(--animation), background var(--animation);
    transform: scale(0);
    z-index: -1;
}
.menu:not(#spotlight) ul li a:hover,
.menu:not(#spotlight) ul li button:hover {
    color: var(--theme-color-mono-lv1);
    transform: none;
}
.menu:not(#spotlight) ul li a:hover::before,
.menu:not(#spotlight) ul li button:hover::before {
    transform: scale(1);
}
.menu:not(#spotlight) ul li a[data-target-menu]::after,
.menu:not(#spotlight) ul li button[data-target-menu]::after {
    content: "\e313";
    font-family: var(--font-family-icon);
    vertical-align: middle;
}

.sub-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 100rem;
    margin-top: -14rem;
    margin-inline: auto;
    padding: 2rem;
    border-radius: 20rem;
    background: var(--theme-color-mono-lv3);
    z-index: 69;
    transform: translateY(-8rem);
    opacity: 0;
    pointer-events: none;
    transition: margin-top var(--animation), transform var(--animation), opacity var(--animation);
}
.sub-menu::before {
    content: "submenu";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    padding: 1rem;
    aspect-ratio: 1/1;
    background: var(--theme-color-main-lv3);
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    overflow-wrap: anywhere;
}
.sub-menu[data-label]::before {
    content: attr(data-label);
}
.sub-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 3rem;
}
.sub-menu ul li {
    display: block;
}
.sub-menu ul li a {
    display: block;
    color: var(--bg-color-1);
}
.sub-menu.open {
    margin-top: 0;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.fixed-menu {
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    z-index: 60;
}
.fixed-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.fixed-menu ul li.next::before {
    content: none;
}
.fixed-menu ul li.next a:hover::before,
.fixed-menu
    ul
    li.next
    button:not(.env-button):not(#envReset):not([data-target-menu]):hover::before {
    transform: translateX(0.4rem);
}
.fixed-menu ul li.prev a:hover::before,
.fixed-menu
    ul
    li.prev
    button:not(.env-button):not(#envReset):not([data-target-menu]):hover::before {
    transform: translateX(-0.4rem);
}
.fixed-menu ul li a,
.fixed-menu ul li button:not(.env-button):not(#envReset):not([data-target-menu]),
.fixed-menu ul li span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    aspect-ratio: 1/1;
    margin: 0;
    padding: 0;
    background: var(--text-color);
    border: 0;
    border-radius: 50%;
    color: var(--theme-color-mono-lv1);
}
.fixed-menu ul li a::before,
.fixed-menu ul li button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li span::before {
    font: 400 2rem/1 var(--font-family-icon);
}
.fixed-menu ul li a:hover {
    transform: none !important;
}
.fixed-menu ul li button:not(.env-button):not(#envReset):not([data-target-menu])::before {
    position: relative;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    background: none !important;
}
.fixed-menu ul li a::before,
.fixed-menu ul li button:not(.env-button):not(#envReset):not([data-target-menu])::before {
    transition: transform var(--animation) !important;
}
.fixed-menu ul li a:hover::before,
.fixed-menu ul li button:not(.env-button):not(#envReset):not([data-target-menu]):hover::before {
    transform: translateY(-0.4rem);
}
.fixed-menu ul li span {
    opacity: 0.5;
}
.fixed-menu ul li.pagetop a::before,
.fixed-menu ul li.pagetop button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.pagetop span::before {
    content: "\eacf";
}
.fixed-menu ul li.prev a::before,
.fixed-menu ul li.prev button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.prev span::before {
    content: "\e314";
}
.fixed-menu ul li.next a::before,
.fixed-menu ul li.next button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.next span::before {
    content: "\e315";
}
.fixed-menu ul li.home a::before,
.fixed-menu ul li.home button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.home span::before {
    content: "\e88a";
}
.fixed-menu ul li.toc a::before,
.fixed-menu ul li.toc button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.toc span::before {
    content: "\ea19";
}
.fixed-menu ul li.characters a::before,
.fixed-menu ul li.characters button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.characters span::before {
    content: "\e7ef";
}
.fixed-menu ul li.images a::before,
.fixed-menu ul li.images button:not(.env-button):not(#envReset):not([data-target-menu])::before,
.fixed-menu ul li.images span::before {
    content: "\e413";
}

/* 見出し */
h2,
h3,
h4,
h5,
h6 {
    margin-block: 6rem;
}

h2 {
    font-size: 3rem;
    text-align: center;
}

h3,
h4,
h5,
h6 {
    font-size: 1.8rem;
}

h3 {
    text-align: center;
}
h3 span {
    position: relative;
    padding-block-end: 2rem;
}
h3 span::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    display: block;
    block-size: 0.4rem;
    inline-size: 100%;
    border-radius: 0.4rem;
    background: var(--text-color);
}

h4 span,
h5 span,
h6 span {
    display: inline-block;
    padding-inline: 0.6rem;
}

h4 span,
h5 span {
    border: 0.3rem solid var(--text-color);
    border-radius: 2rem;
}

h4 span {
    background: var(--text-color);
    color: var(--bg-color-1);
}

/* リスト */
ul.no-style,
ol.no-style {
    padding: 0;
    list-style: none;
}
ul.column,
ol.column {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
ul.column > *,
ol.column > * {
    margin: 0 !important;
}
ul.column.gap,
ol.column.gap {
    gap: 0.5rem 2.5rem;
}
ul.column.column-2 > *,
ol.column.column-2 > * {
    inline-size: calc((100% - 2.5rem) / 2) !important;
}
ul.column.column-3 > *,
ol.column.column-3 > * {
    inline-size: calc((100% - 2.5rem) / 3) !important;
}
ul .description,
ol .description {
    margin-inline-start: 1rem;
}
ul .description::before,
ol .description::before {
    content: "…";
    margin-inline-end: 1rem;
}
ul .description:has(ul.small),
ul .description:has(ol.small),
ol .description:has(ul.small),
ol .description:has(ol.small) {
    display: flex;
    justify-content: flex-start;
}
ul .description:has(ul.small)::before,
ul .description:has(ol.small)::before,
ol .description:has(ul.small)::before,
ol .description:has(ol.small)::before {
    content: "└";
}
ul .description > ul.small,
ol .description > ul.small {
    display: inline-block;
    margin-block: 0;
    margin-inline: 0;
}

dl dd {
    margin-block-end: 1.25rem;
    padding-inline-start: 5rem;
    padding-block-end: 1.25rem;
}
dl dd:last-of-type {
    padding-block-end: 0 !important;
    border-block-end: 0 !important;
}
dl.inline {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 1.25rem 0;
}
dl.inline dt,
dl.inline dd {
    margin-block-end: 0;
    padding-block-end: 1.25rem;
}
dl.inline dt:last-of-type,
dl.inline dd:last-of-type {
    padding-block-end: 0 !important;
    border-block-end: 0 !important;
}
dl.inline dd {
    padding-inline-start: 0;
}

ul li.next {
    list-style: none;
}
ul li.next::before {
    content: "→";
    margin-inline-end: 0.4rem;
    font-size: 120%;
}
ul.small {
    list-style: none;
    padding-inline-start: 0;
}
ul.small li {
    display: inline;
}
ul.small li::before {
    color: var(--theme-color-main-lv2);
}
ul.small li:not(:first-child):not(.next)::before {
    content: ":";
    margin-block: 0;
    margin-inline: 0.2rem 0.4rem;
    font-weight: 900;
}
ul.small li.next::before {
    margin-block: 0;
    margin-inline: 0.2rem 0.4rem;
}

dl dd {
    border-block-end: 1px solid var(--theme-color-mono-lv2);
}
dl.inline dt,
dl.inline dd {
    border-block-end: 1px solid var(--theme-color-mono-lv2);
}
dl.border {
    padding-block: 1.4rem;
    padding: 2rem;
    border-radius: 3rem;
    border: 0.3rem solid var(--theme-color-mono-lv2);
}
dl.border > *:last-child {
    margin-block-end: 0;
}

/* フォーム */
.required::after {
    content: "*";
    color: var(--required-color);
}

.form-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-block > dl:first-child {
    margin-block-start: 0;
}
.form-block > dl:last-of-type {
    margin-block-end: 0;
}
.form-block dl dt,
.form-block dl dd {
    margin: 0;
    padding: 0;
    border-block-end: 0;
}
.form-block dl dd > * {
    margin: 0;
}
.form-block dl.inline {
    gap: 1.25rem 0;
}
.form-block > *,
.form-block dl dd > * {
    inline-size: 100%;
}

input,
textarea,
select {
    border-radius: 0.8rem;
    border: 0.3rem solid var(--theme-color-mono-lv2);
    background: var(--bg-color-1);
    transition: border-color var(--animation);
}
input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    border-color: var(--theme-color-link-lv1);
}

button:not(.env-button):not(#envReset):not([data-target-menu]),
input[type="submit"],
input[type="button"] {
    padding-block: 0;
    padding-inline: 0.8rem;
    font-weight: bold;
    border: 0.3rem solid var(--theme-color-link-lv2);
    border-radius: 2rem;
    background: transparent;
    color: var(--theme-color-link-lv2);
    overflow: hidden;
    z-index: 1;
}
button:not(.env-button):not(#envReset):not([data-target-menu]):disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
    filter: grayscale(0.8);
}
button:not(.env-button):not(#envReset):not([data-target-menu]):not(:disabled),
input[type="submit"]:not(:disabled),
input[type="button"]:not(:disabled) {
    position: relative;
    transition: color var(--animation);
}
button:not(.env-button):not(#envReset):not([data-target-menu]):not(:disabled)::before,
input[type="submit"]:not(:disabled)::before,
input[type="button"]:not(:disabled)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--theme-color-link-lv2);
    border-radius: 0;
    transition: left var(--animation) ease-out, border-radius var(--animation) ease-out;
    z-index: -1;
}
button:not(.env-button):not(#envReset):not([data-target-menu]):not(:disabled):hover,
input[type="submit"]:not(:disabled):hover,
input[type="button"]:not(:disabled):hover {
    color: var(--theme-color-mono-lv1);
}
button:not(.env-button):not(#envReset):not([data-target-menu]):not(:disabled):hover::before,
input[type="submit"]:not(:disabled):hover::before,
input[type="button"]:not(:disabled):hover::before {
    left: 0%;
    border-radius: 0 2rem 2rem 0;
}

/* リンク */
a.arrow::before,
span.arrow::before {
    content: "\e315";
    margin-inline-end: 0.4rem;
    font-family: var(--font-family-icon);
    vertical-align: middle;
}
a.btn,
span.btn {
    position: relative;
    display: inline-block;
    padding-inline: 0.8rem;
    font-weight: bold;
    border: 0.3rem solid var(--theme-color-link-lv2);
    border-radius: 2rem;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}
a.btn.btn-block,
span.btn.btn-block {
    display: block;
    margin-block: 0.6rem;
    text-align: center;
}
a.btn.btn-arrow::after,
span.btn.btn-arrow::after {
    content: "\e315";
    margin-inline-start: 0.4rem;
    font-family: var(--font-family-icon);
    vertical-align: middle;
}
a.btn.btn-arrow.btn-block,
span.btn.btn-arrow.btn-block {
    position: relative;
    padding-inline-end: 2rem;
}
a.btn.btn-arrow.btn-block::after,
span.btn.btn-arrow.btn-block::after {
    position: absolute;
    right: 0.6rem;
}

a {
    display: inline-block;
    color: var(--theme-color-link-lv2);
}
a:not(.btn):not(.btn-block):not([data-lightbox]):not(.spotlight) {
    transition: transform var(--animation);
}
a:not(.btn):not(.btn-block):not([data-lightbox]):not(.spotlight):hover {
    transform: translateY(-0.4rem);
}
a.btn,
a.btn-block {
    transition: color var(--animation);
}
a.btn::before,
a.btn-block::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 200%;
    background: var(--theme-color-link-lv2);
    transition: top var(--animation) ease-in;
    transform-origin: top center;
    z-index: -1;
}
a.btn:hover,
a.btn-block:hover {
    color: var(--theme-color-mono-lv1);
}
a.btn:hover::before,
a.btn-block:hover::before {
    top: 0%;
    animation: animationLink ease-in var(--animation);
}

@keyframes animationLink {
    0% {
        transform: rotate(-1deg);
    }
    40% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
span.btn,
span.btn-block {
    filter: grayscale(1);
    opacity: 0.5;
}

/* 装飾 */
b,
em,
strong {
    font-weight: bold;
}

em {
    position: relative;
    font-style: normal;
    z-index: 1;
}
em::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    display: block;
    inline-size: 100%;
    block-size: 50%;
    background: var(--theme-color-main-lv2);
    z-index: -1;
}

strong {
    background: var(--theme-color-main-lv2);
}

hr {
    margin-block: 6rem;
    border: 0;
}
hr::before {
    content: "";
    display: block;
    inline-size: 20vw;
    max-inline-size: 16rem;
    block-size: 0.4rem;
    margin-inline: auto;
    background: var(--theme-color-mono-lv2);
}

.box {
    padding: 2rem;
    border-radius: 3rem;
    border: 0.3rem solid var(--theme-color-mono-lv2);
}
.box > *:first-child {
    margin-block-start: 0;
    padding-block-start: 0;
}
.box > *:last-child {
    margin-block-end: 0;
    padding-block-end: 0;
}

.dir + .dir {
    margin-block-start: 4rem;
}

.dir .dir-image {
    text-align: center;
}
.dir .dir-image img {
    max-width: 100%;
}
.dir .dir-image.dir-image-sm,
.dir .dir-image.dir-image-md,
.dir .dir-image.dir-image-lg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.dir .dir-image.dir-image-sm > * {
    width: 25%;
}
.dir .dir-image.dir-image-md > * {
    width: 50%;
}
.dir ul.dir-info {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    font-size: small;
    list-style: none;
}
.dir ul.dir-info li::before {
    margin-inline-end: 0.4rem;
    font: 400 1.6rem/1 var(--font-family-icon);
    vertical-align: middle;
}
.dir ul.dir-info li.date::before {
    content: "\ebcc";
}

details {
    margin-block: 2.5rem;
}
details summary {
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--theme-color-link-lv2);
    transition: background var(--animation);
    cursor: pointer;
}
details summary.btn {
    justify-content: space-between;
    padding-inline: 0.8rem;
    background: var(--theme-color-mono-lv1);
    border: 0.3rem solid var(--theme-color-mono-lv2);
    border-radius: 2rem;
    font-weight: bold;
    text-align: left;
}
details summary.btn:hover {
    background: var(--theme-color-link-lv1);
    border-color: var(--theme-color-link-lv1);
}
details summary::after {
    content: "\e313";
    display: block;
    font-family: var(--font-family-icon);
    font-size: 2.4rem;
    font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 48;
    color: var(--theme-color-link-lv2);
    transition: transform var(--animation);
}
details summary::-webkit-details-marker {
    display: none;
}
details > summary + div {
    padding-block-start: 0;
}
details > summary + div > *:first-child {
    margin-block-start: 0;
}
details > *:not(summary) {
    transition: padding-block-start var(--animation), padding-block-end var(--animation);
}
details > *:not(summary):last-child {
    padding-block-end: 0;
}
details > *:not(summary):last-child > *:last-child {
    margin-block-end: 0;
}
details[open] > summary::after {
    transform: rotate(180deg);
}
details[open] > summary + div {
    padding-block-start: 2rem;
}
details[open] > *:not(summary):last-child {
    padding-block-end: 3rem;
}

.scrollbox {
    overflow-y: auto;
    max-block-size: 14rem;
}
.scrollbox::-webkit-scrollbar {
    inline-size: 0.6rem;
}
.scrollbox::-webkit-scrollbar-track {
    background-color: transparent;
}
.scrollbox::-webkit-scrollbar-thumb {
    background-color: var(--theme-color-mono-lv2);
    border-radius: 1rem;
}
.scrollbox > *:first-child {
    margin-block-start: 0;
    padding-block-start: 0;
}
.scrollbox > *:last-child {
    margin-block-start: 0;
    padding-block-start: 0;
}

.onlyrow {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.material-symbols-rounded {
    font-size: initial;
    vertical-align: unset;
}

.column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-block: 2.5rem;
    margin-inline: auto;
}
.column > * {
    margin: 0 !important;
}
.column.column-2 {
    grid-template-columns: repeat(2, 1fr);
}
.column.column-3 {
    grid-template-columns: repeat(3, 1fr);
}
.column.column-4 {
    grid-template-columns: repeat(4, 1fr);
}
.column.column-gap-sm {
    gap: 1.25rem;
}

.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-bold {
    font-weight: bold;
}
.text-small {
    font-size: smaller;
}
.text-large {
    font-size: larger;
}

/* ▼ novel viewerを使用しない場合は削除してOK ▼ */
.env-writing-mode-vertical::-webkit-scrollbar {
    inline-size: 0.6rem;
}
.env-writing-mode-vertical::-webkit-scrollbar-track {
    background-color: transparent;
}
.env-writing-mode-vertical::-webkit-scrollbar-thumb {
    background-color: var(--theme-color-mono-lv3);
    border-radius: 1rem;
}

body.get-header .env-writing-mode-vertical,
body:has(header) .env-writing-mode-vertical {
    --env-vertical-height-pc: 80vh;
    --env-vertical-height-sp: 80vh;
}

button.env-button::before {
    content: "\f6f1";
    font: 400 2rem/1 var(--font-family-icon);
    height: auto;
    background: none !important;
    transition: transform var(--animation) !important;
}
button.env-button::after {
    content: none !important;
}
button.env-button:hover::before {
    transform: translateY(-0.4rem);
}
button.env-button.open::before {
    content: "\e5cd";
}
/* ▲ novel viewerを使用しない場合は削除してOK ▲ */

/* ▼ my bookshelfを使用しない場合は削除してOK ▼ */
.ebs-base > div.new .ebs-img::after {
    z-index: 1;
}

.swiper {
    --swiper-navigation-size: 2rem;
    --swiper-theme-color: var(--theme-color-link-lv2);
    --swiper-centered-offset-before: 0;
    position: relative;
    display: block;
    width: 100%;
    margin-inline: auto;
    padding: 0;
    list-style: none;
    overflow: hidden;
    z-index: 1;
}
.swiper .swiper-slide {
    background: var(--bg-color-1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper .swiper-slide a {
    aspect-ratio: 1/1.4;
}
.swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: initial;
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: calc((100% - 3rem) / 2);
    display: flex;
    align-items: center;
    aspect-ratio: 1/1;
    width: 3rem;
    font-size: 3rem;
    color: var(--theme-color-link-lv2);
    z-index: 50;
    overflow: visible;
    visibility: visible;
}
.swiper-button-prev::before,
.swiper-button-next::before {
    font-family: var(--font-family-icon);
}
.swiper-button-prev:not(.swiper-button-disabled),
.swiper-button-next:not(.swiper-button-disabled) {
    cursor: pointer;
    transition: background var(--animation);
}
.swiper-button-prev:not(.swiper-button-disabled):hover,
.swiper-button-next:not(.swiper-button-disabled):hover {
    background: var(--bg-color-1);
}
.swiper-button-prev {
    left: -0.6rem;
    border-radius: 0 50% 50% 0;
    justify-content: end;
}
.swiper-button-prev::before {
    content: "\e314";
}
.swiper-button-next {
    right: -0.6rem;
    border-radius: 50% 0 0 50%;
    justify-content: start;
}
.swiper-button-next::before {
    content: "\e315";
}
.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}
/* ▲ my bookshelfを使用しない場合は削除してOK ▲ */

/* インデックス */
#INDEX main {
    min-height: calc(100vh - (var(--title-width) + 8rem) - 21.3333333333rem);
    padding-block-start: 0;
}
/* ----- ▲ PCレイアウト　ここまで ▲ ----- */

/* ----- ▼ SPレイアウト　ここから ▼ ----- */
@media only screen and (max-width: 1000px) {
    /* 基本 */
    body,
    button,
    input,
    textarea {
        font-size: 1.6rem;
        line-height: 2.65rem;
    }
    body::before {
        mask-size: 50%;
    }
    footer {
        width: 100vw;
    }
    main {
        margin-inline: 2rem;
    }
    main > article:not(:has(.ebs-base)) {
        padding: 3rem;
        border-radius: 3rem;
    }
    /* メニュー */
    .menu:not(#spotlight) ul {
        gap: 2rem;
    }
    .sub-menu {
        display: block;
        height: 14rem;
        width: calc(100vw - 4rem);
        padding-inline: 4rem;
    }
    .sub-menu::before {
        position: absolute;
        top: -1rem;
        left: 1rem;
        display: block;
        height: auto;
        padding-block: 0.6rem;
        border-radius: 10rem;
        aspect-ratio: auto;
        aspect-ratio: none;
    }
    .sub-menu ul {
        flex-direction: column;
        flex-wrap: nowrap;
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .sub-menu ul::-webkit-scrollbar {
        inline-size: 0.6rem;
    }
    .sub-menu ul::-webkit-scrollbar-track {
        background-color: transparent;
    }
    .sub-menu ul::-webkit-scrollbar-thumb {
        background-color: var(--theme-color-mono-lv2);
        border-radius: 1rem;
    }
    .fixed-menu {
        right: 0;
    }
    button.env-button {
        --env-button-position-right: 0;
    }
    /* 見出し */
    /* リスト */
    ul.no-style,
    ol.no-style {
        padding: 0;
        list-style: none;
    }
    ul.column,
    ol.column {
        display: flex;
        flex-direction: column;
    }
    ul.column.column-2 > *,
    ul.column.column-3 > *,
    ol.column.column-2 > *,
    ol.column.column-3 > * {
        inline-size: 100% !important;
    }
    ul .description,
    ol .description {
        display: block;
        margin-inline-start: 10px;
    }
    ul .description::before,
    ol .description::before {
        content: "└";
        margin-inline-end: 10px;
    }
    dl.border,
    dl.inline {
        display: block;
    }
    dl.border dt,
    dl.inline dt {
        padding-block-end: 0;
        border-block-end: 0;
    }
    dl.border dd,
    dl.inline dd {
        padding-inline-start: 5rem;
        margin-block-end: 1.25rem;
    }
    dl.border dd:last-of-type,
    dl.inline dd:last-of-type {
        margin-block-end: 0;
    }
    /* フォーム */
    .form-inline input {
        inline-size: 40%;
    }
    .form-block dl {
        flex-direction: column;
    }
    .form-block dl.inline dt,
    .form-block dl.inline dd {
        inline-size: 100%;
    }
    /* 装飾 */
    .column.column-sp-1 {
        grid-template-columns: 1fr;
    }
    .column.column-sp-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .column.column-sp-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .column.column-sp-gap-sm {
        gap: 1.25rem;
    }
    /* インデックス */
    #INDEX main {
        min-height: calc(100vh - (var(--title-width) + 8rem) - (33.3333333333vw + 8rem));
        padding-block-start: 0;
    }
}
/* ----- ▲ SPレイアウト　ここまで ▲ ----- */

/*--ここから追加CSS--*/
/*--テキストエリア可変--*/
.grow-wrap {
    /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
    display: grid;
  }
  .grow-wrap::after {
    /* Note the weird space! Needed to preventy jumpy behavior */
    content: attr(data-replicated-value) " ";
  
    /* This is how textarea text behaves */
    white-space: pre-wrap;
  
    /* Hidden from view, clicks, and screen readers */
    visibility: hidden;
  }
  .grow-wrap > textarea {
    /* You could leave this, but after a user resizes, then it ruins the auto sizing */
    resize: none;
  
    /* Firefox shows scrollbar on growth, you can hide like this. */
    overflow: hidden;
  }
  .grow-wrap > textarea,
  .grow-wrap::after {
    /* Identical styling required!! */
    padding: 0.5rem;
    font: inherit;
  
    /* Place on top of each other */
    grid-area: 1 / 1 / 2 / 2;
  }


  /* koibumi */

/* --------------------------------------------------
個人サイト向けひとことフォーム コイブミ Ver1.3.1
製作者    ：ガタガタ
サイト    ：https://do.gt-gt.org/
ライセンス：MITライセンス
全文      ：https://ja.osdn.net/projects/opensource/wiki/licenses%2FMIT_license
公開日    ：2020.09.13
最終更新日：2022.05.11
このプログラムはどなたでも無償で利用・複製・変更・
再配布および複製物を販売することができます。
ただし、上記著作権表示ならびに同意意志を、
このファイルから削除しないでください。
-------------------------------------------------- */

div#koibumi_wrap {
    position: relative;
  }
  
  div#koibumi_thanks {
      position: absolute;
      margin-top: 14px;
      opacity: 0;
      animation-name: koibumi_thanks-down;
      animation-duration: .5s;
      animation-fill-mode: both;
  }
  
  
  div#koibumi_wrap p.attention {
      font-size: 10px;
      opacity: .5;
  }
  
  .koibumifadeout {
    animation : koibumifadeout 1s !important;
    animation-fill-mode: both;
  }
  
  p#koibumi_alert {
      padding: 10px;
      font-size: 14px;
      border-radius: 3px;
      position: absolute;
      z-index: 10;
      width: 100%;
      top: 100%;
      background: #fcfcfc;
      box-shadow: 0 2px 6px #00000014;
  }
  p#koibumi_alert.success {
      background: #d4effc;
      color: #0f286a;
  }
  p#koibumi_alert.alert {
      background: #ffe2e5;
      color: #610b34;
  }
  
  div#koibumi_thanks p {
      margin-bottom: 0;
  }
  
  @keyframes koibumifadeout {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes koibumi_thanks-up {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes koibumi_thanks-down {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* newiine-app */

/* iOSでのデフォルトスタイルをリセット */
button {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  button::-webkit-search-decoration {
    display: none;
  }
  button::focus {
    outline-offset: -2px;
  }
  
  button.newiine_btn {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: 1px solid;
    color: var(--color-gray);
    font-size: 13px;
    border-radius: 20px;
    padding: 3px 13px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 10px;
  }
  
  button.newiine_btn:hover {
    background: var(--color-white);
  }
  
  button.newiine_btn span.material-icons-round {
    font-size: 18px;
    vertical-align: sub;
  }
  
  button.newiine_btn.newiine_clickedtoday {
    color: var(--theme-color1);
    border-color: var(--theme-color1);
  }
  
  button.newiine_btn.newiine_clickedtoday:hover {
    background: #fff3f5;
  }
  
  button.newiine_btn.newiine_clicked {
    color: #ffffff;
    background: var(--theme-color1);
    border-color: var(--theme-color1);
  }
  
  button.newiine_btn.newiine_clicked:hover {
    background: #fd7f96;
    border-color: #fd7f96;
  }
  
  button.newiine_btn:before {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    visibility: hidden;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    background: #fd7f96;
  }
  
  button.newiine_btn:active {
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
  }
  
  button.newiine_btn.newiine_animate:before {
    z-index: 1;
    -webkit-animation: newiine_animation ease-out 0.5s forwards;
    animation: newiine_animation ease-out 0.5s forwards;
  }
  
  div.newiine_thanks img {
    max-width: 100%;
  }
  
  button.newiine_btn div.newiine_thanks {
    /* ※ ↓お礼メッセージの吹き出しのサイズを変えたい場合はここを調整 */
    min-width: 300px;
    background: white;
    color: #333;
    text-align: left;
    font-size: 15px;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 10px;
    filter: drop-shadow(0 2px 8px #cccccc7d);
    position: absolute;
    opacity: 0;
    transition: 0.3s;
    animation-duration: .5s;
    animation-fill-mode: both;
    z-index: 5;
  }
  
  button.newiine_btn div.newiine_thanks:after {
    content: '';
    width: 0px;
    height: 0px;
    position: absolute;
    left: 20px;
  }
  
  button.newiine_btn div.newiine_thanks_up {
    bottom: 140%;
    animation-name: newiine_thanks-up;
  }
  
  button.newiine_btn div.newiine_thanks_up:after {
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    top: calc(100% - 1px);
  }
  
  button.newiine_btn div.newiine_thanks_down {
    top: 140%;
    animation-name: newiine_thanks-down;
  }
  
  button.newiine_btn div.newiine_thanks_down:after {
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    bottom: calc(100% - 1px);
  }
  
  button.newiine_btn div.newiine_thanks p {
    margin: 10px auto;
  }
  
  .newiine_fadeout {
    animation : newiine_fadeOut 1s !important;
    animation-fill-mode: both;
  }
  
  /* newiine_type02 */
  
  button.newiine_btn.newiine_type02 {
    text-align: center;
    word-break: keep-all;
    height: 60px;
    width: 60px;
    padding: 3px;
    border-radius: 30px;
    background: var(--bg-color);
    border: 1px solid var(--theme-color1);
  }
  
  button.newiine_btn.newiine_type02:hover {
    color: #fd7f96;
  }
  
  button.newiine_btn.newiine_type02.newiine_clickedtoday {
    color: #fd7f96;
    background: #fff3f5;
  }
  
  button.newiine_btn.newiine_type02.newiine_clicked {
    background: #fd7f96;
    color: #ffffff;
  }
  
  button.newiine_btn.newiine_type02.newiine_clicked:hover {
    color: #fff3f5;
  }
  
  button.newiine_btn.newiine_type02.newiine_animate:before {
    z-index: 1;
    -webkit-animation: newiine_animation_type02 ease-out 0.5s forwards;
    animation: newiine_animation_type02 ease-out 0.5s forwards;
  }
  
  @-webkit-keyframes newiine_animation {
    0% {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      visibility: hidden;
    }
  }
  
  @keyframes newiine_animation {
    0% {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      visibility: hidden;
    }
  }
  
  @-webkit-keyframes newiine_animation_type02 {
    0% {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(2);
      transform: scale(2);
      visibility: hidden;
    }
  }
  
  @keyframes newiine_animation_type02 {
    0% {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(2);
      transform: scale(2);
      visibility: hidden;
    }
  }
  
  
  @keyframes newiine_fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes newiine_thanks-up {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes newiine_thanks-down {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 展示リスト レーティングアイコン*/
.list, .list-ss, .list-log{list-style: none;padding: 0;}
.list li a{margin-right: 10px;margin-left: 3px;}
.list-caption dd{margin-left: 1.5em;color: #666;}
.list-slash dt {float: left;width: 8em;height:auto;}
.list-slash dd {margin: 0 0 5px 8em;padding-left: 1em;}
.list-ss li{display: inline;margin-right: 10px;margin-left: 3px;}
.list-ss li:last-child{border: none;}

ins {text-decoration: none;}
ins a{
  text-decoration: none;
}
ins::after {content: "new!";background-color: var( --theme-color-main-lv1); color:var(--theme-color-mono-lv1); margin-left: 0.3em;}

.l1::before{
  content:"\f004";
  margin-left:5px;
  color: #ffd000;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l1::after{
  content:"1";
  color: #ffd000;
}

.l0::before{
  content:"\f7a9";
  margin-left:5px;
  color: #808ab3;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l0::after{
  content:"0";
  color: #808ab3;
}

.l2::before{
  content:"\f004";
  margin-left:5px;
  color: #ffa399;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l2::after{
  content:"2";
  color: #ffa399;
}

.l3::before{
  content:"\f004";
  margin-left:5px;
  color: #ff1a00;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l3::after{
  content:"3";
  color: #ff1a00;
}

.l4::before{
  content:"\f004";
  margin-left:5px;
  color: #660a00;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.l4::after{
  content:"4";
  color: #660a00;
}

.g1::before{
  content:"\f043";
  margin-left:5px;
  color: #8ae68a;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g1::after{
  content:"1";
  color: #8ae68a;
}

.g2::before{
  content:"\f043";
  margin-left:5px;
  color: #2ee6d6;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g2::after{
  content:"2";
  color: #2ee6d6;
}

.g3::before{
  content:"\f043";
  margin-left:5px;
  color: #0026e6;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g3::after{
  content:"3";
  color: #0026e6;
}

.g4::before{
  content:"\f043";
  margin-left:5px;
  color: #1a0000;
  font-family:"font awesome 6 pro";
  font-weight:900
}

.g4::after{
  content:"4";
  color: #1a0000;
}

.end::before{
  content:"FIN!";
  margin-left:1em;
  color: var(--theme-color1);
}