@charset "utf-8";

#wrap{
    min-height: 100vh;
    background: #FFF;
    color: #323232;
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(112.5% + 0.25vw);
}

/*********************************************
                - メディアクエリ -
**********************************************/
@media screen and (max-width:480px) { 
    #wrap, button, select, input{
        font-size:1em !important;
    }
}
@media screen and (min-width:481px) and ( max-width:600px) { 
    #wrap, button, select, input{
        font-size:1em !important;
    }
}
@media screen and (min-width:601px) and ( max-width:960px) { 
    #wrap, button, select, input{
        font-size:1.1em !important;
    }
}
@media screen and (min-width:961px){
    #wrap, button, select, input{
        font-size:1.1em !important;
    }
}


.main{
    margin: 0 auto;
    padding: 0 1% 30px;
    box-sizing: border-box;
    overflow: hidden;
    background: #EAF6FD;
}
/**************************************************
                     header
**************************************************/
header{
    z-index: 2;
    background: #EAF6FD;
    border-top: 3px solid #154A97;
}
header h1{
  display: inline-block;
  color: #fff;
    visibility: hidden;
}

/*----------------------------上ログアウト他メニュー-------------------------*/


/**************************************************
                - login - ログイン
**************************************************/
.login header{
    text-align: center;
}
.container {
    width: 75%;
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }

.form_login {
    position: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 15px;
    border-width: 40px;
  }

.login label{
    display: block;
    margin: 8px 4px;
    font-weight :bold;
}
.login input{
    display: block;
    width: 100%;
    margin-bottom: 24px;
    box-sizing: border-box;
    line-height: 1.5;
}
.login h3 {
    padding-bottom: 16px;
    margin: 16px 0 32px;
    border: 0 solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
.form_control {
    border-radius: 10px;
  }

#change_password{
    margin-bottom: 12px;
    display: inline-block;
    text-decoration: none;
}
.wrapper {
    text-align: center;
  }
.group_btn{
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  /* input type="password" のみ */
input[type="text"] ,
input[type="password"]{
    property: value;
    width: 100%;
    padding: 0.5em;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #aaa;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

input.from_time[type="text"] {
    property: value;
    width: 50%;
}

/* input type="submit" のみ */
input[type="submit"]{
    property: value;
    padding: 12px 32px;
    background: #154A97;
    background-image: -webkit-linear-gradient(#154A97 0%, #2E75B6 100%);
    background-image: linear-gradient(#154A97 0%, #2E75B6 100%);
    border: none;
    border-radius: 3px;
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    transition: .4s;
}
input[type="submit"]:hover{
    background-image: -webkit-linear-gradient(#154A97 50%, #2E75B6 100%);
    background-image: linear-gradient(#154A97 50%, #2E75B6 100%);
    cursor: pointer;
}

/* Chrome */
::-webkit-input-placeholder {
    color: #3498db;
}
/* Firefox */
::-moz-placeholder {
    color: #3498db;
}
/* IE */
:-ms-input-placeholder {
    color: #3498db;
}


/**************************************************
                - footern - フッター
**************************************************/
.footer_area{
    margin: 0 auto;
    padding: 30px 0;
    border-top: 5px solid #0071BC;
}
.f_logo{
    margin-bottom: 16px;
    text-align: center;
    display: none;
}
.f_copy{
    color: #154A97;
    font-size: 0.8em;
    text-align: center;
}

/*********************************************
                - 調整用 -
**********************************************/
.mb1_5{
    margin-bottom: 1.5em;
}
.mb2{
    margin-bottom: 2em;
}

mr0{
    margin-right: 0 !important;
}

/*********************************************
            - 規約関連 2020/07/29-
**********************************************/
#first_link_content{
    text-align: center;
    display: block;
}

#terms_link_content {
    display: flex;
}
#terms_of_use {
    display:inline-block;
    margin-top: 1.5em;
}
#contact_us {
    display:inline-block;
    margin-top: 1.5em;
    margin-left: auto;
}
/*#login_help{
    font-size: 1.0em;
    text-decoration:none;
}*/
/*-----------------ヘルプ表示画面　モーダル------------------*/
/*.help_modal_area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10; //サイトによってここの数値は調整 
    width: 100%;
    height: 100%;
}*/

/*.help_modal_bg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
}*/

/*.help_modal_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 75%;
    background-color: #fff;
    border-radius: 5px;
}*/

/* クローズボタン */
/*.close_help_modal {
    position: absolute;
    top: -2em;
    right: 1rem;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
}*/

/*.help_modal_contents{
    margin-bottom: 3em;
    padding: 4% 0 2%;
    border-top: 2.1em solid #154a97;
    border-radius: 5px 5px 0 0 ;
    text-align: center;
    line-height: 1.2;
}*/
/*.help_modal_contents a{
    display: block;
}*/
/*.help_modal_contents p{
    margin: 1.2em 0;
}*/

/*.help_modal_contents > div{
    margin-top: 2.2em;
}*/

/*.help_modal_contents button{
    padding: 0.5em 1.5em;
    border-radius: 1.5em;
    font-weight: bold;
}*/
/*.help_modal_contents button:hover{
    cursor: pointer;
    font-weight:normal; 
}*/
/*.help_modal_contents button.logout{
    margin-right: 5%;
    background: #cc0000;
    border: 0.3em solid #cc0000;
    color: #fff;
}*/
/*.help_modal_contents button.logout:hover{
    margin-right: 5%;
    background: #fff;
    border: 0.3em solid #cc0000;
    color: #cc0000;
    
}*/
/*.help_modal_contents button.logout_cansel{
    background: #336699;
    border: 0.3em solid #336699;
    color: #fff;
}*/
/*.help_modal_contents button.logout_cansel:hover{
    background:   #fff;
    border: 0.3em solid #336699;
    color: #336699;
}*/
.edit_password{
    text-decoration: none;
    font-size: 2em;
}
.edit_forgot{
    display: inline-flex;
    margin-left: 5%;
    font-size: 1.5em;
    margin-top: 12px;
    margin-bottom: 24px;
    text-decoration: none;
}
#btn_area {
    background: #EAF6FD;
    padding: 12px;
}

#btn_area input[type="button"] {
    padding: 12px 32px;
    border: none;
    border-radius: 3px;
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    transition: .4s;
    margin: auto;
    display: block;
    width: 45%;
    margin-bottom: 24px;
    background: #404040;
    background-image: -webkit-linear-gradient(#404040 0%, #808080 100%);
    background-image: linear-gradient(#404040 0%, #808080 100%);
}

.edit_pass_elem{
    padding: 12px 32px;
    border: none;
    border-radius: 3px !important;
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    transition: .4s;
    margin: auto;
    display: block;
    width: 45%;
    margin-bottom: 24px;
}
.save-btn{
    background: #154A97;
    background-image: -webkit-linear-gradient(#154A97 0%, #2E75B6 100%);
    background-image: linear-gradient(#154A97 0%, #2E75B6 100%);
}
.cancel_btn{
    background: #404040;
    background-image: -webkit-linear-gradient(#404040 0%, #808080 100%);
    background-image: linear-gradient(#404040 0%, #808080 100%);
}
.login-btn{
    background: #154A97;
    background-image: -webkit-linear-gradient(#154A97 0%, #2E75B6 100%);
    background-image: linear-gradient(#154A97 0%, #2E75B6 100%);
}

