html {
  overflow-y: scroll;
}

.guide {
  position: sticky;
  top: 0;
  text-align: left;
  width: 100%;
  background: #E6E1D6;
  z-index: 1000000000;
  font-size: 12px;
  line-height: 150%;
  border-bottom: 3px solid #CBC8C2;
  transition: opacity ease 0.3s;
}
.guide.collapse {
  position: fixed;
  max-height: 40px;
  overflow: hidden;
  opacity: 0.3;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.guide.collapse:hover {
  opacity: 1;
}
.guide.collapse .close *:nth-child(1) {
  display: none;
}
.guide.collapse .guide-title,
.guide.collapse .guide-wrapper,
.guide.collapse .button-wrapper {
  display: none !important;
}
.guide.collapse .guide-list {
  position: static !important;
  justify-content: center;
}
.guide:not(.collapse) .close *:nth-child(1) ~ * {
  display: none;
}
.guide div.grid-1440,
.guide div.grid-1600 {
  position: relative;
}
.guide div.grid-1440:before, .guide div.grid-1440:after,
.guide div.grid-1600:before,
.guide div.grid-1600:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 100vh;
}
.guide div.grid-1440:before,
.guide div.grid-1600:before {
  border-left: 1px solid red;
  left: 0;
}
.guide div.grid-1440:after,
.guide div.grid-1600:after {
  border-right: 1px solid red;
  right: 0;
}
.guide div.grid-1600 {
  max-width: 1600px;
  margin: 0 auto;
}
.guide div.grid-1600:before, .guide div.grid-1600:after {
  border-color: lightcoral;
}
.guide div.grid-1440 {
  max-width: 1440px;
  margin: 0 auto;
}
.guide div.grid-1440:before, .guide div.grid-1440:after {
  border-color: palegreen;
}
@media (max-width: 768px) {
  .guide div.grid-1440 {
    margin: 0 16px;
    width: auto;
  }
}
.guide .inner {
  position: relative;
  max-width: 1660px;
  background-color: inherit;
  margin: 0 auto;
  /*!rtl:ignore*/
  text-align: left;
  /*!rtl:ignore*/
  direction: ltr;
}
.guide .inner .guide-wrapper, .guide .inner .button-wrapper {
  display: flex;
  gap: 20px 0;
  flex-wrap: wrap;
  max-height: 30vh;
  overflow-y: auto;
  padding: 10px 30px;
}
.guide .inner .target {
  font-weight: bold;
  padding-right: 20px;
}
.guide .inner .guide-list {
  position: absolute;
  /*!rtl:ignore*/
  right: 30px;
  top: 10px;
  display: flex;
  gap: 30px;
}
.guide .inner .guide-list a {
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
}
.guide .inner .guide-title {
  padding: 10px 30px 10px 30px;
  font-size: 16px;
  font-weight: bold;
}
.guide .inner .guide-title span {
  color: #a50034;
}
.guide .inner .guide-column {
  max-width: 100%;
  overflow-x: auto;
}
.guide .inner .guide-item {
  padding: 0 0 0 3px;
}
.guide .inner .guide-item-option {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  padding: 2px 20px 0 0;
}
.guide .inner button {
  font-size: 12px;
  line-height: 1;
  padding: 3px 8px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  outline-offset: -2px;
}
.guide .inner button.type-toggle {
  background: lightgray;
}
.guide .inner button.type-select {
  background: white;
}
.guide .inner span {
  display: inline-block;
  padding-right: 5px;
}
.guide .inner button + span {
  padding-left: 20px;
}
.guide .inner .btn-list {
  padding: 5px 0 0 3px;
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
}
.guide .inner .btn-list .btn-item {
  list-style: none;
  padding: 0 0;
  display: inline-block;
}
.guide .inner .btn-list .btn-item .c-button--guide {
  border-radius: 8px;
  padding: 0 8px;
  border: 1px solid #000;
}

.guide-text-type {
  width: 100%;
  padding: 10px;
  text-align: center;
  color: white;
  background: #000;
  font-family: initial;
  box-shadow: 0 0 3px 0 rgba(142, 142, 142, 0.3) inset;
}

.guide-text-option {
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  color: white;
  background: #666;
  font-family: initial;
}

.c-wrapper {
  outline: 1px solid orange;
}

.guide-page {
  padding: 50px 0;
}
.guide-page h1 {
  padding: 30px 0 0 0;
  font-size: 26px;
  text-align: center;
}
.guide-page h2 {
  padding: 30px 0 0 0;
  font-size: 24px;
  text-align: center;
}
.guide-page .links {
  text-align: center;
  margin: 0;
  padding: 20px 0 0 0;
}
.guide-page .links li {
  display: inline;
  padding: 0 10px;
}
.guide-page .links li a {
  color: #000;
}
.guide-page .links li a strong {
  font-weight: bold;
}
.guide-page .list {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}
.guide-page .list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #ddd;
}
.guide-page .list li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}
.guide-page .list .cid {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.guide-page .list .name {
  font-size: 16px;
  line-height: 20px;
  padding-left: 10px;
  flex: 1;
}
.guide-page .list .name a {
  display: inline-block;
  padding: 1px 3px;
  background: transparent;
  border-radius: 3px;
}
.guide-page .list .name a:hover, .guide-page .list .name a:focus-visible {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
.guide-page .list .name a.sample {
  margin-left: 10px;
  margin-right: 0;
}
.guide-page .list .name .sub {
  display: block;
  font-size: 15px;
  line-height: 20px;
  padding: 10px;
  margin-top: 5px;
  background: #e6e1d6;
  border-radius: 10px;
}
.guide-page .list .name .sub span {
  font-size: 10px;
  display: inline-block;
  margin-left: -8px;
}
.guide-page .list .name .sub span:before {
  content: "(";
}
.guide-page .list .name .sub span:after {
  content: ")";
}
.guide-page .list .name .sub .nowrap {
  display: inline-block;
  white-space: nowrap;
  margin: 0 5px;
}
.guide-page .list .name .sub .line {
  display: inline-block;
  font-size: 6px;
  color: #aaa;
  vertical-align: middle;
}
.guide-page .list .name .sub2 {
  display: block;
  font-size: 15px;
  line-height: 20px;
  padding: 10px;
  margin-top: 5px;
  background: #f7d99e;
  border-radius: 10px;
}
.guide-page .list .name .sub2.green {
  background: #b4f0ca;
}
.guide-page .list .name .sub2 span {
  font-size: 10px;
  display: inline-block;
  margin-left: -8px;
}
.guide-page .list .name .sub2 span:before {
  content: "(";
}
.guide-page .list .name .sub2 span:after {
  content: ")";
}
.guide-page .list .name .sub2 .nowrap {
  display: inline-block;
  white-space: nowrap;
  margin: 0 10px;
}
.guide-page .list .name .sub2 .line {
  display: inline-block;
  font-size: 6px;
  color: #aaa;
  vertical-align: middle;
}
.guide-page .list .old {
  font-size: 13px;
  line-height: 20px;
  display: inline;
  float: right;
  color: #aaa;
}
.guide-page .list .old strong {
  color: #000;
}
.guide-page .list .old a {
  color: #aaa;
}
.guide-page .list li.done .old,
.guide-page .list li.current .old {
  color: #000;
}
.guide-page .list .ready {
  position: relative;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  padding-left: 20px;
  color: #aaa;
}
.guide-page .list .ready.confirm {
  color: #000;
}
.guide-page .list .arrow {
  font-size: 10px;
  color: #aaa;
  padding: 0;
  position: absolute;
  left: 7px;
  top: 0;
}
.guide-page .list .arrow:before {
  content: ">";
  font-weight: bold;
}
@media (max-width: 950px) {
  .guide-page .list .ready {
    display: none;
  }
}
.guide-page .list.font ul {
  border-top: 0;
}
.guide-page .list.font li {
  border: 0;
  padding-top: 20px;
}
.guide-page .links a,
.guide-page .list a {
  color: #000;
}
.guide-page .component-count {
  text-align: center;
  padding: 10px 0 0 0;
  font-weight: bold;
}

.dirC-popup {
  position: fixed;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -7%);
  background: #a50034;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  display: none;
  z-index: -626;
  font-size: 24px;
  color: white;
}

.dirC-popup.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
  z-index: 1386260626;
}

#popup-dirC-message {
  white-space: pre-line;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=dev.css.map */
