/* ソーシャル認証関連の共通スタイル */
.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.social-connected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
}

.social-disconnect-btn {
  background-color: #ff6969;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
}

.social-disconnect-btn:hover {
  background-color: #ff4747;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 連携済み表示のスタイル */
.connected-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 5px;
  margin: 5px 0;
  width: 100%;
  background-color: #f8f8f8;
  border: 1px solid #eee;
}

.account-status {
  display: flex;
  align-items: center;
}

.account-status span.new {
  color: #707070;
  font-size: 13px;
  margin-left: 5px;
  font-weight: 500;
}

/* ソーシャルボタンの共通スタイル */
.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 46px;
  margin: 5px auto;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: opacity 0.3s;
}

.btn-social:hover {
  opacity: 0.9;
  text-decoration: none;
}

.btn-social img {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-social span {
  flex: 1;
  text-align: center;
  padding-left: 20px;
}

/* LINE固有のスタイル */
.btn-line {
  background-color: #06C755;
  color: white;
}

.btn-line:hover,
.btn-line:visited,
.btn-line:active {
  color: white;
  text-decoration: none;
}

/* Google固有のスタイル */
.btn-google {
  background-color: #F2F2F2;
  color: #757575;
  border: none;
}

.btn-google:hover,
.btn-google:visited,
.btn-google:active {
  color: #757575;
  text-decoration: none;
}

/* Facebook固有のスタイル */
.btn-facebook {
  background-color: #ffffff;
  color: #1877f2;
  border: 1px solid #ddd;
}

.btn-facebook:hover,
.btn-facebook:visited,
.btn-facebook:active {
  color: #1877f2;
  background-color: #f2f2f2;
  text-decoration: none;
}

/* ソーシャル連携確認画面 */
.social-confirm-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-accounts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 5px 0;
}

.social-account-item {
  margin-bottom: 8px;
}

.social-account-item .connected-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #f8f8f8;
  border: 1px solid #eee;
  height: 46px; /* btn-socialと同じ高さに揃える */
  box-sizing: border-box;
}

.social-account-item .connect-status {
  color: #28a745;
  font-size: 14px;
  font-weight: bold;
  background-color: #e8f5e9;
  padding: 5px 10px;
  border-radius: 3px;
}

.social-account-item .btn-social {
  margin: 0;
  min-width: 220px;
}
