@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media only screen and (max-width: 768px) {
}

/***************************************************************************
password_box
****************************************************************************/

.password_box {
    text-align: center;
    margin-bottom: 25px;
}

.password_box input.pass_input {    /*input初期化*/
    outline: none;                /*hover時に水色の枠線が付くのを防ぐ*/
    border-radius: 5px;           /*iPhoneで角丸になるのを防ぐ*/
    font-size: 20px;
    text-align: center;
    display: inline-block;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    border: 1px solid #CCCCCC;
	background-color:#E8E8E8;
    padding: 10px;
    width: 100%;
    max-width: 340px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
.password_box input.pass_input {
    font-size: 16px !important;    /* iphoneでinput入力時拡大を防ぐ */
}
}