/**
 * アプリの退会画面用
 * - withdrawal_login.php
 * - withdrawal_form.php
 */
/** 各画面のブロック ======================================================== */
.panel {
    border: 5px solid #45a5d8;
    border-radius: 4px;
    margin: 90px 145px;
    padding: 60px 50px;
}

@media (max-width: 767px) {
    .panel {
        margin: 90px 0;
        padding: 45px 15px;
    }
}

/** タイトル ================================================================ */
.ttl {
    text-align: center;
}

.ttl img {
    width: 150px;
}

/** エラー内容表示 ========================================================== */
.alert {
    color: red;
    font-size: 14px;
}

/** 「必須」ラベル ========================================================== */
.hissu {
    background: #ea66a1;
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 767px) {
    .hissu {
        font-size: 1.0rem;
        display: inline-block;
        padding: 0 10px;
    }
}

/** 「region PAY の退会」「各地域の退会」ラジオボタンの下の説明 ============= */
.chuui {
    line-height: 1.2;
    color: #666;
}

/** input =================================================================== */
input,
select {
    box-sizing: border-box;
    padding: 8px 10px;
    width: 100%;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 3px;
}

.input_group {
    margin-top: 15px;
}

.input_group .input_label {
    background: #eee;
    padding: 0 10px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {

    .input_group .input_label,
    .input_group label {
        font-size: 13px;
    }

    .fs-14-sm {
        font-size: 14px;
    }
}

/** ラジオボタン ============================================================ */
.radio_group label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    line-height: 2.6;
}

.radio_group label::before,
.radio_group label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radio_group label::before {
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 5px;
}

.radio_group label::after {
    background-color: #ea66a1;
    border-radius: 50%;
    opacity: 0;
    width: 16px;
    height: 16px;
    left: 8px
}

.radio_group input:checked+label::after {
    opacity: 1;
}

.radio_group .visually-hidden {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

/** チェックボックス ======================================================== */
.check_group input {
    display: none;
}

.check_group label {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
    line-height: 2.6;
}

.check_group label::before,
.check_group label::after {
    content: "";
    display: block;
    position: absolute;
}

.check_group label::before {
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #bbb;
    width: 20px;
    height: 20px;
    top: 1px;
    left: 5px;
}

.check_group label::after {
    border-bottom: 4px solid #ea66a1;
    border-left: 4px solid #ea66a1;
    opacity: 0;
    height: 5px;
    width: 10px;
    transform: rotate(-45deg);
    top: 5px;
    left: 10px;
}

.check_group input:checked+label::after {
    opacity: 1;
}

/** テキストエリア ========================================================== */
.textarea_group textarea {
    box-sizing: border-box;
    padding: 8px 10px;
    height: calc(1.6rem * 5);
    width: 100%;
    line-height: 1.6;
    font-size: 18px;
    border: 1px solid #999;
    border-radius: 3px;
}

/** 遷移ボタン ============================================================== */
.button {
    text-align: center;
    margin: 30px auto;
}

.button button {
    border: none;
    border-radius: 4px;
    color: #fff;
    background-image: linear-gradient(45deg, #00a0e9 0%, #ea66a1 100%);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #97bee5;
    width: 100%;
    font-size: 16px;
    padding: 5px 0;
}

/** 同意画面 ================================================================ */
.withdrawal_content {
    line-height: 1.5;
}

/** 完了画面 ================================================================ */
.finish {
    text-align: center;
}

.finish h3 {
    font-size: 4rem;
    color: #ea66a1;
    text-align: center;
}

.finish p {
    font-size: 1.4rem;
    margin: 0 -3px;
}

/** ユーティリティ ========================================================== */
.d-none {
    display: none !important;
}

.mb-2rem {
    margin-bottom: 2rem !important;
}
