﻿@media (max-width: 480px) {
    .br-sp {
        display: block;
    }

    header, footer {
        min-width: 380px;
    }
    .headTitle {
        font-size:13px;
        height: 48px;
        line-height: 17px;
    }
    .mainSection {
        min-width: 380px;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .actionArea {
        min-width: 360px;
    }

        .actionArea .BigButton {
            width:320px;
            height: 100px;
            flex: unset;
            margin: 0 auto;
            
        }

        .actionArea .WideButton {
            width: 100%;
            width: 320px;
            height: 80px;
            flex: unset;
            margin: 0 auto;
        }

    .subTitle {
        width: 100%;
        min-width: 358px;
        margin: 0 auto;
        margin-top: 32px;
        margin-bottom: 24px;
        font-size: 18px;
    }

    .mainText {
        width: 100%;
        min-width: 358px;
        margin: 0 auto;
    }

    .questionTitle {
        margin-top:30px;

    }
    .questionSelectList {
        width: 100%;
        min-width: 358px;
    }

    .footText {
        margin-top: 80px;
    }
    .conQuestion{
        font-size:14px;
    }
    .screenName {
        padding-top: 19px;
        padding-bottom: 19px;
        min-width:380px;
    }

    .logout {
        position: absolute;
        font-size: 9px;
        top: 21px;
        right: 0px;
    }


    /* 未選択状態のラジオボタンの背景色やボーダーの指定 */
    .check-btn-only label {
        display: flex; /* 中の文字の上下中央揃えを行うための設定 */
        align-items: center; /* 中の文字の上下中央揃えを行うための設定 */
        position: relative; /* 疑似要素の位置調整のための設定 */
    }

    /* 中の文字列の位置調整 */
    .check-btn-only span {
        display: block; /* ラジオボタン内の文字の上下中央揃えを行うための設定 */
        padding-left: 46px; /* 左側のボタン設置スペース確保のための設定 */
        padding-right: 4px; /* 文字列が右側にギリギリにならないようにするための設定 */
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* 選択/未選択時の両方に存在する白い丸を作成 */
    .check-btn-only label::before {
        margin-left: 12px;
        content: "";
        width: 22px; /* 白い丸の横の長さ */
        height: 22px; /* 白い丸の縦の長さ */
        position: absolute; /* 位置調整の起点をlabelの左上の角とするための設定 */
        top: 50%;
        left: 13px;
        transform: translate(-50%, -50%); /* topとleftが丸の中心を基準とするための設定 */
        z-index: 10;
        border-style: solid;
        border-width: 1px;
        border-color: #dcdcdc;
    }

    .check-btn-only input:checked + label::before {
        margin-left: 12px;
        content: "";
        width: 22px; /* 白い丸の横の長さ */
        height: 22px; /* 白い丸の縦の長さ */
        position: absolute; /* 位置調整の起点をlabelの左上の角とするための設定 */
        top: 50%;
        left: 13px;
        transform: translate(-50%, -50%); /* topとleftが丸の中心を基準とするための設定 */
        z-index: 10;
        border-style: solid;
        border-width: 1px;
        border-color: #0091D7;
    }

    /* 選択時のみに存在する青い丸を作成, 基本は白い丸とすべて同じ */
    .check-btn-only input:checked + label::after {
        content: "";
        width: 22px;
        height: 22px;
        background-color: #0091D7;
        position: absolute;
        top: 50%;
        left: 25px;
        transform: translate(-50%, -50%);
        background-image: url("../image/checkbox.svg");
        background-repeat: no-repeat;
        background-size: contain;
    }


    .btnNext,.btnBack{
        font-size:16px;
    }

    .backIconArea {
        width: 364px;
        min-width: 364px;
        top: -46px;
        left: 16px;
    }

        .backIconArea .icon {
        }

            .backIconArea .icon:before {
                font-family: "Material Icons";
                content: "\e5cb";
                border-style: solid;
                border-width: 1px;
                border-color: #465050;
                color: #465050;
                border-radius: 2px;
                font-size:24px;
            }

        .backIconArea .text {
            position: absolute;
            left: 30px;
            font-size: 12px;
            color: #465050;
            display:none;
        }

}
