@charset "UTF-8";
/*-----------------------------------------
Reset
-----------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*Default settings*/
html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  letter-spacing: 0.15rem;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
} */
q, blockquote {
  quotes: none;
}

strong {
  font-weight: bold;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

input[type=button], input[type=submit] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=button]::-webkit-search-decoration, input[type=submit]::-webkit-search-decoration {
  display: none;
}
input[type=button]::focus, input[type=submit]::focus {
  outline-offset: -2px;
}

/*Clearfix settings*/
.cf {
  zoom: 1;
}
.cf:after {
  content: "";
  clear: both;
  display: block;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*Responsive design settings*/
@media screen and (max-width: 640px) {
  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
  .only_pc {
    display: none !important;
  }
  .block_sp {
    display: block;
  }
}
@media screen and (min-width: 650px) {
  .only_sp {
    display: none !important;
  }
  .block_pc {
    display: block;
  }
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------
variable
-----------------------------------------*/
/*-----------------------------------------
Library
-----------------------------------------*/
/*@import "variable";*/
/*Default Font settings*/
.font_sansserif {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
}

.font_serif {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

/*Text settings
Browser Default Font Size
100% = 1em = 1rem = 16px = 12pt
*/
/*フォントサイズの基準を1rem=10pxに*/
html {
  font-size: 10px;
  /* font-size: 62.5%; */
  /* line-height: 62.5%; */
  line-height: 1;
}

/*テキスト関連*/
p {
  line-height: 175% !important;
}

.bold {
  font-weight: bold !important;
}

a {
  -webkit-tap-highlight-color: rgba(100, 100, 100, 0.5);
}

/*---------------------------------------------------
  color
---------------------------------------------------*/
.txt_wht {
  color: #FFF;
}

.txt_blue {
  color: var(--base-color);
}

.txt_red {
  color: var(--base-color-red);
}

.font_size_8 {
  width: 100%;
  font-size: 0.8rem;
  line-height: 2;
}

.font_size_10 {
  width: 100%;
  font-size: 1rem;
  line-height: 2;
}

.font_size_12 {
  width: 100%;
  font-size: 1.2rem;
  line-height: 2;
}

.font_size_14 {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
}

.font_size_16 {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2;
}

.font_size_18 {
  width: 100%;
  font-size: 1.8rem;
  line-height: 2;
}

.font_size_20 {
  width: 100%;
  font-size: 2rem;
  line-height: 2;
}

.font_size_8 > a, .font_size_10 > a, .font_size_12 > a, .font_size_14 > a, .font_size_16 > a, .font_size_18 > a, .font_size_20 > a {
  display: block;
}

.txt_justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

/*Text-shadow settings*/
.txt_shadow_black {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.txt_shadow_white {
  text-shadow: 0px 0px 5px #fff;
}

/*Align settings*/
.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.v_top {
  vertical-align: top;
}

/*イメージ回り込み*/
.imgR {
  float: right;
  margin: 0 0 15px 15px;
}

.imgL {
  float: left;
  margin: 0 15px 15px 0;
}

@media screen and (max-width: 812px) {
  .imgR, .imgL {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }
}
/*float解除*/
.clear {
  clear: both;
}

.noWrap {
  white-space: nowrap;
}

.spOnly {
  display: none;
}

@media screen and (max-width: 812px) {
  .spOnly {
    display: inline-block;
  }
}
/*Margin settings*/
.margin_top_5 {
  margin-top: 5px !important;
}

.margin_top_10 {
  margin-top: 10px !important;
}

.margin_top_15 {
  margin-top: 15px !important;
}

.margin_top_20 {
  margin-top: 20px !important;
}

.margin_top_25 {
  margin-top: 25px !important;
}

.margin_top_30 {
  margin-top: 30px !important;
}

.margin_top_35 {
  margin-top: 35px !important;
}

.margin_top_40 {
  margin-top: 40px !important;
}

.margin_top_45 {
  margin-top: 45px !important;
}

.margin_top_50 {
  margin-top: 50px !important;
}

.margin_bottom_5 {
  margin-bottom: 5px !important;
}

.margin_bottom_10 {
  margin-bottom: 10px !important;
}

.margin_bottom_15 {
  margin-bottom: 15px !important;
}

.margin_bottom_20 {
  margin-bottom: 20px !important;
}

.margin_bottom_25 {
  margin-bottom: 25px !important;
}

.margin_bottom_30 {
  margin-bottom: 30px !important;
}

.margin_bottom_35 {
  margin-bottom: 35px !important;
}

.margin_bottom_40 {
  margin-bottom: 40px !important;
}

.margin_bottom_45 {
  margin-bottom: 45px !important;
}

.margin_bottom_50 {
  margin-bottom: 50px !important;
}

.margin_left_5 {
  margin-left: 5px !important;
}

.margin_left_10 {
  margin-left: 10px !important;
}

.margin_left_15 {
  margin-left: 15px !important;
}

.margin_left_20 {
  margin-left: 20px !important;
}

.margin_left_25 {
  margin-left: 25px !important;
}

.margin_left_30 {
  margin-left: 30px !important;
}

.margin_left_35 {
  margin-left: 35px !important;
}

.margin_left_40 {
  margin-left: 40px !important;
}

.margin_left_45 {
  margin-left: 45px !important;
}

.margin_left_50 {
  margin-left: 50px !important;
}

.margin_right_5 {
  margin-right: 5px !important;
}

.margin_right_10 {
  margin-right: 10px !important;
}

.margin_right_15 {
  margin-right: 15px !important;
}

.margin_right_20 {
  margin-right: 20px !important;
}

.margin_right_25 {
  margin-right: 25px !important;
}

.margin_right_30 {
  margin-right: 30px !important;
}

.margin_right_35 {
  margin-right: 35px !important;
}

.margin_right_40 {
  margin-right: 40px !important;
}

.margin_right_45 {
  margin-right: 45px !important;
}

.margin_right_50 {
  margin-right: 50px !important;
}

/*Padding settings*/
.padding_10 {
  padding: 10px !important;
}

.padding_top_5 {
  padding-top: 5px !important;
}

.padding_top_10 {
  padding-top: 10px !important;
}

.padding_top_15 {
  padding-top: 15px !important;
}

.padding_top_20 {
  padding-top: 20px !important;
}

.padding_top_25 {
  padding-top: 25px !important;
}

.padding_top_30 {
  padding-top: 30px !important;
}

.padding_top_35 {
  padding-top: 35px !important;
}

.padding_top_40 {
  padding-top: 40px !important;
}

.padding_top_45 {
  padding-top: 45px !important;
}

.padding_top_50 {
  padding-top: 50px !important;
}

.padding_bottom_5 {
  padding-bottom: 5px !important;
}

.padding_bottom_10 {
  padding-bottom: 10px !important;
}

.padding_bottom_15 {
  padding-bottom: 15px !important;
}

.padding_bottom_20 {
  padding-bottom: 20px !important;
}

.padding_bottom_25 {
  padding-bottom: 25px !important;
}

.padding_bottom_30 {
  padding-bottom: 30px !important;
}

.padding_bottom_35 {
  padding-bottom: 35px !important;
}

.padding_bottom_40 {
  padding-bottom: 40px !important;
}

.padding_bottom_45 {
  padding-bottom: 45px !important;
}

.padding_bottom_50 {
  padding-bottom: 50px !important;
}

.padding_left_5 {
  padding-left: 5px !important;
}

.padding_left_10 {
  padding-left: 10px !important;
}

.padding_left_15 {
  padding-left: 15px !important;
}

.padding_left_20 {
  padding-left: 20px !important;
}

.padding_left_25 {
  padding-left: 25px !important;
}

.padding_left_30 {
  padding-left: 30px !important;
}

.padding_left_35 {
  padding-left: 35px !important;
}

.padding_left_40 {
  padding-left: 40px !important;
}

.padding_left_45 {
  padding-left: 45px !important;
}

.padding_left_50 {
  padding-left: 50px !important;
}

.padding_right_5 {
  padding-right: 5px !important;
}

.padding_right_10 {
  padding-right: 10px !important;
}

.padding_right_15 {
  padding-right: 15px !important;
}

.padding_right_20 {
  padding-right: 20px !important;
}

.padding_right_25 {
  padding-right: 25px !important;
}

.padding_right_30 {
  padding-right: 30px !important;
}

.padding_right_35 {
  padding-right: 35px !important;
}

.padding_right_40 {
  padding-right: 40px !important;
}

.padding_right_45 {
  padding-right: 45px !important;
}

.padding_right_50 {
  padding-right: 50px !important;
}

/*Last-element settings*/
.left_to_right > *:last-child {
  margin-right: 0 !important;
}

.top_to_bottom > *:last-child {
  margin-bottom: 0 !important;
}

/*link settings*/
.opacity {
  transition: 0.3s ease-in-out;
}
.opacity:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.comingsoon {
  opacity: 0.5;
}

/*画像内注釈*/
.img_notes {
  display: inline-block;
  position: relative;
}
.img_notes span {
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 2;
  position: absolute;
}

@media screen and (max-width: 640px) {
  .img_notes span {
    font-size: 0.8rem;
  }
}
.img_notes_l span {
  left: 3px;
  bottom: 3px;
}

.img_notes_r span {
  right: 3px;
  bottom: 3px;
}

.img_notes_white span {
  color: #fff !important;
  text-shadow: 0px 0px 3px #000;
}

.img_notes_black span {
  color: #000 !important;
  text-shadow: 0px 0px 3px #fff;
}

/* 動画埋込--------------------------------- */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*-----------------------------------------
Regulation
-----------------------------------------*/
@page {
  size: A4;
  margin: 0;
}
/*All Page Settings---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: var(--ja);
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  font-feature-settings: "palt";
  background-color: #fff;
  min-width: 1200px;
}

@media screen and (max-width: 812px) {
  body {
    letter-spacing: 0.04rem;
    -webkit-text-size-adjust: none;
    min-width: initial;
    /* margin-top: 53px; */
  }
}
a {
  color: #0a5fbe;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.contents p, .contents ol, .contents ul {
  margin-bottom: 1em;
}
.contents table p, .contents table ol, .contents table ul {
  margin-bottom: 0;
}
.contents ul ul {
  margin-left: 1em;
}
.contents img {
  transition: 0.5s;
}
.contents a img:hover {
  opacity: 0.6;
}

/*Article==============================================================================================================*/
.article {
  padding: 120px 0 0 0;
}

@media screen and (max-width: 812px) {
  .article {
    position: static;
    padding: 60px 0 0 0;
  }
}
.side_navi_use {
  display: flex;
}

@media screen and (max-width: 812px) {
  .side_navi_use {
    display: block;
  }
}
.contents_wrap {
  order: 2;
  flex: 1;
}

/*幅920pxのコンテンツ領域==============================================================================================================*/
.contents {
  width: 920px;
  margin: 0 auto;
  padding: 0 0 50px 0;
}

@media screen and (max-width: 812px) {
  .contents {
    width: auto;
    padding: 0 25px 30px 25px;
  }
}
div.contents_header_visual {
  background-color: #ccc;
}

@media screen and (max-width: 812px) {
  div.contents_header_visual {
    background-color: #ccc;
  }
}
/*パンくず==============================================================================================================*/
ul.pankuzu {
  margin-bottom: 40px;
  padding-top: 40px;
}
ul.pankuzu li {
  font-size: 1.2rem;
  display: inline;
}
ul.pankuzu li:after {
  content: ">";
  margin: 0 5px;
}
ul.pankuzu li:last-of-type:after {
  content: "";
  margin: 0;
}

@media screen and (max-width: 812px) {
  ul.pankuzu {
    margin-bottom: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 812px) {
  ul.pankuzu li {
    font-size: 1.1rem;
  }
}
/*見出し==============================================================================================================*/
.contents_h1 {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: bold;
  font-family: var(--ja);
  color: #353535;
}
.contents_h1:first-letter {
  color: var(--base-color);
}
.contents_h1.h1-small {
  font-size: 2.5rem;
}

@media screen and (max-width: 812px) {
  .contents_h1 {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 812px) {
  .contents_h1.h1-small {
    font-size: 2rem;
  }
}
.contents_h2, .contents_h2_link, .contents_h3, .contents_h3_harf, .contents_h4, .contents_h5 {
  font-family: var(--ja);
  margin: 1em 0;
  clear: both;
}

.contents_h2 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  background-color: var(--base-color);
  padding: 15px 10px 15px 16px;
  background-image: url("/common/kraftia/images/kraftia_symbol.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  border-radius: 5px;
}

@media screen and (max-width: 812px) {
  .contents_h2 {
    padding: 15px 10px 15px 16px;
    font-size: 16px;
    font-size: 1.6rem;
    background-size: auto 100%;
  }
}
.h2_light {
  padding: 15px 10px 15px 13px;
  background-color: #f7f7f7;
  font-size: 1.8rem;
  color: var(--black);
  font-size: 14px;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 1380px) {
  .h2_light {
    font-size: 20px;
    font-size: 2rem;
  }
}
.h2_light a {
  width: 100%;
  padding-left: 24px;
  display: flex;
  position: relative;
  font-weight: bold;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 1380px) {
  .h2_light a {
    font-size: 20px;
    font-size: 2rem;
  }
}
.h2_light a:hover {
  text-decoration: underline;
  color: var(--base-color);
}
.h2_light a::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  background-image: url("/common/kraftia/images/icon_arrow_blue_m_right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
@media print, screen and (min-width: 1380px) {
  .h2_light a::before {
    width: 24px;
    height: 24px;
    top: calc(50% - 13px);
    background-size: 20px 20px;
    text-indent: 40px;
  }
}

.contents_h3, .contents_h3_harf {
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2;
  border-bottom: 3px solid var(--base-color);
  border-radius: 3px;
}
@media print, screen and (min-width: 1380px) {
  .contents_h3, .contents_h3_harf {
    padding-bottom: 3px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media print, screen and (min-width: 1380px) {
  .contents_h3_harf {
    width: 445px;
  }
}

.contents_h4 {
  /*border-left:3px solid $navy;*/
  border-bottom: 1px solid #555;
  padding: 5px 0 3px 0px;
  color: #555;
  font-weight: bold;
}

.contents_h5 {
  border-left: 3px solid #B5AEAB;
  color: #353535;
  padding: 0 0 0 10px;
}

/*表組み==============================================================================================================*/
@media screen and (max-width: 812px) {
  div.wrap_table {
    overflow: auto;
    white-space: nowrap;
  }
  div.wrap_table::before {
    content: "横にスクロール出来ます。";
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px;
    background-color: #ccc;
  }
  div.wrap_table::-webkit-scrollbar {
    height: 5px;
  }
  div.wrap_table:-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  div.wrap_table:-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
table.contents_table {
  width: 100%;
}
table.contents_table th, table.contents_table td {
  font-size: 1.4rem !important;
  border: 1px solid #9FA0A0;
  padding: 15px;
}
table.contents_table th {
  background-color: #DCDDDD;
}
table.contents_table thead {
  background-color: #353535;
}
table.contents_table thead th {
  background-color: #353535;
  color: #fff;
}
table.border_none, table.bn_p0 {
  width: 100%;
}
table.border_none th, table.border_none td {
  font-size: 1.5rem !important;
  border: 0;
  padding: 15px;
}
table.bn_p0 th, table.bn_p0 td {
  font-size: 1.5rem !important;
  padding: 0;
}

@media screen and (max-width: 812px) {
  table.contents_table th, table.contents_table td {
    font-size: 1.2rem;
  }
}
/*罫線なし*/
@media screen and (max-width: 812px) {
  table.border_none th, table.border_none td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 812px) {
  table.bn_p0 th, table.bn_p0 td {
    font-size: 1.2rem;
  }
}
.th_blk {
  background-color: #353535 !important;
  color: #fff !important;
}

/*沿革用テーブル --------------------------*/
.tbLine {
  border-collapse: collapse;
  border-spacing: 0px;
  margin: 0px 0px 10px 0;
  width: 100%;
}
.tbLine caption {
  padding: 5px 0px 3px 0px;
  text-align: left;
}
.tbLine th, .tbLine td {
  padding: 15px;
  border-bottom: 1px #CCC solid;
  vertical-align: top;
}
.tbLine th {
  text-align: left;
  white-space: nowrap;
  /*padding:0.2em 1em 0.2em 0.2em;*/
}

/*ストライプテーブル --------*/
/*table.contents_table .stripe {
background:#F7F8F9;
}*/
table.contents_table .stripe tr:nth-child(even) {
  background: #F2F2F2;
}

/*横組みDL --------*/
.yokoDl {
  padding-left: 5px;
}
.yokoDl dt {
  float: left;
  width: 9em;
  margin-bottom: 5px;
}
.yokoDl dd {
  _zoom: 1;
  overflow: hidden;
  margin-bottom: 5px;
}

/*---------------------------------------------------
  tblBlock
---------------------------------------------------*/
.tblBlock {
  display: table;
  border-width: 0;
  width: 100%;
}
.tblBlock tbody {
  display: table-row-group;
}
.tblBlock tr {
  display: table-row;
}
.tblBlock th, .tblBlock td {
  padding: 15px;
  display: table-cell;
}
.tblBlock th {
  text-align: left;
  font-weight: normal;
  border-bottom: 1px #CCC solid;
}
.tblBlock th:empty {
  display: none;
}
.tblBlock td {
  border-bottom: 1px #CCC solid;
}
.tblBlock td.pcRight {
  text-align: right;
}
.tblBlock td.noborder {
  width: 450px;
}
@media print, screen and (min-width: 1380px) {
  .tblBlock td.noborder {
    width: 550px;
  }
}
.tblBlock .nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 812px) {
  .tblBlock {
    display: block;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock tbody {
    display: block;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock tr {
    display: block;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock th, .tblBlock td {
    display: block;
    border-width: 0;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock th:empty {
    display: table-cell;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock td {
    padding-top: 5px;
    border-bottom: 1px #CCC solid;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock td.noborder {
    width: auto;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 812px) {
  .tblBlock td.pcRight {
    text-align: left;
  }
}
/*ページャー==============================================================================================================*/
ol.pager {
  display: flex;
  justify-content: center;
}
ol.pager li {
  margin: 0 10px 0 0;
}
ol.pager li a, ol.pager li span {
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  padding: 10px;
  border: 1px solid #353535;
}
ol.pager li a {
  background-color: #353535;
  color: #fff;
}

/*新着情報リスト==============================================================================================================*/
ul.list_news li {
  margin: 0 0 20px 0;
  display: flex;
}

.list_news_date {
  white-space: nowrap;
  margin-right: 1.2rem;
}

.list_news_cat {
  white-space: nowrap;
  margin-right: 1.2rem;
  padding: 0.3em 1em;
  height: 2.2em;
  width: 120px;
  text-align: center;
  background: #157de5;
  font-size: 1rem;
  color: #fff;
}

.list_news_title {
  width: 700px;
}

.list_news_cat.cat_important {
  background-color: #e10012;
}
.list_news_cat.cat_recruit {
  background-color: #197e3a;
}
.list_news_cat.cat_press {
  background-color: #FF6347;
}
.list_news_cat.cat_financial {
  background-color: #da9f00;
}
.list_news_cat.cat_ir_news {
  background-color: #034580;
}

/* 重要なお知らせ */
/* 採用情報 */
/* プレスリリース */
/* 決算情報 */
/* IRニュース */
@media screen and (max-width: 812px) {
  ul.list_news li {
    margin: 15px 0;
    padding: 0 0 10px 0;
    display: block;
    border-bottom: 1px dotted #353535;
  }
  .list_news_date {
    margin-bottom: 0.5em;
    display: inline-block;
  }
  .list_news_title {
    display: block;
    width: inherit;
  }
}
/*レイアウト用カラム==============================================================================================================*/
div.clm_1, div.clm_2, div.clm_3 {
  display: flex;
}
div.clm_1 div.clm_box, div.clm_2 div.clm_box, div.clm_3 div.clm_box {
  width: 100%;
  margin-right: 30px;
}
div.clm_1 div.clm_box:last-of-type, div.clm_2 div.clm_box:last-of-type, div.clm_3 div.clm_box:last-of-type {
  margin-right: 0;
}
div.clm_1 div.clm_box img, div.clm_2 div.clm_box img, div.clm_3 div.clm_box img {
  max-width: 100%;
}

@media screen and (max-width: 812px) {
  div.clm_1, div.clm_2, div.clm_3 {
    display: block;
  }
}
@media screen and (max-width: 812px) {
  div.clm_1 div.clm_box, div.clm_2 div.clm_box, div.clm_3 div.clm_box {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 812px) {
  div.clm_1 div.clm_box:last-of-type, div.clm_2 div.clm_box:last-of-type, div.clm_3 div.clm_box:last-of-type {
    margin-bottom: 0;
  }
}
/*ボタン==============================================================================================================*/
.btn_navy {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--base-color);
  padding: 10px 30px;
  border: none;
}

/*リスト==============================================================================================================*/
ul.list_ul {
  list-style-type: disc;
  padding-left: 1.7em;
  /*list-style-position: outside;*/
}

ol.list_ol {
  list-style-type: decimal;
  padding-left: 1.7em;
  /*list-style-position: outside;*/
}

ul.list_none {
  list-style: none;
}
ul.list_none li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
ul.list_ul li {
  margin-bottom: 0.3em;
  line-height: 175% !important;
}

ol.list_ol li {
  margin-bottom: 0.3em;
  line-height: 175% !important;
}

ul.list_none li {
  margin-bottom: 0.3em;
  line-height: 175% !important;
}
ul.link_list li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0 0.4em;
  color: var(--base-color);
}

/*アイコン付き*/
.linkIcon:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0 0.4em;
  color: var(--base-color);
}

.icn_pdf {
  margin-top: -0.2em;
}
.icn_pdf:before {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.4em;
  font-size: 1.2em;
  color: #be2121;
}

.link_wht {
  padding-left: 15px;
  background-image: url("/common/kraftia/images/icon_arrow_white_m_right.svg");
  background-repeat: no-repeat;
  background-position: -3px;
  background-size: 18px 18px;
  color: #FFF;
}

.noteList {
  display: table-cell;
  white-space: nowrap;
}

.noteText {
  display: table-cell;
}

/*サイドナビ==============================================================================================================*/
.side_navi {
  width: 230px;
  min-height: 100%;
  margin: 0 0 0 30px;
  padding: 0;
  order: 1;
  z-index: 99;
}
.side_navi .side_navi_header {
  position: relative;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin: 40px 0 42px 0;
  padding-left: 19px;
  top: 2px;
  background-image: url("/common/kraftia/images/top/top_line_blue.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 13px 16px;
}
.side_navi nav {
  margin: 0 0 60px 0;
  padding-top: 45px;
  padding-bottom: 45px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
@media print, screen and (min-width: 1380px) {
  .side_navi nav {
    padding-top: 43px;
    padding-bottom: 46px;
  }
}
.side_navi nav > ul > li {
  font-weight: bold;
  margin: 0 0 10px 0;
}
.side_navi nav > ul > li ul {
  margin-top: 5px;
}
.side_navi nav > ul > li ul li {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 5px;
}
.side_navi nav > ul > li ul li a {
  padding-left: 0.5rem;
}
.side_navi nav > ul > li ul li ul {
  margin-left: 1.4em;
}
.side_navi a {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  font-size: 1.6rem;
  color: #353535;
  text-decoration: none;
}
.side_navi a:hover {
  text-decoration: underline;
}
.side_navi nav a.now_here {
  color: var(--base-color);
  font-weight: bold;
  position: relative;
  text-indent: 0;
}
@media print, screen and (min-width: 768px) {
  .side_navi nav a.now_here {
    padding-left: 24px;
  }
}
.side_navi nav a.now_here::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  background-image: url(/common/kraftia/images/icon_arrow_blue_m_rightup.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  transform: rotate(45deg);
}
@media print, screen and (min-width: 1380px) {
  .side_navi nav a.now_here::before {
    top: 4px;
  }
}

@media screen and (max-width: 812px) {
  .side_navi {
    margin: 0;
    padding: 0 25px;
    width: 100%;
  }
  .side_navi .side_navi_header {
    margin: 26px 0 25px 0;
    padding-left: 15px;
    font-size: 17px;
    font-size: 1.7rem;
    background-image: url(/common/kraftia/images/sidenav_line_blue_sp.svg);
    background-repeat: no-repeat;
    background-position: -1px 4px;
    background-size: 15px 15px;
  }
  .side_navi .side_navi_header::before {
    height: 14px;
    top: 6.5px;
  }
  .side_navi nav {
    margin-top: 0;
    margin-bottom: 60px;
    padding: 0;
    border-top: none;
    border-bottom: 1px solid #e3e3e3;
  }
  .side_navi nav li {
    border-top: 1px solid #e3e3e3;
    padding: 6px 0 6px 10px;
    margin: 0 !important;
  }
  .side_navi nav li ul > li:last-child {
    padding: 6px 0 0 10px;
  }
  .side_navi a {
    padding: 5px 30px 5px 0;
    text-indent: 0;
    font-size: 14px;
    font-size: 1.4rem;
    background-image: url(/common/kraftia/images/icon_arrow_primary_m_rightup.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px 20px;
  }
  .side_navi nav a.now_here {
    background-image: url(/common/kraftia/images/icon_arrow_blue_m_rightup.svg);
  }
  .side_navi nav a.now_here::before {
    background-image: none;
  }
}
/* tag_new */
.tag_new {
  margin: 0 0 0 6px;
  padding: 3px 8px;
  position: relative;
  top: -2px;
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  color: #fff;
  background-color: red;
  border-radius: 10px;
}

/* icon_win */
.icon_win {
  position: relative;
}
.icon_win::after {
  width: 20px;
  height: 12px;
  padding-right: 14px;
  display: inline-block;
  content: "";
  background: url("/common/img/icon_win.png") no-repeat 6px 0;
  vertical-align: middle;
  background-size: 14px 12px;
}

/*-----------------------------------------
Utility
-----------------------------------------*/
.toggleBtn {
  cursor: pointer;
}

.toggleContent {
  display: none;
}
.toggleContent.toggleOpen {
  display: block;
}

/*-----------------------------------------
Print
-----------------------------------------*/
@media print {
  .header, .side_navi, .footer {
    display: none;
  }
  .header, .article {
    padding: 0;
  }
}
/*=====================================================
  br.pc
=====================================================*/
br.pc {
  display: none;
}
@media print, screen and (min-width: 1380px) {
  br.pc {
    display: inline;
  }
}

/*=====================================================
  br.sp
=====================================================*/
br.sp {
  display: inline;
}
@media print, screen and (min-width: 1380px) {
  br.sp {
    display: none;
  }
}