/* ========================================================
 Weekly Table
======================================================== */
.weekly-data *,
.weekly-data *::before,
.weekly-data *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.weekly-data {
  --bg: #ffffff;
  --surface: #f8f8f8;
  --surface2: #eeeeee;
  --border: #cccccc;
  --text: #111111;
  --text-muted: #555555;
  --accent: #222222;
  --up: #1a5c30;
  --up-bg: rgba(26, 92, 48, 0.08);
  --up-bg-strong: rgba(26, 92, 48, 0.16);
  --down: #a01818;
  --down-bg: rgba(160, 24, 24, 0.07);
  --down-bg-strong: rgba(160, 24, 24, 0.14);
  --neutral: #444444;
  --header-height: 56px;
}

.weekly-data {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

.weekly-data .wd-header {
  background: #ffffff;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.weekly-data .wd-header .main-ttl {
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
}

.weekly-data .wd-header .sub-ttl {
  font-size: 11px;
  color: var(--text-muted);
}

.weekly-data .main-box {
  padding: 16px 0 64px;
  max-width: 100%;
}

.weekly-data .section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.weekly-data .section-label:first-of-type {
  margin-top: 0;
}

.weekly-data .instrument-block {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.weekly-data .accordion-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 10px;
}

.weekly-data .accordion-trigger:hover .square-accordion-btn {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.weekly-data .instrument-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}

.weekly-data .instrument-title .name {
  font-size: 14px;
  color: var(--text);
}

.weekly-data .instrument-title .ticker {
  font-size: 11px;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.07);
  padding: 2px 6px;
}

.weekly-data .square-accordion-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  font-weight: 300;
}

.weekly-data .square-accordion-btn::after {
  content: "+";
  display: inline-block;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.weekly-data .accordion-body {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}

.weekly-data .accordion-body-inner-pad {
  padding-bottom: 20px;
}

.weekly-data .instrument-block.open .accordion-body {
  max-height: 2000px;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}

.weekly-data .instrument-block.open .square-accordion-btn {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.weekly-data .square-accordion-btn::after {
  content: "+";
  display: inline-block;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.weekly-data .instrument-block.open .square-accordion-btn::after {
  content: "+";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.weekly-data .instrument-block:not(.open) .square-accordion-btn::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.weekly-data .table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
}

.weekly-data table {
  border-collapse: collapse;
  width: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.weekly-data thead th {
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.weekly-data thead th:first-child {
  text-align: left;
  min-width: 110px;
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--surface2);
  border-right: none;
  -webkit-box-shadow: inset -1px 0 0 var(--border), 2px 0 4px rgba(0, 0, 0, 0.06);
          box-shadow: inset -1px 0 0 var(--border), 2px 0 4px rgba(0, 0, 0, 0.06);
}

.weekly-data tbody tr {
  border-bottom: 1px solid var(--border);
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover td {
  background-color: rgba(0, 0, 0, 0.03);
}

tbody tr:hover td:first-child {
  background-color: rgba(0, 0, 0, 0.05);
}

.weekly-data tbody td {
  padding: 6px 12px;
  text-align: center;
  font-size: 11.5px;
  white-space: nowrap;
  color: var(--text);
  background: var(--surface);
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
}

.weekly-data tbody td:first-child {
  text-align: left;
  font-size: 12px;
  color: var(--text);
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--surface);
  border-right: none;
  -webkit-box-shadow: inset -1px 0 0 var(--border), 2px 0 4px rgba(0, 0, 0, 0.06);
          box-shadow: inset -1px 0 0 var(--border), 2px 0 4px rgba(0, 0, 0, 0.06);
}

tr.row-updown-count td:not(:first-child) {
  color: var(--neutral);
}

tr.row-weeks td:not(:first-child) {
  color: var(--text-muted);
  font-size: 11px;
}

/* Value coloring */
.pos {
  color: var(--up);
}

.neg {
  color: var(--down);
}

.cell-pos-strong {
  background: var(--up-bg-strong) !important;
  color: var(--up);
  font-weight: 600;
}

.cell-neg-strong {
  background: var(--down-bg-strong) !important;
  color: var(--down);
  font-weight: 600;
}

.cell-pos {
  background: var(--up-bg) !important;
  color: var(--up);
}

.cell-neg {
  background: var(--down-bg) !important;
  color: var(--down);
}

.cell-empty {
  color: var(--border);
}

/* Up rate row */
tr.row-up-rate td:not(:first-child) {
  color: var(--up);
  font-weight: 500;
}

tr.row-down-rate td:not(:first-child) {
  color: var(--down);
  font-weight: 500;
}

tr.row-up-avg td:not(:first-child) {
  color: var(--up);
}

tr.row-down-avg td:not(:first-child) {
  color: var(--down);
}

/* Heatmap tiers for up-rate cells */
.ur-vhigh {
  background: #1a5c30 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.ur-high {
  background: rgba(26, 92, 48, 0.22) !important;
  color: #0f3d1f !important;
  font-weight: 700 !important;
}

.ur-mid {
  background: rgba(26, 92, 48, 0.09) !important;
  color: var(--up) !important;
}

.ur-vlow {
  background: #7a1010 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.ur-low {
  background: rgba(160, 24, 24, 0.22) !important;
  color: #5a0a0a !important;
  font-weight: 700 !important;
}

.ur-midlo {
  background: rgba(160, 24, 24, 0.09) !important;
  color: var(--down) !important;
}

.line-chart {
  width: 800px;
  height: 320px;
}
@media screen and (max-width: 1020px) {
  .line-chart {
    width: 100%;
  }
}

.line-chart-attention {
  text-align: right;
}

.bar-chart {
  margin-top: 32px;
  width: 800px;
  height: 320px;
}
@media screen and (max-width: 1020px) {
  .bar-chart {
    width: 100%;
  }
}

/* ========================================================
.sec-detail
======================================================== */
/* .detail-box
=========================================== */
.sec-detail .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
/* .detail-pie-chart
=========================================== */
.sec-detail .pie-chart {
  width: 50%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1020px) {
  .sec-detail .pie-chart {
    width: 100%;
  }
}
.sec-detail .pie-chart__in {
  width: 100%;
}
@media screen and (max-width: 1020px) {
  .sec-detail .pie-chart__in {
    width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .sec-detail .pie-chart__in {
    width: 320px;
  }
}

/* .detail-table
=========================================== */
.sec-detail .detail-table {
  margin-top: 24px;
  width: 100%;
}
.sec-detail .table-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.2rem;
}
.sec-detail .table-heading__ttl {
  width: calc(100% - 200px);
  text-align: center;
  letter-spacing: 0.5em;
}
.sec-detail .table-heading__operation {
  width: 100px;
  text-align: right;
}
.sec-detail .table-heading__tolerance {
  position: relative;
  width: 100px;
  padding-right: 10px;
  text-align: right;
}
.sec-detail .table-heading__tolerance:after {
  position: absolute;
  content: "*";
  top: 3px;
  right: 0;
  font-size: 1rem;
}

.sec-detail .table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0 4px;
}
.sec-detail .table-item__ttl {
  width: calc(100% - 200px);
}
@media screen and (max-width: 767px) {
  .sec-detail .table-item__ttl {
    line-height: 1.3;
  }
}
.sec-detail .table-item__operation {
  width: 100px;
  text-align: right;
}
.sec-detail .table-item__tolerance {
  width: 100px;
  text-align: right;
}

.sec-detail .table-attention {
  padding-top: 16px;
}
.sec-detail .table-attention:before {
  content: "*";
}

/* .achievement-detail
=========================================== */
.sec-achievement .achievement-detail {
  width: 100%;
  margin: 40px auto 0;
}

.sec-achievement .detail-date {
  text-align: right;
}

.sec-achievement .detail-ttl {
  margin-top: 10px;
  padding: 8px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
}

.sec-achievement .detail-list01 {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec-achievement .detail-list01 .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42%;
  padding-top: 8px;
}
.sec-achievement .detail-list01 .detail-item .item-ttl > .asterisk {
  font-size: 1rem;
  vertical-align: 1px;
}

.sec-achievement .detail-list02 {
  padding-top: 20px;
}
.sec-achievement .detail-list02 .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42%;
  padding-top: 4px;
}

.sec-achievement .detail-attention {
  padding-top: 20px;
}
.sec-achievement .detail-attention + .detail-attention {
  padding-top: 8px;
}

/*! --------------------------------------------------------------------
------------------------------------------------------------------------
index
------------------------------------------------------------------------
--------------------------------------------------------------------- */
.sec-mv .main-box {
  position: relative;
  height: 60vh;
  min-height: 344px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec-mv .main-box {
    height: calc(100vh - 64px);
  }
}

.sec-mv .txt-block {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-mv .txt-block .mv-ttl,
.sec-mv .txt-block .mv-txt {
  color: #fff;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.sec-mv .txt-block .mv-ttl {
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 4.8rem;
}

.sec-mv .txt-block .mv-txt {
  margin-top: 40px;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}

.sec-mv .txt-block .mv-ttl,
.sec-mv .txt-block .mv-txt,
.sec-mv .txt-block .entry-btn {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.sec-mv .txt-block .mv-ttl.is-show,
.sec-mv .txt-block .mv-txt.is-show,
.sec-mv .txt-block .entry-btn.is-show {
  opacity: 1;
}

.sec-mv .bg-video video {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
}

/* ========================================================
multi-factor
======================================================== */
.diagram-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 670/560;
}

.diagram-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=index.min.css.map */