﻿@charset "UTF-8";

/*================================================
* CSS RESET
================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,h7,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px
dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px
solid #DEE2E2;margin:0;padding:0}input,select{vertical-align:middle}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■Frequently Used■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* font-family: 'Montserrat', sans-serif;
/*
/*
/*
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■General CSS set■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
img {
    vertical-align: top;
}

video {
    vertical-align: top;
}

body {
    font-family: “Helvetica Neue”, Arial, Roboto, "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #cac0b8;
    color: #303030;
    overflow-x: auto;
    overflow-y: auto;
}

a {
    text-decoration: none;
}

rt {
    font-size: 10px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■Login CSS set■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.login {
}

.login_box {
    width: 680px;
    margin: auto;
    background-color: #f0eae2;
    margin-top: 10px;
    margin-bottom: 36px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
    border: solid 2px #6e665e;
}

.login_box_box {
    padding: 0px 50px;
}

.login_box_flex {
    display: flex;
}

.login_box_flex_bottom {
    display: flex;
    padding-top: 0px;
}

.login_box_logo {
    min-width: 210px;
    margin-right: 50px;
    padding-top: 104px;
    text-align: center;
}

.login_box_logo_image {
    width: 160px;
    margin-bottom: 14px;
}

.login_box_icon_pass_image_box {
    width: 100%;
    height: 100%;
    position: relative;
}

.login_box_icon_pass_div {
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    right: 0.8em;
}

.login_box_icon_pass_image {
    width: 30px;
    position: absolute;
    margin-top: 8px;
    cursor: pointer;
    right: 0.8em;
    /*right: 5px;*/
}

p.login_box_logo_font {
    font-weight: bold;
    line-height: 32px;
}

.login_box_form {
    min-width: 320px;
}

p.textBoxTitle {
    margin-bottom: 6px;
    font-size: 24px;
}

p.textEtcLogin {
    margin-bottom: 6px;
    font-size: 24px;
    text-align: left;
}


.textBox {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    height: 48px;
    border-radius: 4px;
    border: solid 4px #6e665e;
    font-size: 24px;
    padding-left: 10px;
    background-color: #ffffff;
    color: #303030;
    cursor: pointer;
}

.textBox_ww {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    height: 48px;
    border-radius: 4px;
    border: solid 4px #6e665e;
    font-size: 24px;
    padding-left: 10px;
    padding-right: 40px;
    background-color: #ffffff;
    color: #303030;
    cursor: pointer;
}

.textBox:focus {
    outline:solid 0px #FFFFFF;
}

.textBox_ww:focus {
    outline: solid 0px #FFFFFF;
}
.checkbox {
    margin-bottom: 14px;
    width: 280px;
}
    
.checkbox_CheckboxInput {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox_CheckboxInput-Input {
    margin: 0;
    width: 0;
    opacity: 0;
}

.checkbox_CheckboxInput-Input:checked + .checkbox_CheckboxInput-DummyInput {
    background: #3c80ff;
    border: solid 2px #3c80ff;
}
.checkbox_CheckboxInput-Input:checked + .checkbox_CheckboxInput-DummyInput::before {
    content: "";
    display: block;
    position: absolute;
    top: 28%;
    left: 56%;
    width: 40%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}
.checkbox_CheckboxInput-Input:checked + .checkbox_CheckboxInput-DummyInput::after {
    content: "";
    display: block;
    position: absolute;
    top: 35%;
    left: 60%;
    width: 76%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}
.checkbox_CheckboxInput-DummyInput {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    border: solid 2px transparent;
    background: #f8f8f8;
    border: solid 2px #808094;
    margin-top: 10px;
    border-radius: 2px;
}
.checkbox_CheckboxInput-LabelText {
    margin-left: 12px;
    display: block;
    font-size: 24px;
}

.login_box_form_notification_font {
    font-size: 24px;
    color: #c80030;
    margin-bottom: 16px;
    text-align: left;
}

.login_box_form_button {
    background: linear-gradient(#e9eeff, #bccbde);
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: solid 2px #8c93a7;
    box-sizing: border-box;
    margin-top: 16px;
    margin-left: auto;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
.login_box_form_button:hover {
    background: linear-gradient(#dfe4f5, #b2c1d4);
    cursor: pointer;
}
.login_box_form_button:active {
    background: linear-gradient(#d0d5e6, #a3b2c5);
}

p.login_box_form_button_font {
    text-align: center;
    line-height: 47px;
    font-size: 24px;
}

hr.devider {
    background-color: #b4b0ac;
    height: 2px;
    margin: 16px 0px;
    box-sizing: content-box;
    opacity: 1;
}

    .login_box_form_buttonMicrosoft:active {
        background-color: #e0e0e0;
    }
.login_box_form_buttonGoogle {
    width: 316px;
    height: 36px;
    margin-bottom: 12px;
    background-color: #8c93a7;
    /*background-color: #ffffff;*/
    color: #303030;
    cursor: pointer;
    border: solid 2px #8c93a7;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
    display: flex;
    /*font-display: optional;*/
    font-display: block;
    -webkit-font-smoothing: antialiased;
}

.google_button_image {
    width: 316px;
    height: 36px;
    margin-bottom: 12px;
    border: solid 2px #8c93a7;
    box-sizing: border-box;
    border-radius: 4px;
}


.login_box_form_buttonMicrosoft {
    width: 316px;
    height: 36px;
    margin-bottom: 12px;
    background-color: #8c93a7;
    color: #303030;
    cursor: pointer;
    border: solid 2px #8c93a7;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
    display: flex;
    -webkit-font-smoothing: antialiased;
}

.login_box_form_buttonMicrosoft_line {
    width: 312px;
    height: 32px;
    margin-bottom: 12px;
    background-color: #ffffff;
    color: #303030;
    cursor: pointer;
    border: solid 1px rgba(218,220,224,1);
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
}

.login_box_form_buttonMicrosoft_line:hover {
    background-color: rgba(248,250,255,1);
}
.login_box_form_buttonMicrosoft_line:active {
    background-color: rgba(248,250,255,1);
}

p.login_box_form_buttonMicrosoft_font {
    text-align: center;
    line-height: 30px;
}

.login_box_form_buttonMicrosoft_icon {
    margin: auto;
    display: flex;
}

.login_box_form_buttonMicrosoft_icon_image {
    margin-left: -15px;
    margin-top: -7px;
    height: 46.5px;
    width: 103px;
}

.login_box_form_buttonMicrosoft_text {
    width: 100%;
    text-align: center;
    font: 14px sans-serif;
    margin-left: 0px;
    margin-top: 5px;
}

.login_box_notification {
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 95px;
    min-height: 50px;
}

p.login_box_notification_font {
    font-size: 24px;
    margin-bottom: 8px;
}

/*Apple Login*/
.login_box_form_buttonApple {
    background: #8c93a7;
    width: 316px;
    height: 36px;
    border-radius: 4px;
    border: solid 2px #8c93a7;
    box-sizing: border-box;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 16px;
    display: flex;
    position: relative;
}

.login_box_form_buttonApple_line {
    width: 312px;
    height: 32px;
    margin-bottom: 12px;
    background-color: #ffffff;
    color: #303030;
    cursor: pointer;
    border: solid 1px rgba(218,220,224,1);
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
}

    .login_box_form_buttonApple_line:not(.iPad):hover {
        background-color: rgba(248,250,255,1);
        cursor: pointer;
    }

    .login_box_form_buttonApple_line:active {
        background-color: rgba(248,250,255,1);
    }

.login_box_form_buttonApple_line_iPad_click {
    background-color: rgba(248,250,255,1);
    cursor: pointer;
}

.login_box_form_buttonApple_text {
    width: 100%;
    text-align: center;
    font: 14px sans-serif;
    margin-left: 0px;
}


p.login_box_form_buttonApple_font {
    text-align: left;
    margin-left: 67px;
    line-height: 30px;
    font-size: 14px;
}

.login_box_form_buttonApple_icon {
    margin: auto;
    display: flex;
    margin-left: 0px;
}

.login_box_form_buttonApple_icon_image {
    margin-left: -2px;
    margin-top: -3px;
    height: 40px;
    width: 40px;
}
