@charset "UTF-8";

/*
Theme Name: original
Author: original
Description: Generic WordPress starter theme.
Version: 2.0.4
*/

/* =========================================================
   Base
========================================================= */
:root {
  --theme-bg: #0f0f0f;
  --theme-surface: #151515;
  --theme-text: #f7f7f7;
  --theme-muted: rgba(255, 255, 255, 0.72);
  --theme-border: rgba(255, 255, 255, 0.12);
  --theme-accent: #FFFFFF;
  --theme-header-h: 78px;
  --theme-font: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

html {
  /* ページ全体の遅延スクロールは使用しない。アンカー移動のみJSで滑らかに制御。 */
  scroll-behavior: auto;
  scroll-padding-top: var(--theme-header-h);
}

body {
  margin: 0;
  background: var(--theme-bg);
  color: var(--theme-text);
  font-family: var(--theme-font);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
}

body.is-drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Base paragraph text */
p {
  font-size: 13px;
  line-height: 2;
}

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.load-fade {
  opacity: 1;
}

@media all and (max-width: 1023px) {
  .spnone {
    display: none !important;
  }
}

@media all and (min-width: 1024px) {
  .pcnone {
    display: none !important;
  }
}

/* =========================================================
   Generic layout
========================================================= */
.container,
.front-container,
.contents,
.blog-contents {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.container,
.front-container {
  box-sizing: border-box;
}

article {
  width: min(960px, calc(100% - 48px));
  margin-inline: auto;
}

.anchor-disp {
  margin-top: calc(var(--theme-header-h) * -1);
  padding-top: var(--theme-header-h);
  height: 0;
}

/* =========================================================
   Header / Navigation
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: auto;
  min-height: 0;
  margin-top: 0;
  color: #fff;
  text-align: left;
  background: rgba(13, 13, 13, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-animation {
  margin-top: 0;
  background: rgba(13, 13, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--theme-header-h);
  padding: 18px 5%;
  box-sizing: border-box;
}

.site-header__logo img,
.site-drawer__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 190px;
}

.site-header__logo a,
.site-drawer__logo a {
  text-decoration: none;
}

.site-header__site-name,
.site-drawer__site-name {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header__logo .custom-logo,
.site-drawer__logo .custom-logo {
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 72px;
}

.site-header__nav {
  display: none;
}

.site-header__menu,
.site-drawer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header__menu a {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.site-header__menu a:hover {
  opacity: 0.65;
}

.site-header__menu span {
  display: block;
  margin-top: 5px;
  color: var(--theme-accent);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-menu-button {
  position: relative;
  z-index: 10002;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-menu-button__line {
  display: block;
  width: 28px;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-menu-button__text {
  display: none;
}

.site-menu-button[aria-expanded="true"] .site-menu-button__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-menu-button[aria-expanded="true"] .site-menu-button__line:nth-child(2) {
  opacity: 0;
}

.site-menu-button[aria-expanded="true"] .site-menu-button__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-drawer {
  position: fixed;
  inset: 0;
  /* header(10000)より下に置く。ドロワー開時もヘッダー上の×ボタンを操作可能にするため。
     ヘッダー背景は半透明なので、背後のドロワーの黒が透けて全面黒に見える。 */
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.94);
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.site-drawer[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.site-drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 48px, 640px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 80px 0 56px;
  box-sizing: border-box;
}

.site-drawer__logo {
  margin-bottom: 42px;
  text-align: center;
}

.site-drawer__logo img {
  margin: 0 auto;
}

.site-drawer__menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-drawer__menu li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-drawer__menu a {
  display: block;
  padding: 18px 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
  text-decoration: none;
}

.site-drawer__menu span {
  display: block;
  margin-top: 6px;
  color: var(--theme-accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: block;
  }

  .site-menu-button {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --theme-header-h: 68px;
  }

  .site-header__inner {
    padding: 14px 20px;
  }

  .site-header__logo .custom-logo {
    max-width: 180px;
    max-height: 56px;
  }

  .site-drawer__logo .custom-logo {
    max-width: 220px;
    max-height: 90px;
  }
}

/* =========================================================
   Footer
========================================================= */
#footer,
.site-footer {
  padding: 80px 24px 56px;
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__logo,
.site-footer__logo a,
.site-footer__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 72px;
}

.site-footer__site-name {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}

.site-footer__tagline {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: right;
}

.site-footer__nav {
  margin-top: 36px;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__menu a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
}

.site-footer__pagetop {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__pagetop:hover {
  color: #fff;
}

.site-footer__copyright,
#footer small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-logo,
.footer-text,
.pagetop {
  display: none;
}

@media (max-width: 767px) {
  #footer,
  .site-footer {
    padding: 64px 20px 44px;
  }

  .site-footer__inner {
    width: 90%;
  }

  .site-footer__brand {
    display: block;
    padding-bottom: 32px;
  }

  .site-footer__logo img,
  .site-footer__logo .custom-logo {
    max-width: 160px;
    max-height: 64px;
  }

  .site-footer__tagline {
    max-width: none;
    margin-top: 20px;
    text-align: left;
  }

  .site-footer__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }

  .site-footer__bottom {
    display: block;
    margin-top: 42px;
  }

  .site-footer__copyright {
    margin-top: 18px;
  }
}


body {
  top: 0 !important;
}

/* WORKS media modal
--------------------------------------------- */
.works-media-trigger {
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.works-media-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 8px 11px;
  background: rgba(15, 15, 15, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.front-work-card__thumb,
.works-archive-card__thumb {
  position: relative;
}

.works-media-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.works-media-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.works-media-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.works-media-modal.is-open .works-media-modal__overlay {
  opacity: 1;
}

.works-media-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  max-height: 88svh;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.works-media-modal.is-open .works-media-modal__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.works-media-modal__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-height: 88svh;
  overflow: hidden;
}

.works-media-modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.works-media-modal__video iframe,
.works-media-modal__video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.works-media-modal__image {
  display: block;
  max-width: 100%;
  max-height: 86svh;
  object-fit: contain;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.works-media-modal__image--enter {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.works-media-modal__image--from-left {
  transform: translate3d(-18px, 0, 0);
}

.works-media-modal__image--from-right {
  transform: translate3d(18px, 0, 0);
}

.works-media-modal__image--leave {
  position: absolute;
  inset: auto;
  opacity: 0;
  transform: translate3d(0, -12px, 0);
}

.works-media-modal__close,
.works-media-modal__nav {
  position: absolute;
  z-index: 3;
  border: 0;
  background: rgba(15, 15, 15, 0.72);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.works-media-modal__close:hover,
.works-media-modal__nav:hover {
  background: rgba(255, 255, 255, 0.16);
}

.works-media-modal__close {
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 1;
}

.works-media-modal__nav {
  top: 50%;
  width: 44px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 38px;
  line-height: 1;
}

.works-media-modal__nav--prev {
  left: -60px;
}

.works-media-modal__nav--next {
  right: -60px;
}

.works-media-modal__counter {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.works-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .works-media-modal {
    padding: 18px;
  }

  .works-media-modal__panel {
    width: 100%;
  }

  .works-media-modal__close {
    top: 12px;
    right: 12px;
  }

  .works-media-modal__nav {
    width: 40px;
    height: 52px;
    font-size: 32px;
  }

  .works-media-modal__nav--prev {
    left: 8px;
  }

  .works-media-modal__nav--next {
    right: 8px;
  }

  .works-media-modal__counter {
    bottom: 12px;
  }
}

/* =========================================================
   Footer logo size sync with header
========================================================= */
.site-footer__logo,
.site-footer__logo a,
.site-footer__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-footer__logo img,
.site-footer__logo .custom-logo,
.site-footer .custom-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 220px !important;
  max-height: 72px !important;
}

.site-footer__site-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .site-footer__logo img,
  .site-footer__logo .custom-logo,
  .site-footer .custom-logo {
    width: auto !important;
    height: auto !important;
    max-width: 180px !important;
    max-height: 56px !important;
  }
}

/* =========================================================
   Single news page
========================================================= */
.single .site-header {
  background: rgba(13, 13, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.single .site-header__inner {
  min-height: 72px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.single-news-page {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--theme-header-h) + 88px) 0 104px;
  box-sizing: border-box;
}

.single-news-header {
  margin: 0 0 52px;
  text-align: center;
}

.single-news-category {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.single-news-title {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.single-news-date {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.single-news-article {
  width: 100%;
  max-width: none;
  margin: 0;
}

.single-news-content {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.single-news-content p {
  margin: 0 0 2em;
}

.single-news-content h2,
.single-news-content h3,
.single-news-content h4 {
  margin: 2.6em 0 1em;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}

.single-news-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.single-news-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.4em auto;
}

.single-news-nav {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.single-news-nav__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.single-news-nav__item a {
  display: block;
  min-height: 86px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.single-news-nav__item a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.single-news-nav__item--next {
  text-align: right;
}

.single-news-nav__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.single-news-nav__title {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
}

.single-news-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(240px, 100%);
  min-height: 48px;
  margin: 38px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.single-news-back:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.04);
}

.single-news-edit {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 767px) {
  .single .site-header__inner {
    min-height: 68px;
    padding: 12px 18px;
  }

  .single .site-menu-button {
    width: 36px;
    height: 28px;
    margin-left: auto;
  }

  .single .site-menu-button__line {
    width: 28px;
  }

  .single-news-page {
    width: 90%;
    padding-top: calc(var(--theme-header-h) + 58px);
    padding-bottom: 76px;
  }

  .single-news-header {
    margin-bottom: 38px;
    text-align: left;
  }

  .single-news-title {
    font-size: 23px;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }

  .single-news-content {
    font-size: 13px;
    line-height: 2.1;
  }

  .single-news-nav {
    margin-top: 54px;
  }

  .single-news-nav__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .single-news-nav__item--next {
    text-align: left;
  }

  .single-news-nav__item a {
    min-height: 0;
    padding: 18px;
  }
}


/* =========================================================
   Footer logo mobile center alignment
========================================================= */
@media (max-width: 767px) {
  .site-footer__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .site-footer__logo,
  .site-footer__logo a,
  .site-footer__logo .custom-logo-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer__logo img,
  .site-footer__logo .custom-logo,
  .site-footer .custom-logo {
    margin-right: auto;
    margin-left: auto;
  }
}


/* Footer logo center alignment fix
--------------------------------------------- */
.site-footer__brand {
  justify-content: center;
  text-align: center;
}

.site-footer__logo,
.site-footer__logo a,
.site-footer__logo .custom-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-inline: auto;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
  display: block;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .site-footer__brand {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .site-footer__logo,
  .site-footer__logo a,
  .site-footer__logo .custom-logo-link {
    width: 100%;
    justify-content: center;
  }
}


/* Footer logo strict center fix
--------------------------------------------- */
.site-footer__brand {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  text-align: center !important;
}

.site-footer__logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.site-footer__logo .custom-logo-link {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 auto !important;
  float: none !important;
}

.site-footer__logo img,
.site-footer__logo .custom-logo,
.site-footer .custom-logo {
  display: block !important;
  margin: 0 auto !important;
  float: none !important;
}

.site-footer__site-name {
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .site-footer__brand,
  .site-footer__logo {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
}

/* AddToAny center alignment
--------------------------------------------- */
.addtoany_share_save_container,
.addtoany_content,
.addtoany_content_bottom {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  clear: both;
}

.addtoany_share_save_container .addtoany_list,
.addtoany_content .addtoany_list,
.addtoany_content_bottom .addtoany_list {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.addtoany_share_save_container .addtoany_list a,
.addtoany_content .addtoany_list a,
.addtoany_content_bottom .addtoany_list a {
  float: none !important;
  display: inline-flex !important;
}

/* Category pages: force all text color to white */
body.category,
body.category * {
  color: #FFFFFF;
}

body.category a,
body.category a:visited,
body.category a:hover,
body.category a:focus,
body.category a:active {
  color: #FFFFFF;
}

body.category svg,
body.category svg * {
  fill: currentColor;
  stroke: currentColor;
}

/* Single page font color white */
body.single,
body.single-post,
.single-news-page,
.single-news-page * {
  color: #FFFFFF;
}

body.single a,
body.single-post a,
.single-news-page a,
.single-news-page a:visited,
.single-news-page a:hover,
.single-news-page a:focus {
  color: #FFFFFF;
}

body.single svg,
body.single-post svg,
.single-news-page svg {
  fill: currentColor;
}
