@charset "UTF-8";
.CSInner01.type02 {
  border-radius: 26px;
  margin-top: 80px;
  padding-bottom: 26px;
}
.localNav02Wrap.type02 {
  border-radius: 26px;
  padding: 40px;
}
.localNav02.type03 {
  display: flex;
  flex-direction: column; /* ← これで縦並びにする */
  gap: 24px; /* デフォルトの間隔 */
}
.localNav02.type03 li a {
  text-align: center;
  display: block;
  color: #C08F45;
  text-decoration: none;
  padding: 0.7em 1.75em 0.7em 1.95em;
  padding: 0.7em 1.25em 0.7em 1.45em;
  border-radius: 9999px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.2em;
  border: 1px solid #D9D9D9;
  background: #fff;
}
.localNav02.type03 li a:hover {
  color: #fff;
  background: #C08F45;
}
.localNav02.type03 li.current a {
  color: #fff;
  background: #C08F45;
}
.stock-box {
  max-width: 360px;
  /*padding: 1em;
      border: 1px solid #ccc;*/
  border-radius: 12px;
  /*font-family: sans-serif;
      background-color: #f9f9f9;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.05);*/
  margin: 20px;
}
@media screen and (max-width: 768px) {
	.stock-box {
		margin: 0;
	}
}
.stock-title {
  font-size: 1.2em;
  font-weight: semi-bold;
}
.stock-price {
  font-size: 1.5em;
  margin-top: 0.5em;
}
.stock-change {
  color: green;
}
.stock-change.negative {
  color: red;
}
canvas {
  margin-top: 20px;
}

/*業績ハイライト*/

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 5em auto 0.5em;
}
.tab {
  font-size: 1.2em;
  color: #82765D;
  padding: .5em 1.5em;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 50px;
}
.tab:hover,
.tab.active {
  background: #82765D;
  color: white;
  border-color: #82765D;
}
.section {
  display: none;
}
.section.active {
  display: block;
}
.chart-block {
  padding: 1em;
  margin-bottom: 2em;
}
.chart-block h2 {
  color: #82765D;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.data-table th, .data-table td {  
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: center;
}
.data-table th {
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  canvas {
    width: 100% !important;
    height: auto !important;
  }
  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

/*IRライブラリー*/    
  .cardList01.type02 {
    flex-direction: column; /* アイテムを縦並びに切り替える */
		margin-left: 0;
		margin-right: 0;
  }
	.cardList01.type02 > .item {
		width: 100%; /* 幅の計算をしやすくするため */
	}
}