.main_visual {
  background: url("img/mv.jpg") no-repeat right top;
}

.flex_box {
  display: flex;
  justify-content: space-between;
}

.flex_fl {
  width: 55%;
}

.flex_fr {
  width: 40%;
  margin-top: 50px;
}

.pic_miyasaka {
  border-radius: 10px;
  width: 370px;
  height: auto;
}

.heading_txt_red {
  font-size: 160%;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color_red);
  padding-left: 41px;
  margin-top: 10px;
  font-feature-settings: "palt"1;
  letter-spacing: 0.1em;
}

.president .heading_txt_red {
  padding-left: 0;
  margin: 50px 0 15px;
}

.spirit_img {
  margin: -80px 0 0;
}

.heading_txt img {
  float: right;
  margin: -50px 0 30px 90px;
}

.outline {
  width: 45%;
}

.outline_line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 2em 0;
}

.outline_line dt {
  width: 30%;
}

.outline_line dd {
  width: 70%;
}

.title_box {
  width: 15%;
}

.history_box {
  width: 85%;
  margin-top: 20px;
}

.flex_box.btn_box_2 {
  width: 1100px;
  margin: 0 0 0 auto;
}

.btn_box_2 .btn_arrow {
  width: 48%;
  margin: 50px 0 0;
}

.btn_box_3 {
  justify-content: space-between;
}

.btn_box_3 .btn_arrow {
  width: 31%;
  margin: 50px 0 0;
}

.heading_title_sub_red {
  background-color: var(--color_red);
  border-radius: 5px;
  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  margin: 50px 0 50px 50px;
}

@media print, screen and (max-width: 1070px) {
  .main_visual {
    background: url("img/mv_sp.jpg") no-repeat center 50%;
    background-size: cover;
  }

  .flex_box {
    display: block;
  }

  .flex_fl {
    width: 100%;
  }

  .flex_fr {
    width: 100%;
    margin-top: 50px;
  }

  .heading_txt_red {
    font-size: 120%;
    padding-left: 26px;
  }

  .heading_txt img {
    float: none;
    margin: 30px 0;
    width: 100%;
    height: auto;
  }

  .president .heading_txt_red {
    margin: 25px 0 0;
  }

  .outline {
    width: 100%;
  }

  .outline_line {
    margin: 0 20px;
  }

  .outline_line dt {
    width: 7em;
  }

  .outline_line dd {
    width: 66%;
  }

  .title_box {
    width: 100%;
  }

  .history_box {
    width: 100%;
    margin-top: 20px;
  }

  .flex_box.btn_box_2 {
    width: auto;
  }

  .btn_box_2 .btn_arrow, .btn_box_3 .btn_arrow {
    width: 100%;
    margin: 30px auto 0;
  }

  .btn_box_2 .btn_arrow br, .btn_box_3 .btn_arrow br {
    display: none;
  }

  .btn_box_3 {
    margin: 40px 0 0;
  }

  .heading_title_sub_red {
    margin: 30px 0;
  }
}

.chart-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  height: 368px;
  width: 800px;
  /*border-left: 2px solid #333; */
  /* Y軸の線 */
  /* border-bottom: 2px solid #333;*/
  /* X軸の線 */
  position: relative;
  font-weight: bold;
  margin: 0 auto;
}

/* 目盛りのスタイル */
.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 40px;
  color: #555;
  text-align: right;
}

.y-axis span {
  height: 85px;
}

/* グラフエリア */
.chart-area {
  display: flex;
  justify-content: space-around;
  align-items: flex-end; /* 下から上に伸びるように */
  flex-grow: 1;
  height: 100%;
  background: #E5F1F7 url("img/bg_graph.png") repeat left bottom;
}

/* 棒のスタイルとアニメーション */
.bar {
  background: #182D47;
  background: linear-gradient(45deg, rgba(24, 45, 71, 1) 0%, rgba(42, 77, 115, 1) 50%, rgba(34, 63, 95, 1) 100%);
  width: 56px;
  position: relative;
  opacity: 0;
}

.bar.go {
  animation: growBar 1.5s ease-out forwards;
  transform-origin: bottom; /* 下を固定して伸びる */
  opacity: 1;
}

/* アニメーション内容 */
@keyframes growBar {
  0% {
    height: 0;
  }

  100% {
    /* インラインスタイルで指定された高さに到達 */
  }
}

/* 棒の中の数値 */
.bar span {
  position: absolute;
  bottom: -30px;
  width: 100%;
  text-align: center;
}

.c-finance__table {
  width: 90%;
  margin: 80px auto;
}

.c-finance__table.last {
  width: 90%;
  margin: 80px auto 160px;
}

.c-finance__table th, .c-finance__table td {
  text-align: center;
  background-color: #E5F1F7;
  border: 3px solid #fff;
  font-size: 90%;
  font-weight: bold;
}

.c-finance__table th.data-grey {
  background-color: #182D47;
  color: #fff;
  font-size: 100%;
}

.c-finance__table th.data-grey span {
  font-size: 80%;
}

@media print, screen and (max-width: 1070px) {
  .inner_ch {
    overflow: auto;
  }

  #statement03 {
    margin-bottom: 80px;
  }

  .c-finance__table {
    width: 100%;
    margin: 50px auto 20px;
  }

  .c-finance__table.last {
    width: 100%;
    margin: 50px auto 20px;
  }

  .c-finance__table th {
    min-width: 9.2em;
  }

  .c-finance__table th.data-grey {
    min-width: 11em;
  }
}