.line-login-button {
  display: inline-flex;
  align-items: center;
  background-color: #06c755; /* ガイドライン指定色 */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  font-family: sans-serif;
  font-weight: bold;
  transition: background-color 0.2s;
  height: 44px;
  text-decoration: none !important;
  width: 100%;
  max-width: 300px;
}

/* LINEアイコン部分のコンテナ（左側のエリア） */
.line-icon {
  width: 44px;
  height: 44px;
  background-image: url('/assets/imgs/social/line/app_icon_cl.png');
  background-size: 44px; /* アイコンサイズ */
  background-position: center;
  background-repeat: no-repeat;
  border-right: 1px solid rgba(0, 0, 0, 0.08); /* 縦線：不透明度8%の黒 */
}

/* テキスト部分 */
.line-text {
  padding: 0 16px;
  font-size: 16px;
  line-height: 1;
  flex-grow: 1;
  text-align: center;
}

/* マウスオーバー時：黒10%を重ねる */
.line-login-button:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

/* 押下（クリック）時：黒30%を重ねる */
.line-login-button:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  outline: none;
}

/* LINE会員登録ボタン */
.btn-line-entry {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  font-family: sans-serif;
  font-weight: bold;
  transition: background-color 0.2s;
  height: 44px;
  text-decoration: none !important;
  width: 100%;
  max-width: 250px;
  border: 1px solid #e5e5e5;
  padding-left: 8px
}

/* LINEアイコン部分のコンテナ（左側のエリア） */
.line-entry-icon {
  width: 32px;
  height: 32px;
  background-image: url('/assets/imgs/social/line/app_icon.png');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  border-right: 1px solid rgba(0, 0, 0, 0.08); /* 縦線：不透明度8%の黒 */
}

/* テキスト部分 */
.line-entry-text {
  padding: 0 16px;
  font-size: 16px;
  line-height: 1;
  flex-grow: 1;
  text-align: center;
}

/* LINE退会申請ボタン */
.btn-line-cancel {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff; /* 基本色 */
  color: #000000;
  border: none;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  font-family: sans-serif;
  font-weight: bold;
  transition: background-color 0.2s;
  height: 50px;
  text-decoration: none !important;
  width: 300px;
  max-width: 300px;
  border: 1px solid #e5e5e5;
  padding-left: 8px;
}

@media screen and (max-width: 767px) {
  .btn-line-cancel {
    width: 100%;  
  }
}

/* LINEアイコン部分のコンテナ（左側のエリア） */
.line-cancel-icon {
  width: 32px;
  height: 32px;
  background-image: url('/assets/imgs/social/line/app_icon.png');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  border-right: 1px solid rgba(0, 0, 0, 0.08); /* 縦線：不透明度8%の黒 */
}
@media screen and (max-width: 767px) {
  .line-cancel-icon {
    background-repeat: no-repeat;
    overflow: hidden;
    flex-shrink: 0;
  }
}

/* テキスト部分 */
.line-cancel-text {
  padding: 0 16px;
  font-size: 16px;
  line-height: 1;
  flex-grow: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .line-cancel-text {
    padding: 0 5px;
    font-size: 12px;
  }
}

/* ホバー・アクティブ時の挙動 */
.btn-line-entry:hover,
.btn-line-cancel:hover {
  background-color: #f8f8f8;
  border-color: #d1d1d1;
  cursor: pointer;
}

.btn-line-entry:active,
.btn-line-cancel:active {
  background-color: #f0f0f0;
}

/* 余白 */
.padding-top10 {
  padding-top: 10px;
}

.padding-top20 {
  padding-top: 20px;
}

.padding-top30 {
  padding-top: 30px;
}

.padding-top40 {
  padding-top: 40px;
}

/* 関連文言表示 */
.notice-line-cancel {
  font-weight: bold;
  font-size: 15px;
  color: #c00;
  padding-bottom: 10px;
}

.line-message-strong {
  font-weight: bold;
  font-size: 16pt;
}