.idol-logo {
  width: 90%;
  margin-bottom: 10px;
}

/* スマホサイズのみ*/
@media (max-width: 767px) {
  .login-pf-page {
    padding-top: 0px;
  }
}

/* ログインページの背景色 */
@media (max-width: 768px) {
  .login-pf-page {
    background: #e0dbfc !important;
  }
}

.login-pf-page .card-pf {
  background: none;
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  max-width: 400px;
  background: #DCD0FF;
  border-radius:10px;
  border-top: 3px solid #8f8ae5;
  padding: 20px 40px 10px 40px;
}

@media (max-width: 767px) {
  .login-pf-page .card-pf {
    background: #e0dbfc;
    border-top: none;
    box-shadow: none;
  }
}

/* アカウント登録ボタンなどもまとめて変更するためにimportantする */
.pf-c-button {
  border-radius: 10px;
  background: #624F8F !important;
  color: #f6f6f6 !important;
  font-size: 16px;
  font-weight: 700;
}

.pf-c-button:hover {
  opacity: 0.8;
  --pf-c-button--m-primary--Color: white !important;
}

.pf-c-form-control {
  border: 1px solid #8f8ae5 !important;
  background-color: #f9f7f9 !important;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
}

.pf-c-form__label {
  color: #624F8F;
  padding-bottom: 3px;
  --pf-c-form__label--FontSize: 16px;
  --pf-c-form__label-text--FontWeight: 700;
}

.kc-registration {
  padding: 5px 0px;
}

.col-xs-7 {
  width: auto;
}

/* これが背景ですおそらく */
.login-pf-page {
  min-height: 100vh;
  align-items: center;
  display: flex;
  background-color: #E0DBFC;
}

:root {
  --pf-global--danger-color--100:#F54166;
  --pf-global--danger-color--200:#F54166;
}

.title {
  font-size: 26px;
  /* color: #bebebe; */
  /* font-weight: 900; */
  vertical-align: middle;
  /* align-items: center; */
  text-align: center;
  font-family: "メイリオ", sans-serif;
  font-weight: 100;
  /* padding-bottom: 10px; */
}

/* ログイン状態の保存 */
.checkbox label {
  padding-left: 0;
}

/* アカウント登録、パスワードをお忘れですか？の間にmarginを入れるクラス */
.margin-top-10 {
  margin-top: 10px;
}

/* アカウント登録、パスワードをお忘れですか？のフォームのバリデーションメッセージ */
.pf-c-form__helper-text {
  color: #F54166;
}

.title_container{
  /* padding: 10px 0px; */
  margin: 0 auto;
  text-align: center;
}

HR {
  border: 1px solid #8f8ae5;
  margin: 10px 0;
}

.xlarge-font {
  font-size: x-large;
  font-weight: 700;
}

.large-font {
  font-size: large;
  font-weight: 700;
}

.medium-font {
  font-size: medium;
  font-weight: 700;
}

.small-font {
  font-size: small;
  font-weight: 700;
}

.pf-c-input-group {
  background-color: transparent;
}

.pf-c-button.pf-m-control {
  --pf-c-button--after--BorderColor: transparent;
}

.section-title {
  color: #624F8F;
  text-align: center;
}

.margin-vertical-10 {
  margin: 10px 0;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.social-login-list {
  text-align: center;
}

/* LINEログインボタン */
/* ガイドライン参照：https://developers.line.biz/ja/docs/line-login/login-button/ */
.line-login-button {
  display: inline-block;
  margin: 5px; /*保護エリア*/
}

.line-login-button:hover,
.line-login-button:active,
.line-login-button:focus {
  text-decoration: none;
  outline: none;
}

.line-login-button:visited {
  text-decoration: none;
}

.line-login-container {
  display: flex;
  align-items: center;
  background: #06C755; /*基本色*/
  border-radius: 10px;
  overflow: hidden;
  height: 50px;
}

.line-login-button:hover .line-login-container {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1); /*マウスオーバー 不透明度：10%*/
}

.line-login-button:active .line-login-container {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.3); /*タップ/クリック 不透明度：30%*/
}

.line-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.line-logo-section img {
  width: 40px;
  height: 40px;
}

.line-divider {
  width: 1px;
  height: 100%;
  background-color: #000000; /*縦線（無効以外）#000000*/
  opacity: 0.08; /*不透明度：8％*/
}

.line-text-section {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  color: #FFFFFF; /*文字色/ロゴ（無効以外）#FFFFFF*/
  padding: 20px 40px; /*余白*/
  flex-shrink: 0;
}

@media (max-width: 360px) {
  .line-login-container {
    height: 44px;
  }
  
  .line-logo-section {
    width: 44px;
    height: 44px;
  }
  
  .line-logo-section img {
    width: 32px;
    height: 32px;
  }
  
  .line-text-section {
    font-size: 16px;
    padding: 16 32px;
  }
}

.margin-left-3pct {
  margin-left: 3%;
}

.form-group {
  margin-bottom: 10px;
}