/**************************************************
**
**	OPTION
**	-----------------------------------------------
**	layout.css / style.css で上書きしたいスタイルを
**	ここに記入
**
***************************************************/


#debug-comment{
	background-color: #000000;
	color: #FF0000;
	font-size: 14px;
	text-align: center;
	padding: 5px;
}

.modalScreen {
    position: fixed;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.modalContentsArea {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: none;
}

.modalContent {
    width: 530px;
}

.modalContent {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 95%;
    height: auto;
    max-height: 95%;
    pointer-events: auto;
    background-color: #FFFFFF;
    background-clip: padding-box;
    border: 1px solid #666666;
    border-radius: 5px;
    outline: 0;
    transform: translate(-50%, -50%);
}

.modalHeader {
    position: relative;
    background-image: url(/images/layout/title/modal.png);
    background-position: center center;
    background-size: contain;
    /* background-color: #0099FF; */
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    padding: 8px;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modalBodyFullWidth {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: none;
    overflow: auto;
}

#snsLoginArea {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

#snsButtonArea {
    padding: 15px;
    text-align: center;
}

#googleButtonArea {
    text-align: center;
    margin: 0 auto 20px;
    padding: 0px;
}

#twittereButtonArea {
    text-align: center;
    margin: 0 auto 20px;
    padding: 0px;
}

.modalFooter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 12px;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modalFooter .bottonLeft {
    position: absolute;
    left: 10px;
}

.modalFooter a {
    background-color: #666666;
    width: 80px;
    height: 35px;
    color: #FFFFFF;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    border-radius: 20px;
    display: block;
    text-decoration: none;
}

