/**
 * ログインページ用に各パーツを調整
 */
@media screen and (max-width: 767px) {
  .container {
    width: 80%;
  }

  .headText {
    display: none;
  }

  .user-func {
    display: none;
  }

  .title-page {
    display: none;
  }

  .title-form {
    margin: 10px 0 5px;
    font-size: 1.2rem;
  }

  .buttonarea .link-text-underline {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 1.2rem;
  }

  .section-body.single:before,
  .single.section-body-nerrow:before {
    margin-top: 0;
  }

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

  input[type="text"],
  input[type="password"] {
    padding: 8px;
  }

  .btn-primary,
  .btn-secondary {
    margin: 0 auto;
    height: 53px;
  }

  .text-input-comment {
    margin: 5px auto 0;
    font-size: 1.1rem;
  }
}

/**
 * LINEログインボタン
 */
.line-login-btn {
  display: flex;
  align-items: center;
  margin: 0 auto;
  border-radius: 4px;
  height: 58px;
  background-color: #06C755;
  color: #fff;
  text-decoration: none;
}
.line-login-btn:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .line-login-btn {
    transition: background-color 0.3s;
  }
  .line-login-btn:hover {
    background-color: #11b153;
  }
  .line-login-btn:active {
    background-color: #0b8a40;
  }
}
@media screen and (max-width: 767px) {
  .line-login-btn {
    width: 100%;
    max-width: 100%;
  }
}
.line-login-btn-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 7px;
  width: 52px;
  height: 58px;
}
.line-login-btn-logo img {
  width: 100%;
}
.line-login-btn-text {
  padding-bottom: 1px;
  width: calc(100% - 52px);
  font-size: 14px;
  text-align: center;
}
