﻿html {
    min-width: 320px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    body {
        position: relative;
        background: #fff;
        color: #444;
        font-size: 14px;
        font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    body {
        position: relative;
        background: #fff;
        color: #444;
        font-size: 14px;
        font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
        line-height: 1.5;
    }
}

/*アクセントライン*/
.redLine {
    border-bottom: 3px solid #c7000d
}

/*ロゴ(PC)*/
.logo-pc {
    width: 420px;
    height: 87px;
}

/*ロゴ(スマートフォン)*/
.logo-sp {
    width: 250px;
    height: 52px;
}

/*パートナーカーブ*/
.footer-curb {
    width: 100%;
}

/*コピーライト*/
.footer-copyright {
    padding-top: 5px;
    padding-bottom: 10px;
    position: relative;
    bottom: 5px;
    background: #e2ddd4;
}

/*エラーメッセージテキスト*/
@media screen and (min-width: 768px) {
    .error-text {
        height: 87px;
        position: relative;
        display: table;
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .error-text {
        height: 87px;
        position: relative;
        font-size: 1rem;
        line-height: 1.5;
        padding-left: 15px;
    }
}

/*次画面遷移ボタン*/
.btn-next {
    width: 100px;
    color: #444;
    background-color: #D1DAFF;
    border: 2px solid;
    border-color: #1746FF;
    border-radius: 0rem;
}

/*前画面遷移ボタン*/
.btn-back {
    width: 100px;
    color: #444;
    background-color: #fff;
    border: 2px solid;
    border-color: #345a88;
    border-radius: 0rem;
}

/*再送信ボタン*/
.btn-resend {
    width: 100px;
    color: #808080;
    background-color: #fff;
    border: 2px solid;
    border-color: #808080;
    border-radius: 5rem;
    position: absolute;
    right: 10px;
}

/*ログインボタン*/
.btn-login {
    color: #fff;
    width: 220px;
    text-align: center;
    background: linear-gradient(#1e5799 0%, #f0a200 0%, #de6c01 99%);
    background-repeat: no-repeat;
    background-position: 95% center;
    border: 1px solid #e89a54;
    border-color: #fff;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 30px;
    position: relative;
    text-shadow: none;
}

/*ログインボタンの右端に>を表示*/
.btn-login::after {
    content: ">";
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/*テキストボックスのクリアボタン非表示*/
.pwdTextBox::-ms-clear {
    display: none;
}

/*パスワード表示・非表示切り替え用チェックボックス*/
.pwdInput[type=checkbox] {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 8px;
    cursor: pointer;
    opacity: 0;
}

/*パスワード表示・非表示画像親要素*/
.pwdLabel {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 10px;
    cursor: pointer;
}

/*パスワード表示画像*/
.iconEye {
    background: url('../img/showpw.png') no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
}

/*パスワード非表示画像*/
.iconEyeSlash {
    background: url('../img/hidepw.png') no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
}

/*エラーメッセージ*/
.error-msg {
    color: red;
}

/*otp戻るボタン*/
.otp-returnbtn {
    position: relative;
    left: 50px;
    bottom: 0px;
}

/* Edge標準のパスワード表示アイコン非表示 */
.pwdTextBox::-ms-reveal {
    display: none;
}

/* 新規登録リンクのPaddningを0にしてわずかに左寄せのデザインを中央寄せにする */
.btn-paddingZero {
    padding: 0;
}

/* 規約文言スクロール */
.scroll {
    height: 300px;
    overflow-y: scroll;
    border: 1px #808080 solid;
}

.tab-area {
    display: flex;
    cursor: pointer;
}

.tab {
    width: 150px;
    text-align: center;
    background-color: grey;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.tab.active {
    background-color: #de6c01;
    color: white;
}

.content-area {
    font-size: 30px;
    text-align: center;
}

.content {
    display: none;
}

.content.show {
    display: block;
}
