/* ========================================================
 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
------------------------------------------------------------------------
--------------------------------------------------------------------- */
.glb-container:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url("../img/index/mv_bg01.webp");
  background-size: cover;
}

/* ========================================================
.sec-mv
======================================================== */
.sec-mv {
  position: relative;
  overflow: hidden;
}

.sec-mv .main-box {
  position: relative;
  height: 50vw;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
}
@media screen and (max-width: 1020px) {
  .sec-mv .main-box {
    min-height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .sec-mv .main-box {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4/5;
    padding: 0;
  }
}

.sec-mv .mv-inner {
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  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;
}
@media screen and (max-width: 1020px) {
  .sec-mv .mv-inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .sec-mv .mv-inner {
    padding: 0 20px;
    max-width: none;
  }
}

.sec-mv .txt-block {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sec-mv .txt-block .mv-ttl,
.sec-mv .txt-block .mv-txt {
  color: #111;
  text-shadow: none;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  margin: 0;
}

.sec-mv .txt-block .mv-ttl {
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
@media screen and (max-width: 1020px) {
  .sec-mv .txt-block .mv-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-mv .txt-block .mv-ttl {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
  }
}

.sec-mv .txt-block .mv-txt {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1020px) {
  .sec-mv .txt-block .mv-txt {
    font-size: 1.3rem;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .sec-mv .txt-block .mv-txt {
    font-size: 1.2rem;
    margin-top: 14px;
    line-height: 1.9;
  }
}

.sec-mv .txt-block .mv-ttl,
.sec-mv .txt-block .mv-txt {
  opacity: 0;
}
.sec-mv .txt-block .mv-ttl.is-show,
.sec-mv .txt-block .mv-txt.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;
}

/* ========================================================
.sec-main
======================================================== */
.sec-main {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .sec-main {
    padding: 56 0;
  }
}

.sec-main .bg-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .sec-main .bg-wrap {
    padding: 56px 4vw;
  }
}

/* ========================================================
.entry-btn (Member Only)
======================================================== */
.entry-btn {
  margin-top: 80px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.entry-btn.is-show {
  opacity: 1;
}

.entry-btn a {
  display: block;
  -webkit-box-shadow: 0 1px 4px #999;
          box-shadow: 0 1px 4px #999;
  border-radius: 2px;
  font-size: 1.6rem;
  text-align: center;
  width: 240px;
  margin: 0 auto;
  padding: 22px 0;
  text-shadow: 1px 1px 3px #999;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition-property: background-color, border-color, color, opacity;
  transition-property: background-color, border-color, color, opacity;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.entry-btn a:hover {
  color: #fff;
  background-color: #000;
}

/* ========================================================
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%;
}

/* ========================================================
front-page topics list
======================================================== */
.front-topics .topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.front-topics .topics-list__item {
  padding: 24px 0;
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 767px) {
  .front-topics .topics-list__item {
    padding: 18px 0;
  }
}
.front-topics .topics-list__item:first-child {
  padding-top: 0;
}

.front-topics .topics-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .front-topics .topics-list__link {
    gap: 16px;
  }
}
@media (any-hover: hover) {
  .front-topics .topics-list__link:hover .topics-list__ttl {
    opacity: 0.55;
  }
}

.front-topics .topics-list__block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.front-topics .topics-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.front-topics .topics-list__date {
  font-size: 1.1rem;
  color: #999;
  letter-spacing: 0.06em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.front-topics .topics-list__tag {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #111;
  font-weight: 500;
  border: 1px solid #d0d0d0;
  padding: 1px 8px;
  line-height: 1.7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.front-topics .topics-list__ttl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .front-topics .topics-list__ttl {
    font-size: 1.3rem;
  }
}

.front-topics .topics-list__excerpt {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.85;
  margin-top: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .front-topics .topics-list__excerpt {
    display: none;
  }
}

/* ========================================================
.company-overview
======================================================== */
.company-overview {
  margin-top: 24px;
  border-top: 1px solid #efefef;
}

.company-overview__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5em;
  padding: 1em 0;
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 767px) {
  .company-overview__row {
    grid-template-columns: 1fr;
    gap: 0.3em;
  }
}

.company-overview__label {
  line-height: 1.7;
  font-weight: bold;
}

.company-overview__content {
  line-height: 1.7;
}/*# sourceMappingURL=index.min.css.map */