@charset "UTF-8";
/*------------------------------------------------------------------

SCREEN SIZE

--------------------------------------------------------------------*/
/*------------------------------------------------------------------

FONT

--------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "dicon";
  src: url("/assets/css/dicon.ttf") format("truetype"), url("/assets/css/dicon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
:root {
  --sans-serif: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  --serif: serif;
}

.dicon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dicon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------------------------------------------------

COLOR

--------------------------------------------------------------------*/
:root {
  /* colors */
  --white: #FFF;
  --black: #000;
  --line: #E0E0E0;
  --gray-glyph: #707070;
  --black-glyph: #191919;
  --primary-light: #73F3FF;
  --primary: #15C0CF;
  --primary-dark:#00A6B5;
  --bg-section: #F6F6F6;
  --bg-msg-r:#EEF2F5;
  --bg-msg-s:#008995;
  --color-black: #191919;
  --color-white: #ffffff;
  --color-primary-100: #4cf0f6;
  --color-primary-200: #5fe3ee;
  --color-primary-300: #66d4dd;
  --color-primary-400: #3cc8d3;
  --color-primary-500: #00b7c6;
  --color-primary-600: #00a5b3;
  --color-primary-700: #0497a4;
  --color-primary-800: #008995;
  --color-primary-900: #00707a;
  --color-favorite: #ffcc00;
  --color-hilight: #ffff00;
  --color-orange: #ff7518;
  --color-green: #3ac610;
  --color-red: #f50f05;
  --color-gray-100: #f6f6f6;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d5d5d5;
  --color-gray-400: #cacaca;
  --color-gray-500: #b0b0b0;
  --color-gray-600: #979797;
  --color-gray-700: #888888;
  --color-gray-800: #757575;
  --color-gray-900: #5a5a5a;
  --color-default-bg: #f3f8fb;
  --color-msg-bg-r: #ebeff2;
}

/*------------------------------------------------------------------

SIZE

--------------------------------------------------------------------*/
:root {
  /*フォントサイズ*/
  --fontsize-m: 0.9375rem;
  --fontsize-s: 0.8125rem;
  --fontsize-ss: 0.75rem;
  --fontsize-sss: 0.6875rem;
  --fontsize-xs: 0.6875rem;
  --headline-1: 2.375rem;
  --headline-2: 2rem;
  --line-height: 2.25em;
  --line-height-s: 1.6em;
  --line-height-ss: 1.25em;
  --space-xl: 28px;
  /*角丸*/
  --radius-m:12px;
  --radius-s:8px;
  --radius-ss:4px;
}

/*------------------------------------------------------------------

EASING

--------------------------------------------------------------------*/
:root {
  --ease-InBack:cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-OutQuart:cubic-bezier(0.165, 0.840, 0.440, 1.000);
  --ease-OutExpo:cubic-bezier(0.190, 1.000, 0.220, 1.000);
  --ease-OutBack:cubic-bezier(0.175, 0.885, 0.320, 1.275);
  --ease-InOutCirc:cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-InOutCubic:cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-InOutQuint:cubic-bezier(0.860, 0.000, 0.070, 1.000);
  --ease-InOutBack:cubic-bezier(0.680, -0.550, 0.265, 1.550);
  --ease-swing:cubic-bezier(0.215, 0.415, 0.085, 1.155);
}

/*------------------------------------------------------------------

mixin

--------------------------------------------------------------------*/
/*------------------------------------------------------------------

ANIMATION

--------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn-toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------------------------------------------

BASE

--------------------------------------------------------------------*/
html {
  font-size: var(--fontsize);
  overflow-x: hidden;
  height: 100%;
  /*visibility: hidden;
  &.wf-wait{
      visibility: visible;
  }*/
}

body {
  color: var(--color-black);
  background-color: var(--color-default-bg);
  font-family: var(--sans-serif);
  font-weight: 400;
  position: relative;
  word-break: normal;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-scrolling: touch;
  min-height: 100%;
}

.serif {
  font-family: var(--serif);
}

.sans-serif {
  font-family: var(--sans-serif);
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
  background-color: #FAFAFA;
  box-shadow: -1px 0 0 rgba(0, 0, 0, 0.1);
  border-left: 1px solid #F3F3F3;
}

::-webkit-scrollbar-thumb {
  background-color: #BBB;
  border-radius: 10px;
  border: 3px solid #FAFAFA;
  width: calc(100% - 4px);
}

input[type=text],
input[type=url],
input[type=tel],
input[type=email],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=search],
select,
textarea {
  -webkit-appearance: none;
  outline: none;
}

input[type=submit]:hover {
  cursor: pointer;
}

strong, b {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: var(--line-height-s);
  font-size: 1rem;
}

a {
  color: var(--color-black);
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 728px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  margin: 0;
  padding: 0 0 var(--line-height-s);
  line-height: var(--line-height);
  line-break: strict;
}
p:last-child {
  padding-bottom: 0;
}

figure {
  margin: 0 auto 2rem;
  font-size: 0;
  line-height: 0;
  position: relative;
}
figure img {
  height: auto;
  max-width: 100%;
}
figure > a {
  display: inline-block;
}

figcaption {
  font-size: var(--size-ss);
  padding: 0.35em 0 0 0;
  opacity: 0.5;
  line-height: var(--line-height-s);
}

img {
  display: inline-block;
  outline: none;
  -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
  -webkit-user-select: none;
  -ms-user-select: none; /* From IE10 only */
  user-select: none; /* Not valid CSS yet, as of July 2012 */
  -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
  user-drag: none;
  pointer-events: none;
}

.clear {
  width: 100%;
  font-size: 0px;
  height: 1px;
  overflow: hidden;
  clear: both;
  float: none;
  margin: 0 0 -1px 0;
  display: block;
}

.clear_after:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 -1px 0;
  clear: both;
  float: none;
}

.c {
  text-align: center;
  margin: 0 auto;
}

.none {
  display: none;
}

.hidden {
  visibility: hidden;
}

.text0 {
  font-size: 0;
  line-height: 0;
}

.nopc {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 727px) {
  .nopc {
    display: inherit;
    visibility: visible;
  }
}

@media screen and (max-width: 727px) {
  .nosp {
    display: none;
    visibility: hidden;
  }
}

.article-wrapper {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 16px;
}

.sticky-content {
  display: flex;
  gap: 4px;
  padding: 20px;
  background-color: var(--color-white);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  position: relative;
  width: 260px;
  min-height: 160px;
}
.sticky-content:before {
  content: attr(item-name);
  position: absolute;
  bottom: 0;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, calc(100% + 8px));
  font-size: var(--fontsize-ss);
  background-color: var(--color-gray-700);
  color: var(--color-default-bg);
  border-radius: 999px;
  padding: 4px 10px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  flex-direction: column;
  gap: 16px;
}

/*------------------------------------------------------------------

リアクションユーザーのフキダシ表示

--------------------------------------------------------------------*/
.reactioned {
  position: relative;
  cursor: pointer;
  padding: 5px 6px;
  font-size: var(--fontsize-s);
  border-radius: 999px;
  background-color: var(--color-gray-100);
  border: 1px solid rgba(0, 0, 0, 0.04);
  line-height: 1em;
}
.reactioned > span {
  font-family: "Inter", "Noto Color Emoji", sans-serif;
}
.reactioned > span:after {
  content: attr(count);
  font-size: var(--fontsize-ss);
  font-family: var(--sans-serif);
  padding-left: 0.25em;
  color: var(--color-gray-800);
}
.reactioned:hover .reaction-balloon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  height: auto;
  transition: transform 0.5s var(--ease-swing) 0s, opacity 0.2s linear 0s, visibility 0.1s;
}

.dark {
  --local-text-color: var(--color-gray-200);
  --local-bg-color: rgba(0,0,0,0.84);
  --local-a-color: var(--color-primary-400);
  --local-border-color: rgba(255,255,255,0);
  --local-filter: none;
}

.light {
  --local-text-color: var(--color-gray-900);
  --local-bg-color: var(--color-gray-100);
  --local-a-color: var(--color-primary-600);
  --local-border-color: rgba(255,255,255,0.6);
  --local-filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.white {
  --local-text-color: var(--color-gray-700);
  --local-bg-color: var(--color-white);
  --local-a-color: var(--color-primary-600);
  --local-border-color: rgba(255,255,255,0);
  --local-filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.reaction-balloon {
  color: var(--local-text-color);
  transition: transform 0.4s ease 0s, opacity 0.2s linear 0s, visibility 0.24s;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 7px);
  position: absolute;
  left: 50%;
  bottom: calc(100% - 1px);
  font-size: 0;
  line-height: 0;
  filter: var(--local-filter);
  cursor: default;
}
.reaction-balloon a {
  color: var(--local-a-color);
}
.reaction-balloon a:hover {
  text-decoration: underline;
}
.reaction-balloon li {
  margin: 0 0 0.45em 0;
  max-width: 7em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.reaction-balloon li:last-child {
  margin-bottom: 0;
}
.reaction-balloon .balloon-inner {
  font-size: var(--fontsize-ss);
  line-height: 1em;
  background-color: var(--local-bg-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: 4px;
  border-top: 1px solid var(--local-border-color);
  border-left: 1px solid var(--local-border-color);
}
.reaction-balloon .balloon-joint {
  width: 100%;
  height: 5px;
  overflow: hidden;
  position: relative;
  top: -0.5px;
}
.reaction-balloon .balloon-joint:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -2px) rotate(-45deg);
  border-radius: 2px;
  background-color: var(--local-bg-color);
}

/*------------------------------------------------------------------

トーク

--------------------------------------------------------------------*/
.talk-wrapper {
  width: 52%;
  min-width: 300px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--color-white);
  border-left: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}

.msg {
  padding: 0 32px 0 16px;
  display: flex;
  gap: 4px;
  --local-size:44px;
}
.msg.my-msg {
  padding: 0 16px 0 calc(32px + var(--local-size));
}

.user-icon {
  width: var(--local-size);
  height: var(--local-size);
  flex-shrink: 0;
  position: relative;
}
.user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}
.user-icon.online:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-green);
  box-sizing: content-box;
}

.msg-contents {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msg-username {
  font-size: var(--fontsize-s);
  padding-bottom: 2px;
}

.balloon {
  position: relative;
  display: flex;
  gap: 0;
  --local-border:1px solid rgba(0,0,0,0.04);
  cursor: pointer;
}
.balloon p {
  line-height: var(--line-height-s);
  font-size: var(--fontsize-m);
  cursor: text;
}
.balloon p:last-child {
  padding: 0;
}
.balloon .balloon-joint {
  --local-overlap: -1px;
  width: calc(7px - var(--local-overlap));
  height: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin-right: var(--local-overlap);
}
.balloon .balloon-joint:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 8px;
  left: 0;
  transform-origin: 0 0;
  transform: skewX(35deg);
  border-radius: 3px;
  background-color: var(--bg-msg-r);
  border: var(--local-border);
}
.balloon .balloon-inner {
  background-color: var(--bg-msg-r);
  border-radius: var(--radius-m);
  border: var(--local-border);
  padding: 10px calc(10px + 0.2em);
  max-width: min(32em, 100% - 64px);
  line-height: var(--line-height-s);
  font-size: var(--fontsize-m);
  cursor: text;
}
.balloon .balloon-inner > a {
  color: var(--primary-dark);
}

.msg-time {
  display: flex;
  flex-direction: column-reverse;
  padding: 0 6px;
  gap: 2px;
  margin: 0;
}
.msg-time li {
  font-size: var(--fontsize-sss);
  line-height: var(--line-height-ss);
  white-space: nowrap;
  color: var(--gray-glyph);
  list-style: none;
}
.msg-time li a {
  color: var(--gray-glyph);
}

.my-msg {
  flex-direction: row-reverse;
}
.my-msg .msg-contents {
  align-items: flex-end;
}
.my-msg .balloon {
  flex-direction: row-reverse;
}
.my-msg .balloon .balloon-inner {
  background-color: var(--color-primary-800);
  color: var(--color-white);
  max-width: min(32em, 100% - 8px - 56px);
}
.my-msg .balloon .balloon-inner > a {
  color: var(--primary-light);
}
.my-msg .balloon .balloon-joint {
  margin-left: var(--local-overlap);
}
.my-msg .balloon .balloon-joint:after {
  background-color: var(--color-primary-800);
  left: auto;
  right: 0;
  transform: skewX(-35deg);
}
.my-msg .balloon .msg-time li {
  text-align: right;
}

.contextmenu {
  position: fixed;
  visibility: hidden;
  top: -40px;
  left: 0px;
  opacity: 0;
  --local-shadow: 0 4px 8px rgba(0,0,0,0.2);
  --local-icon-width:40px;
}
.contextmenu .quote {
  visibility: hidden;
  display: none;
}
.contextmenu.show {
  visibility: visible;
  animation: fadeIn 0.3s ease 0s forwards;
}
.contextmenu.show.repeat {
  animation: fadeIn-toggle 0.3s ease 0s forwards;
}
.contextmenu.mode-quote .default,
.contextmenu.mode-quote .reaction-selector {
  visibility: hidden;
  display: none;
}
.contextmenu.mode-quote .quote {
  visibility: visible;
  display: block;
}
.contextmenu.position-r .contextmenu-list,
.contextmenu.position-r .reaction-selector {
  left: auto;
  right: 0;
}

.contextmenu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-white);
  padding: 6px 0;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-ss);
  box-shadow: var(--local-shadow);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.contextmenu-list li {
  font-size: var(--fontsize-m);
  white-space: nowrap;
}
.contextmenu-list li.divider {
  --local-divider-margin: 8px;
  height: calc(var(--local-divider-margin) * 2 + 1px);
  width: 100%;
  position: relative;
}
.contextmenu-list li.divider:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--color-gray-200);
  position: absolute;
  top: var(--local-divider-margin);
  left: 0;
}
.contextmenu-list a {
  padding: 9px 20px 9px 12px;
  display: block;
}
.contextmenu-list a:hover {
  text-decoration: none;
  background-color: color-mix(in srgb, var(--color-primary-400) 10%, var(--color-white) 100%);
}

.reaction-selector-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: fit-content;
  height: fit-content;
  --local-icon-width:40px;
  --local-shadow: 0 4px 8px rgba(0,0,0,0.2);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease 0s, visibility 0s linear 0.2s;
  z-index: 100;
}
.reaction-selector-wrapper.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease 0s;
}
.reaction-selector-wrapper .reaction-selector {
  top: 0;
  left: 0;
}

.reaction-selector {
  background-color: var(--color-white);
  display: flex;
  gap: 0px;
  padding: 4px;
  border-radius: 999px;
  box-shadow: var(--local-shadow);
  font-size: 0;
  position: absolute;
  top: calc(var(--local-icon-width) * -1 - 11px);
  left: 0;
}
.reaction-selector li {
  display: block;
  width: var(--local-icon-width);
  height: var(--local-icon-width);
  border-radius: 50%;
  overflow: visible;
  transform: scale(0.2, 0.2);
  opacity: 0;
  transition: opacity 0s linear 0.2s, transform 0s linear 0.2s;
}
.reaction-selector li:nth-child(1) {
  --local-delay: 0.05s;
}
.reaction-selector li:nth-child(2) {
  --local-delay: 0.1s;
}
.reaction-selector li:nth-child(3) {
  --local-delay: 0.15s;
}
.reaction-selector li:nth-child(4) {
  --local-delay: 0.2s;
}
.reaction-selector li:nth-child(5) {
  --local-delay: 0.25s;
}
.reaction-selector li:nth-child(6) {
  --local-delay: 0.3s;
}
.reaction-selector li:has(a.selected) {
  border: 2px solid var(--color-primary-400);
  overflow: hidden;
  background-color: color-mix(in srgb, var(--color-primary-400) 10%, var(--color-white) 100%);
}
.reaction-selector a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  background: var(--local-src) no-repeat center center/calc(100% - 10px) calc(100% - 10px);
  --local-delay: 0s;
  transition: transform 0.2s ease 0s;
}
.reaction-selector a:hover {
  transform: scale(1.3, 1.3);
  transition: transform 0.3s var(--ease-OutBack) 0s;
}
.reaction-selector a:hover:has(a.selected) {
  transform: scale(1, 1);
}

.reverse .reaction-selector li:nth-child(1),
.position-r .reaction-selector li:nth-child(1) {
  --local-delay: 0.25s;
}
.reverse .reaction-selector li:nth-child(2),
.position-r .reaction-selector li:nth-child(2) {
  --local-delay: 0.2s;
}
.reverse .reaction-selector li:nth-child(3),
.position-r .reaction-selector li:nth-child(3) {
  --local-delay: 0.15s;
}
.reverse .reaction-selector li:nth-child(4),
.position-r .reaction-selector li:nth-child(4) {
  --local-delay: 0.1s;
}
.reverse .reaction-selector li:nth-child(5),
.position-r .reaction-selector li:nth-child(5) {
  --local-delay: 0.05s;
}
.reverse .reaction-selector li:nth-child(6),
.position-r .reaction-selector li:nth-child(6) {
  --local-delay: 0s;
}

.show .reaction-selector li {
  transition: transform 0.3s var(--ease-OutBack) var(--local-delay), opacity 0.1s linear var(--local-delay);
  transform: scale(1, 1);
  opacity: 1;
}

.reaction-item-good a, .reactied-good {
  --local-src:url(/assets/img/reaction-good.png);
}

.reaction-item-pray a, .reactied-pray {
  --local-src:url(/assets/img/reaction-pray.png);
}

.reaction-item-eyes a, .reactied-eyes {
  --local-src:url(/assets/img/reaction-eyes.png);
}

.reaction-item-cry a, .reactied-cry {
  --local-src:url(/assets/img/reaction-cry.png);
}

.reaction-item-heart a, .reactied-heart {
  --local-src:url(/assets/img/reaction-heart.png);
}

.reaction-item-party a, .reactied-party {
  --local-src:url(/assets/img/reaction-party.png);
}

.reacted-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 6px;
  gap: 4px;
  --local-bgcolor: #FAFAFA;
  --local-bdrcolor: var(--color-gray-100);
}
.reacted-wrapper li {
  list-style: none;
  position: relative;
}
.reacted-wrapper .reaction-item-a {
  display: block;
  color: var(--color-gray-900);
  background-color: var(--local-bgcolor);
  border-radius: 999px;
  border: 1px solid var(--local-bdrcolor);
  font-size: var(--fontsize-ss);
  padding: 8px 8px 8px calc(1em + 14px);
  position: relative;
  transition: transform 0.2s var(--ease-OutBack) 0s;
}
.reacted-wrapper .reaction-item-a:after {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  top: 50%;
  --local-width:16px;
  width: var(--local-width);
  height: var(--local-width);
  margin-top: calc(var(--local-width) * -0.5);
  background: var(--local-src) no-repeat center center/contain;
  transition: transform 0.2s ease 0s;
}
.reacted-wrapper .reaction-item-a:hover {
  text-decoration: none;
  background-color: color-mix(in srgb, var(--color-primary-400) 10%, var(--color-white) 100%);
}
.reacted-wrapper .reaction-item-a:hover:after {
  transform: scale(1.15, 1.15);
}
.reacted-wrapper .reaction-item-a.selected {
  background-color: color-mix(in srgb, var(--color-primary-400) 10%, var(--color-white) 100%);
  border: 2px solid var(--color-primary-400);
  padding: 7px 7px 7px calc(1em + 13px);
}
.reacted-wrapper .reaction-item-a.selected:after {
  left: 5px;
  transform: scale(1.15, 1.15);
}
.reacted-wrapper .reaction-item-a:active {
  transform: scale(0.94, 0.94);
}

.my-msg .reacted-wrapper {
  flex-direction: row-reverse;
}
.my-msg .reacted-wrapper li:nth-child(1) {
  order: 12;
}
.my-msg .reacted-wrapper li:nth-child(2) {
  order: 11;
}
.my-msg .reacted-wrapper li:nth-child(3) {
  order: 10;
}
.my-msg .reacted-wrapper li:nth-child(4) {
  order: 9;
}
.my-msg .reacted-wrapper li:nth-child(5) {
  order: 8;
}
.my-msg .reacted-wrapper li:nth-child(6) {
  order: 7;
}
.my-msg .reacted-wrapper li:nth-child(7) {
  order: 6;
}
.my-msg .reacted-wrapper li:nth-child(8) {
  order: 5;
}
.my-msg .reacted-wrapper li:nth-child(9) {
  order: 4;
}
.my-msg .reacted-wrapper li:nth-child(10) {
  order: 3;
}
.my-msg .reacted-wrapper li:nth-child(11) {
  order: 2;
}
.my-msg .reacted-wrapper li:nth-child(12) {
  order: 1;
}

.reactedlist-balloon {
  --local-text-color: var(--color-gray-200);
  --local-bg-color: rgba(0,0,0,0.84);
  --local-a-color: var(--color-primary-400);
  --local-border-color: rgba(255,255,255,0);
  --local-filter: none;
  color: var(--local-text-color);
  transition: transform 0.4s ease 0.1s, opacity 0.3s ease-in 0.1s, visibility 0s linear 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  position: absolute;
  left: 50%;
  bottom: calc(100% - 1px);
  font-size: 0;
  line-height: 0;
  filter: var(--local-filter);
  cursor: default;
  z-index: 10;
}
.reactedlist-balloon.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: transform 0.3s ease 0.24s, opacity 0.3s ease-out 0.24s;
}
.reactedlist-balloon a {
  color: var(--color-gray-500);
  padding-left: 19px;
}
.reactedlist-balloon a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-color: var(--color-gray-500);
  -webkit-mask: url("/assets/img/icon-react-list-20x20.png") no-repeat left center/contain;
  mask: url("/assets/img/icon-react-list-20x20.png") no-repeat left center/contain;
}
.reactedlist-balloon a:hover {
  color: color-mix(in srgb, var(--local-a-color) 80%, var(--color-gray-500) 80%);
  text-decoration: none;
}
.reactedlist-balloon a:hover:before {
  background-color: color-mix(in srgb, var(--local-a-color) 80%, var(--color-gray-500) 80%);
}
.reactedlist-balloon li {
  margin: 0 0 0.45em 0;
  max-width: 7em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.reactedlist-balloon li:last-child {
  margin: 0;
}
.reactedlist-balloon li.open-reactedlist {
  margin-top: 1.4em;
  overflow: visible;
}
.reactedlist-balloon li.open-reactedlist:before {
  content: "";
  display: block;
  position: absolute;
  left: -1.5px;
  top: -0.7em;
  width: calc(100% + 2px);
  height: 1px;
  border-top: 1px solid var(--color-gray-900);
}
.reactedlist-balloon .balloon-inner {
  font-size: var(--fontsize-ss);
  line-height: 1em;
  background-color: var(--local-bg-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: 4px;
  border-top: 1px solid var(--local-border-color);
  border-left: 1px solid var(--local-border-color);
  position: relative;
}
.reactedlist-balloon .balloon-joint {
  width: 100%;
  height: 5px;
  overflow: hidden;
  position: relative;
  top: -0.5px;
}
.reactedlist-balloon .balloon-joint:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -2px) rotate(-45deg);
  border-radius: 2px;
  background-color: var(--local-bg-color);
}

.type-2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.type-2 .reacted-wrapper .reaction-item-a {
  --local-bgcolor: transparent;
}

.btn-reaction-list {
  width: auto;
  height: auto;
  aspect-ratio: 1/1;
  padding: 3px;
  background-color: var(--color-gray-100);
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 50% 50%;
  font-size: 0;
  position: relative;
}
.btn-reaction-list:before {
  content: "";
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  background-color: color-mix(in srgb, var(--color-black) 85%, transparent);
  -webkit-mask: url("/assets/img/icon-react-list-20x20.png") no-repeat left center/18px 18px;
  mask: url("/assets/img/icon-react-list-20x20.png") no-repeat left center/18px 18px;
}
.btn-reaction-list a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.btn-reaction-list:has(a:hover) {
  background-color: color-mix(in srgb, var(--color-primary-400) 10%, var(--color-white) 100%);
}
.btn-reaction-list.hidden {
  visibility: hidden;
}

.open-reaction-selector {
  --local-top-adjust: -14px;
  display: block;
  width: fit-content;
  border-radius: 999px;
  background-color: var(--color-white);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  font-size: var(--fontsize-s);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(4px, calc(100% + var(--local-top-adjust)));
  z-index: 10;
  visibility: hidden;
  --local-padding: 10px;
  padding: var(--local-padding) calc(2px + var(--local-padding)) var(--local-padding) calc(21px + var(--local-padding));
  color: var(--gray-glyph);
}
.open-reaction-selector:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: calc(2px + var(--local-padding));
  top: 50%;
  transform: translate(0, -50%);
  background-color: var(--color-gray-700);
  -webkit-mask: url("/assets/img/thumbsup-14x14.png") no-repeat left center/contain;
  mask: url("/assets/img/thumbsup-14x14.png") no-repeat left center/contain;
}
.open-reaction-selector:hover {
  text-decoration: none;
  color: var(--color-primary-400);
}
.open-reaction-selector:hover:before {
  background-color: var(--color-primary-400);
}

.my-msg .open-reaction-selector {
  left: auto;
  right: 0;
  transform: translate(-4px, calc(100% + var(--local-top-adjust)));
}

.balloon:hover .open-reaction-selector {
  visibility: visible;
  transition: visibility 0s linear 0.25s;
}
.balloon:hover .open-reaction-selector.hidden {
  transition: none;
  visibility: hidden;
}
.balloon:active .open-reaction-selector {
  visibility: hidden;
  transition: none;
}
.balloon:active .open-reaction-selector:hover {
  visibility: visible;
}

.noreaction .open-reaction-selector,
.noreaction .reactedlist-balloon {
  visibility: hidden;
  display: none;
}
.noreaction .reacted-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.noballoon .reacted-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/*------------------------------------------------------------------

トーク

--------------------------------------------------------------------*/
.sp-width {
  max-width: 100%;
  width: 428px;
  transition: opacity 0.5s ease 0s;
  padding-bottom: 100px;
}
@media screen and (max-width: 727px) {
  .sp-width {
    width: 100%;
  }
}

.hidden {
  opacity: 0;
}

.react-none .reacted-wrapper {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.reacted-wrapper {
  opacity: 1;
  height: 30px;
}

.fade-on .reacted-wrapper,
.resize-on .reacted-wrapper {
  transition: opacity 0.6s ease 0s;
}

.resize-on .reacted-wrapper {
  transition: opacity 0.6s ease 0s, height 0.3s ease 0s;
}

#anim-selector {
  width: 100px;
  background-color: var(--color-white);
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  border-radius: 16px;
  box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.2);
  padding: var(--radius-s);
  cursor: pointer;
  font-size: var(--fontsize-s);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#anim-selector li {
  padding: var(--radius-ss) var(--radius-s);
  border-radius: 999px;
}
#anim-selector li.selected {
  color: var(--color-white);
  background-color: var(--color-primary-500);
}
@media screen and (max-width: 727px) {
  #anim-selector {
    transform: scale(1.2, 1.2);
    transform-origin: right bottom;
  }
}

/*------------------------------------------------------------------

ユーザーリスト

--------------------------------------------------------------------*/
.list-wrapper {
  width: 360px;
  height: 500px;
  margin: 50px auto;
  background-color: #FFF;
  overflow-y: auto;
  scroll-behavior: smooth;
  border-radius: 4px;
  position: relative;
}

.user-list {
  --local-size: 44px;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.username {
  font-size: var(--fontsize-m);
}

#nj-changer {
  border-top: 1px solid var(--line);
  font-size: var(--fontsize-s);
  display: block;
  padding: 12px;
  line-height: 1;
  margin: 8px 0 0;
  position: sticky;
  top: -1px;
  display: block;
  background-color: #FFF;
  z-index: 50;
}
#nj-changer:hover {
  text-decoration: none;
}
#nj-changer > span {
  position: relative;
  padding-right: 16px;
}
#nj-changer > span:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 35%;
  width: 7px;
  height: 7px;
  border: 1px solid transparent;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  transform: rotate(-135deg);
  transform-origin: center center;
  transition: all 0.3s cubic-bezier(0.5, -0.5, 0.5, 1.5) 0s;
}
#nj-changer.close > span:after {
  transform: rotate(45deg);
  top: 25%;
}

#not-join {
  display: grid;
  opacity: 0.5;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
#not-join > .user-list {
  overflow: hidden;
}
#not-join .user-item:first-child {
  margin-top: 8px;
}
#not-join.no-opanim {
  transition: none;
}

.close + #not-join {
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

#scroll-point {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  /*z-index: 100;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,0.1);*/
}

/*------------------------------------------------------------------

メンバーリスト

--------------------------------------------------------------------*/
.member-list-wrapper {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.1), 0 10px 14px 0 rgba(0, 0, 0, 0.2);
  background: var(--color-white);
}

.member-list-header {
  display: flex;
  justify-content: space-between;
  height: 44px;
  padding: 0 6px 0 12px;
  align-items: center;
}
.member-list-header h3 {
  font-size: var(--fontsize-s);
}

.add-member-btn {
  display: block;
  width: 48px;
  height: 32px;
  background: var(--white) url(/assets/img/icon-addmember-30x20.svg) no-repeat center center/30px 20px;
  border-radius: 999px;
}
.add-member-btn:hover {
  background-color: color-mix(in srgb, var(--primary) 5%, transparent);
}
.add-member-btn:active {
  background-color: color-mix(in srgb, var(--primary) 15%, transparent);
}

.member-list-search {
  background-color: var(--bg-section);
  padding: 8px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.member-list-search input[type=text] {
  width: 100%;
  font-size: var(--fontsize-s);
  background-color: var(--white);
  color: var(--black-glyph);
  line-height: 1;
  padding: 4px 4px 4px 26px;
  min-height: 2rem;
  border-radius: 4px;
  outline: 1px solid transparent;
}
.member-list-search input[type=text]::placeholder {
  color: color-mix(in srgb, var(--black-glyph) 50%, transparent);
}
.member-list-search input[type=text]:focus {
  outline: 1px solid var(--primary);
}
.member-list-search:after {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  width: 13px;
  height: 13px;
  background: url(/assets/img/icon-search-13x13.svg) no-repeat center center/13px 13px;
  transform: translateY(-50%);
}

.member-list {
  display: flex;
  flex-direction: column;
  width: 240px;
  padding: 0 8px;
  height: 550px;
  overflow-y: hidden;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0) rgba(225, 225, 225, 0);
  transition: all 0.3s ease 0s;
}
.member-list:hover {
  overflow-y: auto;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(225, 225, 225, 0);
}
.member-list:hover::-webkit-scrollbar {
  width: 11px;
  background-color: rgba(225, 225, 225, 0);
}
.member-list:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 99px;
}

.member-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  border-top: 1px solid var(--line);
  width: 224px;
}
.member-list-item:first-child {
  border-top: none;
}
.member-list-item .user-icon {
  cursor: pointer;
}

.member-list-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: calc(100% - 12px - 35px);
}
.member-list-text p {
  font-size: var(--fontsize-s);
  line-height: 1;
  padding: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: clip;
  width: 100%;
}
.member-list-text p:hover {
  text-decoration: underline;
  cursor: pointer;
}
.member-list-text .dept {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: clip;
  line-height: 0;
}
.member-list-text .dept li {
  font-size: var(--fontsize-xs);
  line-height: 1;
  display: inline;
}
.member-list-text .dept li:before {
  content: "・";
}
.member-list-text .dept li:first-child:before {
  content: none;
}
.member-list-text a {
  color: var(--primary-dark);
}

.rev .member-list-text {
  flex-direction: column-reverse;
}

.p1312 .member-list-text .dept li {
  font-size: var(--fontsize-ss);
}

.p1313 .member-list-text .dept li {
  font-size: var(--fontsize-s);
}

.p1512 {
  width: 256px;
}
.p1512 .member-list-item {
  padding: 14px 2px;
  width: 240px;
}
.p1512 .member-list-text {
  gap: 6px;
}
.p1512 .member-list-text p {
  font-size: var(--fontsize-m);
}
.p1512 .member-list-text .dept li {
  font-size: var(--fontsize-ss);
}

.p1513 {
  width: 256px;
}
.p1513 .member-list-item {
  padding: 14px 2px;
  width: 240px;
}
.p1513 .member-list-text {
  gap: 6px;
}
.p1513 .member-list-text p {
  font-size: var(--fontsize-m);
}
.p1513 .member-list-text .dept li {
  font-size: var(--fontsize-s);
  line-height: 1.2;
}

/*------------------------------------------------------------------

ユーザーアイコン

--------------------------------------------------------------------*/
.user-icon {
  width: 35px;
  height: 35px;
  position: relative;
}
.user-icon img,
.user-icon span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: radial-gradient(circle 6px at 88.5714285714% 88.5714285714%, transparent 5.5px, #000 6.5px, #000 0);
  /* Sfariの拡大表示時に位置がずれるためcalc内は%で計算 */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
.user-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  list-style: 1;
  font-size: 0.9375rem;
}

.user-icon:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2AB800;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.logoff:after {
  background-color: color-mix(in srgb, #2AB800 25%, #FFF);
  border: 1px solid #2AB800;
}

.offline img,
.offline span {
  -webkit-mask-image: none;
}
.offline:after {
  display: none;
}

/*------------------------------------------------------------------

引用

--------------------------------------------------------------------*/
#quote-demo .talk-wrapper {
  max-width: min(680px, 100%);
  min-width: min(428px, 100%);
  width: 48%;
  transition: opacity 0.5s ease 0s;
  padding-bottom: 100px;
}

.msg {
  width: 100%;
}

.msg-contents {
  width: 100%;
  max-width: calc(100% - 39px);
}

/*.balloon{
    //max-width: calc(100% - 60px);
}
.balloon-inner{
    max-width: calc(100% - 9px - 56px);
}*/
.quote-block,
.quote-inner {
  max-width: 100%;
}

.msg {
  position: relative;
}
.msg .quote-type-c {
  padding-left: 14px;
  margin: 4px 0;
  position: relative;
  cursor: pointer;
}
.msg .quote-type-c a {
  color: color-mix(in srgb, var(--black-glyph) 50%, transparent);
}
.msg .quote-type-c:hover .quote-bar:before {
  height: calc(100% - 4px);
}
.msg .quote-type-c:hover .quote-bar:after {
  opacity: 1;
  bottom: -6px;
}
.msg .quote-type-c.open {
  cursor: text;
}
.msg .quote-type-c.open:hover .quote-bar:before {
  height: 100%;
}
.msg .quote-type-c.open:hover .quote-bar:after {
  opacity: 0;
  bottom: -4px;
}
.msg .quote-type-c.open:hover .quote-bar:hover:after {
  bottom: 0;
  opacity: 1;
}

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

.quote-inner {
  line-height: var(--line-height-s);
  font-size: var(--fontsize-m);
  width: 100%;
}

.quote-type-c .quote-inner {
  color: color-mix(in srgb, var(--black-glyph) 50%, transparent);
  height: var(--line-height-s);
  transition: height 0.3s var(--ease-OutExpo) 0s;
  overflow: hidden;
}
.quote-type-c .quote-inner br {
  display: none;
}

.open .quote-inner {
  height: auto;
  height: calc-size(auto, size);
}
.open .quote-inner br {
  display: inline;
}
.open .quote-bar:after {
  bottom: -4px;
  transform: rotate(180deg);
}

.quote-bar {
  position: absolute;
  left: -2px;
  top: 0;
  width: 14px;
  height: 100%;
  cursor: pointer;
}
.quote-bar:before, .quote-bar:after {
  position: absolute;
}
.quote-bar:before {
  content: "";
  left: 4px;
  top: 0;
  background-color: color-mix(in srgb, var(--black-glyph) 40%, transparent);
  width: 4px;
  height: 100%;
  border-radius: 2px;
  display: block;
}
.quote-bar:after {
  content: "\e941";
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50% 50%;
  color: var(--bg-msg-r);
  background-color: color-mix(in srgb, var(--black-glyph) 40%, var(--bg-msg-r));
  font-family: "dicon" !important;
  left: -2px;
  bottom: 0;
  line-height: 1;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  border: 2px solid var(--bg-msg-r);
  transition: bottom 0.3s var(--ease-OutQuart) 0s, opacity 0.2s var(--ease-OutExpo) 0s;
  opacity: 0;
}

.my-msg {
  --local-size:16px;
  /*a{
      color: var(--primary-light);
  }*/
}
.my-msg .msg-contents,
.my-msg .balloon {
  max-width: 100%;
}
.my-msg .quote-type-c .quote-inner {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}
.my-msg .quote-type-c a {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}
.my-msg .quote-type-c .quote-bar:before {
  background-color: color-mix(in srgb, var(--white) 50%, transparent);
}
.my-msg .quote-type-c .quote-bar:after {
  color: var(--bg-msg-s);
  background-color: color-mix(in srgb, var(--white) 50%, var(--bg-msg-s));
  border: 2px solid var(--bg-msg-s);
}

/*------------------------------------------------------------------

TYPE K

--------------------------------------------------------------------*/
.quote-type-k {
  line-height: var(--line-height-s);
  font-size: var(--fontsize-m);
  color: color-mix(in srgb, var(--black-glyph) 50%, transparent);
  width: 100%;
  height: calc(var(--line-height-s) * 5);
  position: relative;
  margin: 2px 0 14px;
}
.quote-type-k:not(.open) {
  cursor: pointer;
}
.quote-type-k:not(.open) p {
  cursor: pointer;
}
.quote-type-k:not(.open):hover .quote-inner p {
  transform: translateY(calc(var(--line-height-s) * -1.5));
}
.quote-type-k:not(.open):hover .quote-button:before {
  color: var(--primary);
  background-color: color-mix(in srgb, var(--primary) 10%, var(--white));
}
.quote-type-k:before, .quote-type-k:after {
  position: absolute;
  content: "";
  display: block;
}
.quote-type-k:before {
  width: 4px;
  height: calc(100% + 0px);
  border-radius: 2px;
  left: 2px;
  top: 0;
  background-color: color-mix(in srgb, var(--black-glyph) 40%, transparent);
}
.quote-type-k:after {
  left: 14px;
  bottom: -14px;
  width: calc(100% - 14px);
  height: calc(var(--line-height-s) * 1.5 + 14px);
  background: linear-gradient(0deg, color-mix(in srgb, var(--bg-msg-r) 80%, transparent) 0%, color-mix(in srgb, var(--bg-msg-r) 0%, transparent) 100%);
}
.quote-type-k .quote-inner {
  padding: 0 0 0 14px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.quote-type-k .quote-inner p {
  transition: transform 0.5s var(--ease-swing) 0s;
}
.quote-type-k.open {
  height: auto;
  height: calc-size(auto, size);
}
.quote-type-k.open:after {
  opacity: 0;
}
.quote-type-k.open:before {
  height: calc(100% + 8px);
}
.quote-type-k:not(.open) {
  height: calc(var(--line-height-s) * 8);
  animation: closeQuote 0.4s var(--ease-swing) 0s forwards;
  /*&:before{
      animation: closeQuoteBar 0.4s var(--ease-swing) 0s forwards;
  }
  .quote-inner{
      height: calc(100% + 14px);
      animation: closeQuoteInner 0.4s ease 0s forwards;
  }
  */
}

@keyframes closeQuoteBar {
  0% {
    height: calc(100% + 42px);
  }
  100% {
    height: calc(100% + 8px);
  }
}
@keyframes closeQuoteInner {
  0% {
    height: calc(100% + 28px);
  }
  100% {
    height: 100%;
  }
}
@keyframes closeQuote {
  0% {
    height: calc(var(--line-height-s) * 8);
  }
  100% {
    height: calc(var(--line-height-s) * 5);
  }
}
.quote-button {
  width: 100%;
  height: 14px;
  position: absolute;
  right: 0;
  bottom: -14px;
  font-family: "dicon" !important;
  text-align: center;
  cursor: pointer;
  overflow: visible;
  z-index: 5;
  /*&:after{
      color:color-mix(in srgb, var(--black-glyph) 50%, transparent);
      content: "\e90d";
      position: absolute;
      top:50%;
      right: 28px;
      transform: translate(0, -50%);
      font-size: 11px;
      transition:opacity 0.6s ease 0s;
  }*/
}
.quote-button:before {
  content: "";
  background-color: var(--white);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  color: var(--gray-glyph);
  width: 20px;
  height: 14px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.quote-button:after {
  content: "\e91f";
  font-size: 7px;
  color: var(--gray-glyph);
  width: 20px;
  height: 14px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.quote-button:hover:before {
  background-color: color-mix(in srgb, var(--primary) 10%, var(--white));
}
.quote-button:hover:after {
  color: var(--primary);
}

.open {
  transition: opacity 0.2s ease 0s;
  /*&:has(.quote-button:active){
      .quote-inner{
          opacity: 0;
      }
  }*/
}
.open .quote-button:before, .open .quote-button:after {
  transition: top 0.3s ease 0s;
}
.open .quote-button:after {
  transform: rotate(-180deg);
}
.open .quote-button:hover:before, .open .quote-button:hover:after {
  top: -6px;
}
.open:before {
  transition: height 0.5s var(--ease-swing) 0s;
}
.open:after {
  transition: all 0.5s var(--ease-swing) 0s;
}
.open:has(.quote-button:hover):before {
  height: calc(100% + 0px);
}
.open:has(.quote-button:hover):after {
  opacity: 1;
}

.my-msg .quote-type-k {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}
.my-msg .quote-type-k:before {
  background-color: color-mix(in srgb, var(--white) 50%, transparent);
}
.my-msg .quote-type-k:after {
  background: linear-gradient(0deg, color-mix(in srgb, var(--bg-msg-s) 80%, transparent) 0%, color-mix(in srgb, var(--bg-msg-s) 0%, transparent) 100%);
}
.my-msg .quote-type-k a {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}
/*------------------------------------------------------------------

TYPE M

--------------------------------------------------------------------*/
.quote-type-m {
  line-height: var(--line-height-s);
  font-size: var(--fontsize-m);
  color: color-mix(in srgb, var(--black-glyph) 50%, transparent);
  width: 100%;
  height: calc(var(--line-height-s) * 5);
  position: relative;
  margin: 4px 0;
  padding: 4px 0;
  scroll-margin-top: 8px;
}
.quote-type-m:not(.open) {
  cursor: pointer;
}
.quote-type-m:not(.open) p {
  cursor: pointer;
}
.quote-type-m:not(.open):hover .quote-inner p {
  transform: translateY(calc(var(--line-height-s) * -1.5));
}
.quote-type-m:not(.open):hover .quote-button-inner {
  background-color: rgba(0, 0, 0, 0.5);
}
.quote-type-m:before, .quote-type-m:after {
  position: absolute;
  content: "";
  display: block;
}
.quote-type-m:before {
  width: 5px;
  height: calc(100% + 0px);
  border-radius: 2px;
  left: 2px;
  top: 0;
  background-color: color-mix(in srgb, var(--black-glyph) 40%, transparent);
}
.quote-type-m:after {
  left: 14px;
  bottom: 0;
  width: calc(100% - 14px);
  height: calc(var(--line-height-s) * 1.5 + 14px);
  background: linear-gradient(0deg, color-mix(in srgb, var(--bg-msg-r) 80%, transparent) 0%, color-mix(in srgb, var(--bg-msg-r) 0%, transparent) 100%);
}
.quote-type-m .quote-inner {
  padding: 0 0 0 16px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.quote-type-m .quote-inner p {
  transition: transform 0.5s var(--ease-swing) 0s;
}
.quote-type-m.open {
  height: auto;
  height: calc-size(auto, size);
  padding: 4px 0 24px;
}
.quote-type-m.open:after {
  opacity: 0;
}
.quote-type-m:not(.open) {
  height: calc(var(--line-height-s) * 7);
  animation: closeQuote2 0.2s ease 0s forwards;
}

.quote-button2 {
  width: 100%;
  height: 14px;
  position: absolute;
  right: 0;
  bottom: 4px;
  text-align: center;
  cursor: pointer;
  overflow: visible;
  z-index: 5;
  user-select: none;
}
.quote-button2 .quote-button-inner {
  background-color: rgba(0, 0, 0, 0.15);
  width: fit-content;
  color: var(--bg-msg-r);
  font-size: 0.6875rem;
  line-height: 1;
  padding: 4px 8px 4px 10px;
  border-radius: 99px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.quote-button2 .quote-button-inner:after {
  font-family: "dicon" !important;
  content: "\e91f";
  font-size: 7px;
  position: relative;
  top: -1px;
  padding: 2px 0 2px 2px;
}
.quote-button2:hover .quote-button-inner {
  background-color: rgba(0, 0, 0, 0.5);
}

.open {
  transition: opacity 0.2s ease 0s;
}
.open .quote-button2:before, .open .quote-button2:after {
  transition: top 0.3s ease 0s;
}
.open .quote-button2 .quote-button-inner:after {
  content: "\e921";
}
.open:before {
  transition: height 0.5s var(--ease-swing) 0s;
}
.open:after {
  transition: all 0.5s var(--ease-swing) 0s;
}
.open:has(.quote-button:hover):before {
  height: calc(100% + 0px);
}
.open:has(.quote-button:hover):after {
  opacity: 1;
}

.my-msg .quote-type-m {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}
.my-msg .quote-type-m:before {
  background-color: color-mix(in srgb, var(--white) 50%, transparent);
}
.my-msg .quote-type-m:after {
  background: linear-gradient(0deg, color-mix(in srgb, var(--bg-msg-s) 80%, transparent) 0%, color-mix(in srgb, var(--bg-msg-s) 0%, transparent) 100%);
}
.my-msg .quote-type-m a {
  color: color-mix(in srgb, var(--white) 75%, transparent);
}
.my-msg .quote-type-m:not(.open):hover .quote-button-inner {
  background-color: rgba(255, 255, 255, 0.7);
}
.my-msg .quote-type-m .quote-button2 .quote-button-inner {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--bg-msg-s);
}
.my-msg .quote-type-m .quote-button2:hover .quote-button-inner {
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes closeQuote2 {
  0% {
    height: calc(var(--line-height-s) * 7);
  }
  100% {
    height: calc(var(--line-height-s) * 5);
  }
}/*# sourceMappingURL=stickies-org.css.map */