.sns_account_list{
  display: flex;
  flex-wrap: wrap;
  gap: 31px;
  margin-bottom: 60px;
}

.sns_account_card{
  width: 226px;
  border: 1px solid #ddd;
  background: #fff;
  box-sizing: border-box;
}

/* ロゴエリア */
.sns_account_logo{
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.sns_account_logo img{
  display: block;
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
}

.sns_account_text{
  min-height: 56px;
  padding: 0 15px;
  margin-bottom: 15px;
}
.sns .modBtn_inner{
  padding-right: 30px;
}

.sns .modBtn_inner:after { 
  content: "";
  position: absolute;
  right: 5px;
  width: 20px;
  height: 20px;
  background-image: url("/sns/img/icn_window_white.png");
  background-repeat: no-repeat; background-size: 20px auto;
} 
.modBtn-sns { 
  width: 206px;
  margin: 0 10px 10px;
}

@media screen and (max-width: 480px){
  .sns_account_card{
    width: 100%;
    text-align: center;
  }
  .sns_account_logo{
    height: 100px;
  }
  .sns_account_logo img{
    max-width: 70px;
    max-height: 60px;
  }
  .sns_account_text{
    min-height: auto;
  }
  .modBtn-sns{
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    box-sizing: border-box;
  }
}

.sns .pc_only{
  display: inline;
}
@media screen and (max-width: 767px){
  .sns .pc_only{
    display: none;
  }
}