/* ------------------------------------------------------------------------


    /concur/column/配下用CSS


------------------------------------------------------------------------ */


/*下線テキスト*/
.underline_text {
  border-bottom: dashed 0.1rem #0078c8;
}


/*著者情報*/
.profile_block{
  background: #e6eaf0;
  padding: 40px;
  margin: 50px 30px;
}

.profile_flex{
  display: flex;
}

.profile_detail{
  flex: 1 1 100%;
}

.profile_detail p{
  text-align: left;
  font-size: 1.6rem;
}

.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:767px) {
  .profile_block{
    padding: 30px 20px;
    margin: 0;
  }
  
  .profile_flex{
    display: block;
  }

  .profile_detail p{
    font-size: 1.4rem;
  }

  .profile_detail .writer_profile{
    font-size: 1.6rem;
  }

  .profile_figure{
    margin-left: 0;
    margin-top: 30px;
  }

  .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: #f5f5f5;
  font-weight: bold;
}
	
.table-wrap table th:first-child {
  border-left: none;
}
	
.table-wrap table td:first-child {
  border-left: none;
}


/*ページ下リンク*/
.concur-link-wrap {
  padding-top: 60px;
}
	
.concur-link-wrap p {
  padding: 20px 15px;
}
	
.right-arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
	
.right-arrow:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #0078c8;
  border-right: solid 2px #0078c8;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 390px;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .right-arrow:after {
    width: 8px;
    height: 8px;
    left: 315px;
  }

}



