@charset "utf-8";
/* タブレット用CSS */
@media screen and (min-width: 451px) and (max-width: 959px) {



    /*全体*/

    * {
        padding: 0;
        margin: 0;
        font-family: 'Noto Sans JP', sans-serif;
        scroll-behavior: smooth;
        box-sizing: border-box;
    }


    body {
        margin: 0 auto;
        /* 中央揃え */
        border: 0px solid #000000;
    }

    main {
        width: 90%;
        margin: 0px auto;
        border: 0px solid #000000;
        padding: 0px 30px 0 30px;
    }


    /*アンケート別*/

    /*アンケートと下線*/

    .surveyHead {
        margin-bottom: 3rem;
    }


    h1 {
        text-align: center;
        color: #000000;
        font-size: 1.50rem;

    }

    .leadText {
        text-align: center;
        padding-top: 1.25rem;
        line-height: 1.75;
        font-size: 1rem;
        font-weight: 600;
        color: #000;
    }

    /*
h1 span:after{
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    height: 0.25rem;
    background: #c3ab6d;
    left: 15%;
    bottom: 0;	
}

.guidelineHead h1 span{
	display: inline-block;
    position: relative;
    padding-bottom: 0.75rem;
	}
*/


    /*アンケート枠*/

    #surveyWrap {
        margin: 30px auto;
        width: 100%;
        border: 0px solid #000000;
    }


    /*アンケート1とかタイトル*/
    .surveyContent {
        width: 100%;
        margin: 70px auto;
        border: 0px solid #000000;
    }

    .surveyContent h2 {
        width: 100%;
        text-align: center;
        background: #000;
        color: #fff;
        font-size: 1.375rem;
        min-height: 3.75rem;
        display: flex;
        align-items: center;
        position: relative;
        font-weight: bold;
        margin-bottom: 0rem;
        padding-right: 2rem;
        transform-origin: left top;
        padding-left: 5rem;
        overflow: hidden;
        line-height: 1.4;
    }


    .surveyContent h2:before {
        content: "";
        display: block;
        position: absolute;
        height: 100%;
        width: 2.0rem;
        left: 0;
        top: 0;
        transform-origin: left top;
        transform: skewX(-20deg);
        background: #c3ab6d;
    }

    /*テーブル*/

    table,
    table td,
    table th {
        border-collapse: collapse;
        /* 1pxにする */
    }


    table {
        background: #f5f7f9;
        text-align: center;
        border-top: 0px solid #000000;
        border-right: 0px solid #000000;
        width: 100%;
        margin: 20px auto;
    }

    table tr {
        border-bottom: 1px dotted #999999;
    }


    table tr:last-child {
        border-bottom: 0px solid #000000;
    }

    table th,
    table td {
        font-size: 18px;
        text-align: left
    }

    table th {
        width: 40%;
        border-left: 0px solid #000000;
        border-bottom: 0px dotted #999999;
        padding: 20px 30px;
    }

    table td {
        width: 60%;
        border-left: 0px solid #ffffff;
        border-bottom: 0px dotted #999999;
        padding: 20px 30px;
    }


    /*ラジオボタン*/

    label {
        display: block;
        font-size: 0.9em;
        padding: 10px 5px;
        align-items: center;
        /* 中央に揃える */
    }

    label:nth-child(1) {
        padding: 5px;
    }

    label input[type="radio"] {
        margin-right: 16px;
        /* テキストとボタンの間に8pxの間隔を追加 */
        vertical-align: middle;
        appearance: auto;



    }

    /*最後の送信ボタン*/

    .submit {
        appearance: none;
        background: #c4ac6d;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 3.75rem;
        margin: 0 auto;
        border: 1px solid #c4ac6d;
        cursor: pointer;
        transition: 0.25s opacity;
        width: 200px;
        padding: 50px auto;
        font-size: 1rem;
        font-weight: bold;
        max-width: calc(20% - 0.75rem);
    }


    .submit:active {
        margin-top: 3px;
        background-color: #309bf2;
        border-bottom: 2px solid #006366;
    }



    .submit:after {
        background: #000;
        width: 1rem;
        height: 1px;
        right: 0;
        top: 50%;
        margin-top: -1px;
        content: "";
        position: absolute;
        display: block;
        font-size: 1.125rem;
        font-weight: bold;
    }



    /*プログレスバー*/

    progress {
        width: 70%;
        /* 幅を300pxに設定 */
        height: 20px;
        /* 高さを20pxに設定 */
    }

    progress::-webkit-progress-bar {
        background-color: #f3f3f3;
        border-radius: 10px;
    }

    progress::-webkit-progress-value {
        background-color: #4caf50;
        border-radius: 10px;
    }


    /*テキストエリア*/

    textarea {
        width: 70%;
        /* 横幅を100%に設定 */
        padding: 10px;
        /* 内側の余白を設定 */
        border: 1px solid #cccccc;
        /* ボーダーの色と太さ */
        font-size: 16px;
        /* フォントサイズを設定 */
        background-color: #f9f9f9;
        /* 背景色を設定 */
        color: #333333;
        /* 文字色を設定 */
    }

    /* ログイン前 */
    .descText {
        text-align: center;
    }

    .loginWrap_login {
        text-align: center;
        text-decoration: underline;
    }

    .loginWrap_register {
        text-align: center;
        text-decoration: underline;
    }
}