@charset "utf-8";
/* CSS Document */

.alert {
    font-size: 1.4rem;
}

/* ------------------------------------------ */
/* inner
/* @className inner
/* ------------------------------------------ */
.inner {
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
    max-width: 960px;
    margin: 100px auto 0;
}
@media screen and (max-width: 768px){
    .inner {
        max-width: 96%;
        margin: 100px 4% 0;
    }
}

/* ------------------------------------------ */
/* header
/* @className header
/* ------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100vw;
    height: 70px;
    padding: 10px 50px;
}
.header__logo img {
    width: auto;
    height: 60px;
}
@media screen and (max-width: 768px){
    .header {
        height: 60px;
        padding: 10px 15px;
    }
    .header__logo img {
        width: auto;
        height: 30px;
    }
}

/* ------------------------------------------ */
/* ログイン
/* @className login
/* ------------------------------------------ */
.login__title {
    padding: 20px 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    background-color: #3B5452;
}
.login__formArea {
    margin-bottom: 30px;
    background-color: #3B5452;
    padding: 20px 0;
    color: #fff;
}

.login__cautionArea {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px){
    .login__title {
        font-size: 1.4rem;
        padding: 15px 0;
    }
    .login__cautionArea {
        justify-content: flex-start;
    }
}

/* ------------------------------------------ */
/* 入力項目リスト
/* @className fieldList
/* ------------------------------------------ */
.fieldList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px){
    .fieldList {
        justify-content: flex-start;
    }
}

/* ------------------------------------------ */
/* 入力項目
/* @className field
/* ------------------------------------------ */
.field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    margin-bottom: 20px;
}
.field__title {
    width: 20%;
}
.field__input {
    width: 80%;
}
.field__input input {
    width: 100%;
    height: 40px;
}
@media screen and (max-width: 768px){
    .field {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .field__title {
        width: 100%;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    .field__input {
        width: 100%;
        font-size: 1.2rem;
    }
}

/* ------------------------------------------ */
/* ログインボタン
/* @className loginBtn
/* ------------------------------------------ */
.loginBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 1;
    margin: 10px auto;
    padding: 10px 50px;
    border: 1px solid #fff;
    background-color: transparent;
}
@media screen and (max-width: 768px){
    .loginBtn {
        font-size: 1.2rem;
    }
}


/* ------------------------------------------ */
/* 注意書きリスト
/* @className cautionList
/* ------------------------------------------ */
.cautionList__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 400px;
    margin-bottom: 10px;
	font-size: 1.4rem;
    line-height: 1.3;
}
.cautionList__item::before {
    content: '※';
}

@media screen and (max-width: 768px){
    .cautionList__item {
        width: 100%;
        font-size: 1.1rem;
    }
}
