﻿.profile-card{
  width: 100%;
  /* max-width:400px; */
  position: relative;
  background: #fff; /*背景の色*/
  box-shadow: 0px 1px 3px rgba(0,0,0,.18);
  overflow: hidden;
}

.profile-card:before{
 width:120%;
 height:130px;
 content:"";
 transform:skew(15deg,10deg);
 background: #70b7ff; /*斜め背景の色*/
 position:  absolute;
 top:-15%;
 left:-10%;
 z-index: 0;
}

.profile-card:after{
 width:120%;
 height:140px;
 content:"";
 transform:skew(15deg,10deg);
 background: #70b7ff; /*斜め背景の色*/
 position:  absolute;
 bottom:-15%;
 left:-10%;
 z-index: 0;
}

.profile-card__inner{
 position: relative;
  z-index: 1;
}

.profile-thumb{
    overflow: hidden;
    width: 110px;
    height: 110px;
    border: #fff 3px solid;
    border-radius: 55px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    background: #fff;
}

.profile-thumb img{
  display: block;
    width: 100%;
    height: auto;
}

.profile-content{
  margin: 0 0 49px;
  padding: 15px;
  
}

.profile-content span{
  display: block;
}

.profile-name{
  margin-bottom: 3px;
  font-weight: bold;
  text-align: center;
}

.profile-job{
  margin-bottom: 10px;
  color: #ccc;
  font-size: 10px;
  text-align: center;
}

.profile-intro{
  font-size: 12px;
}

.profile-intro-center{
  font-size: 14px;
  text-align: center;
}

.profile-sns {
    padding: 5px 0;
    text-align: center;
    color: #000;
}

.profile-sns span{
  display: block;
  font-size: 10px;
  
}

.profile-sns a {
  font-size: 30px;
    margin: 0 5px;
    color: #000;
}

table{
  margin:0 auto;
  border-radius:10px;
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  border:1px solid #666;
}
td,th{
  border-bottom:1px solid #666;
}
th{
  padding:10px;
}
td{
  font-size: 18px;
  padding:10px;
  text-align: center;
}
th{
  background:#EFEFEF;
}
th + th,td{
  border-left:1px solid #666;
}
