@charset "UTF-8" ;

/**************************************************

	ボタンのデザイン

**************************************************/
.sounds ,
.stop-button
{
	display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background-image: linear-gradient(45deg, #FFB6C1 0%, #ff8b5f 100%);
  transition: .4s;
  margin-bottom: 10px;
}

.stop-button
{
	background: linear-gradient(45deg, #FFB6C1 0%, #f76a35 100%);
}

body {
  background-image: url("haikei.jpg");
  background-repeat:no-repeat;
  background-position:750px -20px;
  background-attachment:fixed;
}

.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: #FFB6C1; /*斜め背景の色*/
 position:  absolute;
 top:-15%;
 left:-10%;
 z-index: 0;
}

.profile-card:after{
 width:120%;
 height:140px;
 content:"";
 transform:skew(15deg,10deg);
 background: #FFB6C1; /*斜め背景の色*/
 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-intro{
  font-size: 11px;
  text-align: center;
}

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

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

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