@charset "utf-8";

/* CSS Document */

/* index */
.topicslist{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  }
  .topicslist-item{
    width: calc((100%  - 60px) / 4);
    margin-bottom: 20px;
    }
    .topicslist-item:not(:nth-of-type(4n+4)){margin-right: 20px;}
  .topicslist-link{
    display: flex;
    flex-direction: column;
    transition: .3s;
    }
    .topicslist-link:hover{opacity: .7;}
    .topicslist-summary{
      order: 1;
      display: flex;
      flex-direction: column;
      }
      .topicslist-ttl{order: 1;}
        .topicslist-ttl-txt{font-weight: 500;}
      .topicslist-data{
        display: flex;
        align-items: center;
        margin-bottom: 5px;
        }
        .topicslist-date{margin-right: 20px;}
          .topicslist-date-txt{
            font-size: 15px;
            font-weight: 500;
            font-style: italic;
            color: rgba(170,170,170,1);
            }
        .topicslist-category{
          padding: 4px 10px 5px;
          border-radius: 3px;
          background-color: rgba(37,65,88,1);
          }
          .topicslist-category-txt{
            font-size: 11px;
            color: rgba(255,255,255,1);
            line-height: 1;
            }
      
    .topicslist-fig{
      order: 0;
      margin-bottom: 10px;
      border: 1px solid rgba(200,200,200,1);
      }

/* detail */
.topicsdetail{
  max-width: 800px;
  margin: 0 auto;
  }
  .topics-head{
    margin-bottom: 50px;
    padding: 30px;
    border: 1px solid rgba(51,51,51,1);
    }
    .topics-ttl{
      margin-bottom: 45px;
      position: relative;
      }
      .topics-ttl::before{
        content: "";
        width: 100%;
        height: 2px;
        background-color: rgba(255,216,19,.5);
        position: absolute;
        bottom: -19px;
        left: 0;
        }
      .topics-ttl-inner{}
        .topics-ttl-txt{
          font-size: 28px;
          font-weight: 500;
          }
    .topics-data{
      display: flex;
      justify-content: space-between;
      }
      .topics-category{
        display: flex;
        align-items: center;
        padding: 4px 10px 5px;
        border-radius: 3px;
        background-color: rgba(37,65,88,1);
        }
        .topics-category-txt{
          font-size: 12px;
          color: rgba(255,255,255,1);
          line-height: 1;
          }
      .topics-date{}
        .topics-date-txt{
          font-size: 13px;
          color: rgba(150,150,150,1);
          }

.topics-body{
  margin-bottom: 50px;
  padding-bottom: 50px;
  line-height: 1.75;
  border-bottom: 1px solid rgba(51,51,51,1);
  }
  .topics-body p a{
    color: rgba(34,113,177,1);
    text-decoration: underline;
    }
    .topics-body p a:hover{text-decoration: none;}
.clm_prg{
  margin: 0 0 20px 0;
  line-height: 1.8;
  }
.clm_ttl{
  margin: 80px 0 20px;
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 3px solid rgba(150,150,150,1);
  position: relative;
  }
  .clm_ttl::before{
    content: "";
    width: 200px;
    height: 3px;
    background-color: rgba(255,216,19,1);
    position: absolute;
    bottom: -3px; 
    left: 0;
    }
.clm_subttl{
  margin: 40px 0 20px 0;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 5px solid rgba(100,100,100,1);
  }
.clm_minttl{font-size: 18px;}

.clm_fig{margin: 0 0 20px 0;}
  .clm_fig img{
    width: 100%;
    height: auto;  
    }

.clm_qot{
  margin: 0 0 20px 0;
  padding: 40px;
  border: 1px solid rgba(220,220,220,1);
  box-sizing: border-box;
  position: relative;
  }
  .clm_qot::before,
  .clm_qot::after{
    content: "";
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,10);
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    }
    .clm_qot::before{
      background-image: url(../fonts/clm_fig_01.svg);
      background-position: top left;
      top: -1px;
      left: -1px;
      }
    .clm_qot::after{
      background-image: url(../fonts/clm_fig_01.svg);
      background-position: bottom right;
      bottom: -1px;
      right: -1px;
      }
    .clm_fig_qot{margin-bottom: 15px;}
    .clm_qot_note{
      font-size: 12px;
      text-align: right;
      }
.clm_lst_blc{
  margin: 30px 0 40px;
  padding: 30px 35px;
  border: 1px solid rgba(220,220,220,1);
  position: relative;
  box-sizing: border-box;
  }
  .clm_lst_ttl{
    font-weight: bold;
    padding: 0 10px;
    position: absolute;
    top: -1em;
    left: 30px;
    background-color: rgba(255,255,255,1);
    }
  .clm_lst{margin-left: 0px;}
    .clm_qot .clm_lst{margin-bottom: 15px;}
    .clm_lst_itm,
    .clm_lst > li{
      padding-left: 14px;
      position: relative;
      }
      .clm_lst > li:not(:last-of-type){margin-bottom: 0.5rem;}
      .-num .clm_lst_itm{
        margin-left: 10px;
        padding-left: 0;
        list-style-type: decimal;
        }
      .-num .clm_lst_itm::before{display: none;}
      .clm_lst_itm::before,
      .clm_lst > li::before{
        display: block;
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(30,30,30,1);
        position: absolute;
        top: 12px;
        left: 0;
        }

.clm_eve_blc{
  margin: 25px 0;
  padding: 30px;
  border: 1px solid rgba(220,220,220,1);
  box-sizing: border-box;
  }
  .clm_eve_inr{
    display: flex;
    flex-wrap: wrap;
    }
  .clm_eve_head{width: 60px;}
  .clm_eve_cont{width: calc(100% - 60px);}

.clm_emp{
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffff66 60%);
  }
.clm-table{
  width: 100%;
  margin-bottom: 20px;
  }
  .clm-table__inner{
    width: 100%;
    table-layout: fixed;
    font-size: 14px;
    border-top: 1px solid rgba(200,200,200,1);
    border-left: 1px solid rgba(200,200,200,1);
    }
    .clm-table__head{
      padding: 10px;
      font-weight: normal;
      line-height: 1.4;
      vertical-align: middle;
      text-align: center;
      border-bottom: 1px solid rgba(200,200,200,1);
      border-right: 1px solid rgba(200,200,200,1);
      background-color: rgba(240,240,240,1);
      box-sizing: border-box;
      }
    .clm-table__body{
      padding: 10px;
      text-align: center;
      border-bottom: 1px solid rgba(200,200,200,1);
      border-right: 1px solid rgba(200,200,200,1);
      box-sizing: border-box;
      }
      .-horizontal{
        width: 100px;
        background-color: rgba(240,240,240,1);
        }

.clm-link{
  font-weight: bold;
  color: dodgerblue;
  text-decoration: underline;
  }
  .clm-link:hover{text-decoration: none;}

.download-form_btn{margin: 150px 0 80px;}  

.pressrelease{}
  .pressrelease-intr{
    width: 100%;
    margin-bottom: 50px;
    padding: 40px 30px;
    text-align: center;
    border: 3px solid rgba(0,0,0,1);
    box-sizing: border-box;
    }
    .pressrelease-intr__ttl{
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: bold;
      }
    .pressrelease_intr__lead{
      font-size: 15px;
      line-height: 1.4;
      }
  .pressrelease-subblc{margin-top: 30px;}
    .pressrelease-subttl{font-weight: bold;}
    .pressrelease-fig{margin-top: 20px;}
      .-main{}
      .pressrelease-fig__cap{
        margin-top: 5px;
        font-size: 14px;
        text-align: center;
        }
    .pressrelease-note{
      margin-top: 20px;
      font-size: 13px;
      line-height: 1.4;
      }

.outline-list__item{
  display: flex;
  line-height: 1.4;
  }
  .outline-list__item:not(:last-of-type){margin-bottom: 15px;}
  .outline-list__head{width: 80px;}
  .outline-list__body{
    width: calc(100% - 100px);
    margin-left: 20px;
    }
    
.wp-block-image img{height: auto;}

    
.whitepaper-download{margin-bottom: 50px;}
  .whitepaper-download-link{
    display: block;
    transition: .3s;
    }
    .whitepaper-download-link:hover{opacity: .7;}

.topics-more{
  max-width: 300px;
  margin: 0 auto;
  }

/* wp-pagenavi */
.wp-pagenavi{
  display: flex;
  justify-content: center;
  }
  .wp-pagenavi span,
  .wp-pagenavi a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 3px;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid rgba(255,216,19,1);
    transition: .3s;
    }
    .wp-pagenavi a:hover,.active a ,
    .current{
      color: rgba(51,51,51,1);
      background-color: rgba(255,216,19,1);
      }
      .pagination  {
        display: flex;
      }
.jumpto {display: none ;}
@media screen and (max-width: 1199px) { }/* max-width: 1199px */

@media screen and (max-width: 991px) {

/* detail */
.topics-ttl-txt{font-size: 24px;}

}/* max-width: 991px */

@media screen and (max-width: 767px) {

/* index */
.topicslist{margin-bottom: 20px;}
  .topicslist-item{width: calc((100%  - 20px) / 2);}
    .topicslist-item:not(:nth-of-type(4n+4)){margin-right: 0;}
    .topicslist-item:not(:nth-of-type(2n+2)){margin-right: 20px;}
        .topicslist-date{margin-right: 20px;}
          .topicslist-date-txt{font-size: 14px;}
        .topicslist-category{padding: 4px 5px 5px;}
          .topicslist-category-txt{font-size: 10px;}
      

/* detail */
.topics-head{
  margin-bottom: 30px;
  padding: 20px;
  }
  .topics-ttl{margin-bottom: 35px;}
    .topics-ttl::before{bottom: -15px;}
      .topics-ttl-txt{font-size: 20px;}

.clm_ttl{
  margin: 60px 0 20px;
  font-size: 22px;
  }
  .clm_subttl{
    margin: 30px 0 20px 0;
    font-size: 18px;
    }
  .clm_minttl{font-size: 16px;}

.topics-more{max-width: 280px;}

}/* max-width: 767px */

@media not screen and (max-width: 575px) {

.whitepaper-download-sp{display: none;}

}/* not max-width: 575px */

@media screen and (max-width: 575px) {

/* index */
.topicslist{margin-bottom: 20px;}
  .topicslist-item{width: calc((100%  - 15px) / 2);}
    .topicslist-item:not(:nth-of-type(2n+2)){margin-right: 15px;}

/* detail */
.topics-head{
  margin-bottom: 30px;
  padding: 20px;
  }
  .topics-ttl{margin-bottom: 30px;}
    .topics-ttl::before{bottom: -14px;}
    .topics-ttl-txt{font-size: 18px;}

  .topics-data{
    flex-direction: column;
    align-items: flex-start;
    }
    .topics-category{margin-bottom: 5px;}
    .topics-date-txt{font-size: 12px;}


.clm_ttl{
  margin: 50px 0 20px;
  font-size: 18px;
  }
  .clm_subttl{
    margin: 20px 0 20px 0;
    font-size: 16px;
    }
  .clm_minttl{font-size: 15px;}

.whitepaper-download-pc{display: none;}

.topics-more{max-width: 250px;}

}/* max-width: 575px */