@charset "UTF-8";

/* ------------------------------------------------------------------------


    /Salesforce/column/配下用CSS


------------------------------------------------------------------------ */

/*著者情報*/
.profile_block{
  background: #e6eaf0;
  max-width: 124.2rem;
  margin: 50px auto 60px;
  padding: 40px;
}

.profile_flex{
  display: flex;
}

.profile_detail{
  flex: 1 1 100%;
}

.profile_detail p{
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
}

.profile_detail .writer_profile{
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 30px;
}

.profile_figure{
  flex: 0 0 auto;
  margin-left: 80px;
}

.profile_figure img{
  width: 225px;
}


@media only screen and (max-width:812px) {
  .profile_block{
    margin: 40px auto 60px;
    padding: 30px 20px;
  }
  
  .profile_flex{
    display: block;
  }

  .profile_detail p{
    font-size: 1.4rem;
  }

  .profile_detail .writer_profile{
    font-size: 1.6rem;
  }

  .profile_figure{
    max-width: 200px;
    margin: 30px auto 0;
  }
  
  .profile_figure img{
    width: 200px;
  }

}


/*表*/
.table-wrap table {
  width: 100%;
  border-bottom: solid 1px #e0e0e0;
}
	
.table-wrap table th,.table-wrap table td {
  padding: 1.5rem 2rem;
  border-top: solid 1px #e0e0e0;
  border-left: solid 1px #e0e0e0;
}

.table-wrap table th {
  background-color: #f7f7f7;
}

.table-wrap table th:first-child {
  border-left: none;
}

.table-wrap table td:first-child {
  border-left: none;
}


/*本文内導線*/
.c-link_wrap {
    background-color: #e5f1ff;
    padding: 25px 0 1px;
    margin-top: 40px;
}

.c-link_text {
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
}


@media only screen and (max-width:812px) {
  .c-link_wrap {
      padding: 25px 15px 1px;
      margin-top: 20px;
  }

  .c-link_text {
      font-size: 1.4rem;
      line-height: 1.8;
  }

}


/*まとめ内導線*/
.flex_btn_wrap {
  display: flex;
}

.flex_btn_wrap .c-btn.-medium {
 min-width: 40%;
}

@media only screen and (max-width:812px) {
  .flex_btn_wrap {
    display: block;
    margin-top: 50px;
  }
}





