@charset "UTF-8";
/* =================================================================================================
　WEBアカウント 新規登録／STEP1/3メールアドレスの認証
　http://www.wowow.co.jp/
　Copyright (C) WOWOW INC. ALL RIGHTS RESERVED.
================================================================================================= */
/* ----------------------------------------------------------------------------
　必ずご確認ください
---------------------------------------------------------------------------- */
.email_lead {
  margin-bottom: 2rem;
  line-height: 180%;
}
.email_lead .small {
  font-size: 0.8rem;
}

/* ----------------------------------------------------------------------------
　メールアドレス
---------------------------------------------------------------------------- */
.email_input_area {
  position: relative;
  margin-bottom: 1.5rem;
}

.email_input_area .input_title {
  margin-bottom: 1rem;
}

.email_input_area input[name=email]:-moz-read-only {
  opacity: 0.5;
}

.email_input_area input[name=email]:read-only {
  opacity: 0.5;
}

.email_input_area .attention_send {
  text-align: center;
  color: #cc0000;
  margin-top: 1rem;
  display: none;
}

/* ----------------------------------------------------------------------------
　認証コード入力エリア
---------------------------------------------------------------------------- */
.code_input_area {
  margin-bottom: 1rem;
  position: relative;
}
.code_input_area.active {
  display: block;
}

.code_input_area .cap {
  font-size: 0.8rem;
  line-height: 150%;
  margin-bottom: 2rem;
}
.code_input_area .cap a {
  color: #000;
  text-decoration: underline;
}
.code_input_area .cap a:hover {
  text-decoration: none;
}

.code_input_area .code_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.code_input_area .code_input p {
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  margin-right: 1rem;
}

.code_input_area .code_input input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
}

/* ----------------------------------------------------------------------------
　送信エリア
---------------------------------------------------------------------------- */
.code_send {
  width: 80%;
  margin: 2rem auto 0;
}
@media screen and (max-width: 592px) {
  .code_send {
    width: 100%;
  }
}

.code_send a {
  display: block;
  text-align: center;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 0 0.9rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 130%;
  pointer-events: none;
  background-color: #ccc;
}
.code_send a.active {
  pointer-events: auto;
  background-color: #0057a7;
}

/** 【FLECTが追加しました】↓input項目用のcode_sendクラスを追加 */

.code_send input {
  display: block;
  text-align: center;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 130%;
  pointer-events: none;
  background-color: #ccc;
  padding: 0.9rem 0 0.9rem;
  width: 100%;
  height: 100%;
}

.code_send input.active {
  pointer-events: auto;
  background-color: #0057a7;
}

.code_send input.active:hover {
  opacity: 0.8;
  cursor: pointer;
}

/** 【FLECTが追加しました】↑input項目用のcode_sendクラスを追加 */
